Report generated on 03-Jul-2023 at 07:08:43 by pytest-html v3.2.0
271 tests ran in 55645.24 seconds.
(Un)check the boxes to filter the results.
245 passed, 13 skipped, 24 failed, 0 errors, 2 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | functional/L1/test_l1_config.py::test_l1_settings_[autodetect] | 23.65 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> l1_settings = 'autodetect' @pytest.mark.parametrize('l1_settings', ['autodetect', 'autoneg']) async def test_l1_settings_(testbed, l1_settings): """ Test Name: L1 settings verification Test Suite: suite_functional_l1 Test Overview: Verify L1 settings on dut port Test Procedure: 1. Create bridge entity 2. Enslave ports to the created bridge entity 3. Set up port duplex, speed 4. Verify port mode and speed 5. Verify "Link Partner Advertised Auto-negotiation" is set to `Yes` 6. Verify "Advertised Auto-negotiation" is set to `Yes` 7. Verify "Link Partner Advertised Link Modes" is set to configured speed/duplex 8. Verify "Advertised Link Modes" is set to configured speed/duplex """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 1) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device_host_name = dent_devices[0].host_name tg_port = tgen_dev.links_dict[device_host_name][0][0] port = tgen_dev.links_dict[device_host_name][1][0] speed = 1000 duplex = 'full' advertise = '0x020' try: await tb_get_qualified_ports(dent_devices[0], tgen_dev.links_dict[device_host_name][1], speed, duplex, required_ports=1) except ValueError as e: pytest.skip(str(e)) options = { 'autodetect': { 'devname': port, 'speed': speed, 'duplex': 'full'}, 'autoneg': { 'devname': port, 'autoneg': 'on', 'advertise': advertise} } # 1. Create bridge entity out = await IpLink.add(input_data=[{device_host_name: [{'device': 'br0', 'type': 'bridge'}]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed creating bridge.' out = await IpLink.set(input_data=[{device_host_name: [{'device': 'br0', 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, "Verify that bridge set to 'up' state." # 2. Enslave port(s) to the created bridge entity out = await IpLink.set(input_data=[{device_host_name: [{ 'device': port, 'operstate': 'up', 'master': 'br0' }]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed setting link to state up.' # 3. Set up port(s) duplex, speed, advertise out = await Ethtool.set(input_data=[{device_host_name: [options[l1_settings]]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed setting port duplex, speed.' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24}]) > await tgen_utils_traffic_generator_connect(tgen_dev, tg_port, port, dev_groups) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py:86: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213] tgen_ports = '10.36.118.199:2:5', swp_ports = 'swp33' dev_groups = {'10.36.118.199:2:5': [{'count': 1, 'gw': '100.1.1.6', 'ip': '100.1.1.2', 'name': '10.36.118.199:2:5_100.1.1.2/24', ...}]} async def tgen_utils_traffic_generator_connect(device, tgen_ports, swp_ports, dev_groups): """ - Connects to the tgen """ ixia_port = device.port if device.port is not None else 443 out = await TrafficGen.connect( input_data=[ { device.host_name: [ { 'client_addr': device.ip, 'client_port': ixia_port, 'tgen_ports': tgen_ports, 'swp_ports': swp_ports, 'dev_groups': dev_groups, } ] } ] ) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: list index out of range /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:153: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-576' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.3, port 34856 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=30] Command: ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': -1, 'result': 'list index out of range'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/L1/test_l1_config.py::test_l1_settings_[autoneg] | 18.27 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> l1_settings = 'autoneg' @pytest.mark.parametrize('l1_settings', ['autodetect', 'autoneg']) async def test_l1_settings_(testbed, l1_settings): """ Test Name: L1 settings verification Test Suite: suite_functional_l1 Test Overview: Verify L1 settings on dut port Test Procedure: 1. Create bridge entity 2. Enslave ports to the created bridge entity 3. Set up port duplex, speed 4. Verify port mode and speed 5. Verify "Link Partner Advertised Auto-negotiation" is set to `Yes` 6. Verify "Advertised Auto-negotiation" is set to `Yes` 7. Verify "Link Partner Advertised Link Modes" is set to configured speed/duplex 8. Verify "Advertised Link Modes" is set to configured speed/duplex """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 1) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device_host_name = dent_devices[0].host_name tg_port = tgen_dev.links_dict[device_host_name][0][0] port = tgen_dev.links_dict[device_host_name][1][0] speed = 1000 duplex = 'full' advertise = '0x020' try: await tb_get_qualified_ports(dent_devices[0], tgen_dev.links_dict[device_host_name][1], speed, duplex, required_ports=1) except ValueError as e: pytest.skip(str(e)) options = { 'autodetect': { 'devname': port, 'speed': speed, 'duplex': 'full'}, 'autoneg': { 'devname': port, 'autoneg': 'on', 'advertise': advertise} } # 1. Create bridge entity out = await IpLink.add(input_data=[{device_host_name: [{'device': 'br0', 'type': 'bridge'}]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed creating bridge.' out = await IpLink.set(input_data=[{device_host_name: [{'device': 'br0', 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, "Verify that bridge set to 'up' state." # 2. Enslave port(s) to the created bridge entity out = await IpLink.set(input_data=[{device_host_name: [{ 'device': port, 'operstate': 'up', 'master': 'br0' }]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed setting link to state up.' # 3. Set up port(s) duplex, speed, advertise out = await Ethtool.set(input_data=[{device_host_name: [options[l1_settings]]}]) assert out[0][device_host_name]['rc'] == 0, 'Failed setting port duplex, speed.' dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_port, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24}]) > await tgen_utils_traffic_generator_connect(tgen_dev, tg_port, port, dev_groups) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py:86: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213] tgen_ports = '10.36.118.199:2:5', swp_ports = 'swp33' dev_groups = {'10.36.118.199:2:5': [{'count': 1, 'gw': '100.1.1.6', 'ip': '100.1.1.2', 'name': '10.36.118.199:2:5_100.1.1.2/24', ...}]} async def tgen_utils_traffic_generator_connect(device, tgen_ports, swp_ports, dev_groups): """ - Connects to the tgen """ ixia_port = device.port if device.port is not None else 443 out = await TrafficGen.connect( input_data=[ { device.host_name: [ { 'client_addr': device.ip, 'client_port': ixia_port, 'tgen_ports': tgen_ports, 'swp_ports': swp_ports, 'dev_groups': dev_groups, } ] } ] ) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: list index out of range /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:153: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-632' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.3, port 44612 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=30] Command: ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': -1, 'result': 'list index out of range'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/ecmp/test_ecmp.py::test_ecmp_distribution_lags | 90.88 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> @pytest.mark.usefixtures('cleanup_bonds') async def test_ecmp_distribution_lags(testbed): """ Test Name: test_ecmp_distribution_lags Test Suite: suite_functional_ecmp Test Overview: Test Ecmp distribution between nexthops with ports in Lag Test Procedure: 1. Add lag interfaces bond1 and bond2 2. Configure last 3 ports down in order to enslave them to bond1 and bond2 3. Add first rx_port to lag interface bond1 and last 2 rx_ports lag interface bond2 4. Configure 1st dut_port and lag interfaces bond1 and bond2 up 5. Configure IP addrs to 1st dut_port, bond1, bond2 interfaces 6. Add static arp entries to bond1 and bond2 7. Configure Ecmp route to 100.0.0.0/8 network with bond1 and bond2 as nexthops 8. Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops 9. Transmit added stream for 15 sec 10. Verify traffic distributed through bond1 and bond2 as expected """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] dent_dev = dent_devices[0] bond1 = 'bond1' bond2 = 'bond2' # 1.Add lag interfaces bond1 and bond2 out = await IpLink.add( input_data=[{dev_name: [ {'name': bond1, 'type': 'bond', 'mode': '802.3ad'}, {'name': bond2, 'type': 'bond', 'mode': '802.3ad'}]}]) err_msg = f'Verify that {bond1} and {bond2} was successfully added. \n{out}' assert not out[0][dev_name]['rc'], err_msg # 2.Configure last 3 ports down in order to enslave them to bond1 and bond2 out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'down'} for port in dut_ports[1:]]}]) err_msg = f"Verify that ports {dut_ports[1:]} set to 'DOWN' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 3.Add first rx_port to lag interface bond1 and last 2 rx_ports lag interface bond2 out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'master': bond1}, {'device': dut_ports[2], 'master': bond2}, {'device': dut_ports[3], 'master': bond2}]}]) err_msg = f'Verify that {dut_ports[0]} set to master .\n{out}' assert not out[0][dev_name]['rc'], err_msg # 4.Configure 1st dut_port and lag interfaces bond1 and bond2 up out = await IpLink.set( input_data=[{dev_name: [ {'device': dev, 'operstate': 'up'} for dev in [dut_ports[0], bond1, bond2]]}]) err_msg = f"Verify that ports {[dut_ports[0], bond1, bond2]} set to 'UP' state.\n{out}" assert not out[0][dev_name]['rc'], err_msg # 5.Configure IP addrs to 1st dut_port, bond1, bond2 interfaces dev_grp = ( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': bond1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'lag_members': [tg_ports[1]]}, {'ixp': bond2, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'lag_members': tg_ports[2:]} ) address_map = ( # swp port, tg port, swp ip, tg ip, plen lladdr (dut_ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24, '00:00:00:00:00:10'), (bond1, tg_ports[1], '11.0.0.1', '11.0.0.2', 8, '00:AD:20:B2:A7:75'), (bond2, tg_ports[2:], '12.0.0.1', '12.0.0.2', 16, '00:59:CD:1E:83:1B') ) out = await IpAddress.add(input_data=[{dev_name: [ {'dev': device, 'prefix': '{}/{}'.format(ip, plen)} for device, _, ip, _, plen, _ in address_map]}]) assert not out[0][dev_name]['rc'], 'Failed to add IP addr to ports' dev_groups = tgen_utils_dev_groups_from_config(dev_grp) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 6.Add static arp entries to bond1 and bond2 out = await IpNeighbor.add(input_data=[{dev_name: [ {'dev': device, 'address': tg_ip, 'lladdr': lladdr} for device, _, _, tg_ip, _, lladdr in address_map[1:] ]}]) assert not out[0][dev_name]['rc'], 'Failed to add static arp entries' # 7.Configure Ecmp route to 100.0.0.0/8 network with bond1 and bond2 as nexthops out = await IpRoute.add(input_data=[{dev_name: [ {'dst': '100.0.0.0/8', 'nexthop': [ {'via': tg_ip, 'weight': 1} for _, _, _, tg_ip, _, _ in address_map[1:]]} ]}]) assert not out[0][dev_name]['rc'], 'Failed to add nexthop' # 8.Setup ipv4 stream with incremented ip_dst addresses that would distribute through all nexthops swp_info = {} await tgen_utils_get_swp_info(dent_dev, dut_ports[0], swp_info) stream = {'increment_ip_dst_': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[bond1][0]['name'], # We dont care about ip_dst as we will use port stats 'srcMac': random_mac(), 'dstMac': swp_info['mac'], 'srcIp': f'1.1.1.{randint(3, 100)}', 'dstIp': {'type': 'increment', 'start': '100.0.0.1', 'step': '0.0.0.1', 'count': 30}, 'frameSize': 200, 'rate': 100, 'frame_rate_type': 'line_rate', } } > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=stream) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py:515: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'increment_ip_dst_': {'dstIp': {'count': 30, 'start': '100.0.0.1', 'step': '0.0.0.1', 'type': 'increment'}, 'dstMac': '18:be:92:13:64:a5', 'frameSize': 200, 'frame_rate_type': 'line_rate', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG E 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG E 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG E E System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG E 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG E 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6014' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_distribution_lags">Starting testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.3, port 44816 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:14:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:14:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link add name bond1 type bond mode 802.3ad && ip link add name bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: ip link set dev swp34 master bond1 && ip link set dev swp35 master bond2 && ip link set dev swp36 master bond2 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up && ip link set dev bond2 up INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev bond1 && ip address add 12.0.0.1/16 dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond2 with ports ['/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond2_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev bond1 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev bond2 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=98, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_distribution_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=98, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=25] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=26] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:15:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:15:53 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=98, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=98, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":121,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":122,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=98, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:15:54 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=98, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=40] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=98, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":4,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":121,"ifname":"bond1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":122,"ifname":"bond2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=98, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=42] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=44] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] | 195.31 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> igmp_ver = 2, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 123, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff34:6be5', 'index': 123, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 113.52'}, {'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff34:6be5', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 113.52'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6233' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.3, port 45868 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:42:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":123,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 113.52"},{"index":123,"dev":"br0","port":"br0","grp":"ff02::1:ff34:6be5","state":"temp","flags":[],"vid":1,"timer":" 113.52"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:45:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":123,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] | 189.29 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> igmp_ver = 3, igmp_msg_ver = 3 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 124, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff83:1196', 'index': 124, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 115.04'}, {'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff83:1196', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 115.04'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6259' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.3, port 35546 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:45:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=103, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=103, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=103, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=103, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=103, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":124,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 115.04"},{"index":124,"dev":"br0","port":"br0","grp":"ff02::1:ff83:1196","state":"temp","flags":[],"vid":1,"timer":" 115.04"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=103, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:48:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=103, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=103, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":124,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=103, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] | 196.47 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> igmp_ver = 2, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 125, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff13:a042', 'index': 125, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 114.29'}, {'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff13:a042', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 114.29'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6285' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.3, port 34376 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:48:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":125,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 114.29"},{"index":125,"dev":"br0","port":"br0","grp":"ff02::1:ff13:a042","state":"temp","flags":[],"vid":1,"timer":" 114.29"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:52:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":125,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] | 192.11 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> igmp_ver = 3, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 126, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff38:6ef4', 'index': 126, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.96'}, {'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff38:6ef4', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.96'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6311' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.3, port 41988 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:52:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":126,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 112.96"},{"index":126,"dev":"br0","port":"br0","grp":"ff02::1:ff38:6ef4","state":"temp","flags":[],"vid":1,"timer":" 112.96"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:55:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":126,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] | 194.44 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> igmp_ver = 3, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 127, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff6f:9e48', 'index': 127, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.28'}, {'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff6f:9e48', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 112.28'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6337' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.3, port 42784 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:55:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=106, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=106, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=106, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=10] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=106, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=106, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":127,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 112.28"},{"index":127,"dev":"br0","port":"br0","grp":"ff02::1:ff6f:9e48","state":"temp","flags":[],"vid":1,"timer":" 112.28"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=106, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:58:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=106, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=106, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":127,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=106, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs | 218.63 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_igmp_snooping_diff_source_addrs(testbed): """ Test Name: test_igmp_snooping_diff_sources Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with different source addrs Test Procedure: 1. Create a bridge and enable IGMP Snooping v3, Enslave all TG ports to bridge interface and set all interfaces to up state 2. Init interfaces, create 4 multicast streams and 1 general query 3. Generate 3 Membership reports from the clients, 1 with invalid Checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients and router 6. Verify the multicast traffic is flooded to the client #1 and #2 only 7. Statically un-subscribe client #1 from multicast group 227.1.1.1 8. Verify the Mdb entry for client #1 is deleted 9. Verify the traffic is not forwarded to client #1 and still is to client #2 """ bridge = 'br0' mcast_group1 = '226.1.1.1' mcast_group2 = '238.2.2.2' sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] mrouter_1 = '80.1.1.5' mrouter_2 = '70.1.1.5' # 1.Create a bridge and enable IGMP Snooping v3, # Enslave all TG ports to bridge interface and set all interfaces to up state await common_bridge_and_igmp_setup(dev_name, bridge, 3, dut_ports) # 2.Init interfaces, create 4 multicast streams and 1 general query dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 20, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2, mcast_group1, mcast_group2])} streams.update({'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[2], 'frameSize': '82', 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv3MembershipQuery', 'totalLength': '32', 'igmpType': '11', 'igmpGroupAddr': '0.0.0.0', 'maxResponseCode': '99', 'numberOfSources': '0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }}) # 3.Generate 3 Membership reports from the clients, 1 with invalid checksum streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': 'igmpv3MembershipReport', 'totalLength': '40', 'igmpType': '22', 'igmpGroupAddr': grp_addr, 'igmpRecordType': '5', 'igmpSourceAddr': router, 'numberOfSources': '1', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac, router) in enumerate(zip(mcast_group_addr, macs[1:], [mrouter_1, mrouter_2, mrouter_2])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(8) # 5.Verify Mdb entries were created from clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1], exp=4) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:456: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 128, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff04:d7ee', 'index': 128, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['226.1.1.1', '238.2.2.2'], exp = 4 def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 128, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 93.65'}, {'index': 128, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff04:d7ee', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 93.65'}] E assert 0 == 4 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6363' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.3, port 43646 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:58:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":128,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 93.65"},{"index":128,"dev":"br0","port":"br0","grp":"ff02::1:ff04:d7ee","state":"temp","flags":[],"vid":1,"timer":" 93.65"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:02:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":128,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query | 199.69 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_igmp_snooping_modified_query(testbed): """ Test Name: test_igmp_querier Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with modified querier interval Test Procedure: 1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval Enslave all TG ports to bridge interface and config fastleave on 1st rx_port 2. Init interfaces and create 2 multicast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created for clients and router 6. Verify the multicast traffic is flooded to all bridge ports except last client 7. Create and send leave stream from 1st client 8. Verify MDB entry is deleted 9. Verify no traffic is received on the port that left the group """ bridge = 'br0' querrier_interval = 10 sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] # 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 multicast Streams # 3.Create 3 membership report streams, 1 with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(mcast_group), 'srcIp': '0.0.0.0', 'dstIp': mcast_group, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, mcast_group in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': combined[1], 'dstMac': mcast_ip_to_mac(combined[0]), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': combined[0], 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '22', 'igmpGroupAddr': combined[0], 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, } for idx, combined in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(querrier_interval + 5) # 5.Verify Mdb entries were created for clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:588: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 129, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff38:f05b', 'index': 129, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 129, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 226.04'}, {'index': 129, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff38:f05b', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 227.58'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-6387' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.3, port 46510 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:02:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: bridge link set dev swp34 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":129,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 226.04"},{"index":129,"dev":"br0","port":"br0","grp":"ff02::1:ff38:f05b","state":"temp","flags":[],"vid":1,"timer":" 227.58"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:05:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":129,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/ipv6/test_ipv6_route.py::test_ipv6_icmp | 124.98 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_ipv6_icmp(testbed): """ Test Name: test_ipv6_icmp Test Suite: suite_functional_ipv6 Test Overview: Verify ICMPv6 message types Test Procedure: 1. Add IP addresses - Verify IP addresses added, routes created 2. Send ICMP echo request from TG - Verify ICMP echo reply is sent from DUT 3. Send ICMP echo request from TG with DIP of random IP address in same subnet - Verify ICMP 'host unreachable' message is sent 4. Send ICMP echo request from TG with TTL (hop limit) equal to 1 - Verify ICMP 'time exceeded' message is sent 5. Delete IP from DUT, add a different IP address 6. Send ICMP echo request from TG - Verify ICMP message redirect is sent """ num_of_ports = 2 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] addr_info = namedtuple('addr_info', ['swp', 'tg', 'swp_ip', 'tg_ip', 'plen']) traffic_duration = 10 timeout = 20 address_map = ( addr_info(ports[0], tg_ports[0], '2001:1111::1', '2001:1111::2', 64), addr_info(ports[1], tg_ports[1], '2001:2222::1', '2001:2222::2', 64), ) out = await IpLink.show(input_data=[{dent: [ {'cmd_options': '-j'} ]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get port info' dut_mac = {link['ifname']: link['address'] for link in out[0][dent]['parsed_output'] if link['ifname'] in ports} # Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 1. Add IP addresses out = await IpAddress.add(input_data=[{dent: [ {'dev': info.swp, 'prefix': f'{info.swp_ip}/{info.plen}'} for info in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': info.tg, 'ip': info.tg_ip, 'gw': info.swp_ip, 'plen': info.plen, 'version': 'ipv6'} for info in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # Verify IP addresses added expected_addrs = [ {'ifname': info.swp, 'should_exist': True, 'addr_info': { 'family': 'inet6', 'local': info.swp_ip, 'prefixlen': info.plen}} for info in address_map ] await verify_dut_addrs(dent, expected_addrs) # Verify routes created expected_routes = [ {'dev': info.swp, 'dst': info.swp_ip[:-1] + f'/{info.plen}', 'should_exist': True, 'flags': ['rt_trap']} for info in address_map ] await verify_dut_routes(dent, expected_routes) # 2. Send ICMP echo request from TG streams = { f'icmpv6 {tg_ports[0]} -> {ports[0]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '02:00:00:00:00:01', 'dstMac': dut_mac[ports[0]], 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': address_map[0].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, f'icmpv6 {tg_ports[1]} -> {ports[1]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': '02:00:00:00:00:02', 'dstMac': dut_mac[ports[1]], 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': address_map[1].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, } await tgen_utils_setup_streams(tgen_dev, None, streams) tcpdump = [asyncio.create_task(tb_device_tcpdump(dent_dev, info.swp, '-n -c 10 "icmp6 && ip6[40] == 129"', count_only=True, timeout=timeout)) for info in address_map] await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify ICMP echo reply is sent from DUT captured = await asyncio.gather(*tcpdump) > assert all(pkts > 0 for pkts in captured), 'Expected DUT to send ICMPv6 reply' E AssertionError: Expected DUT to send ICMPv6 reply E assert False E + where False = all(<generator object test_ipv6_icmp.<locals>.<genexpr> at 0x7f0fdb44f0d0>) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py:820: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8731' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.3, port 43056 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:56:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:56:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:5 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:6 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" on infra2... INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" on infra2... INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed DEBUG infra2:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG infra2:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:58:53 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[rstp] | 130.35 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'rstp' @pytest.mark.parametrize('version', ['rstp', 'stp']) async def test_lacp_loopback_detection(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test stp/rstp loopback detection Test Procedure: 1. Create bridge bridge_1 and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 4. Set link up on all participant ports, bonds, bridges 5. Wait until topology converges 6. Send broadcast traffic for a random time between 30-60 seconds. 7. Verify device remain stable afterwards (during storming). Verify there is a storming 8. Set bridge stp_state to 1 9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked. 10. Verify that the rate on Ixia ports is 0 (storming has stopped) """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_ixia_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bridge = 'bridge_1' wait_time = 40 if version == 'stp' else 20 # 1. Create bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0}]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'master': bridge} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set( input_data=[{dent: [{'device': port_in_bond, 'operstate': 'up'} for port_in_bond in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:110: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {"['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast": {'ds...4', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'], 'ip_source': '10.36.118.199:2:5_1.1.1.2/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Timeout - no response after 20s. /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[rstp]">Starting testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9000' coro=<test_lacp_loopback_detection() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:35> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.3, port 43152 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:02:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:04:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":162,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:04:40 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":156,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":157,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":158,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":159,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":160,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":161,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=48] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=50] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=52] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:04:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}] | |||
| Failed | functional/lacp/test_lacp_loopback_detection.py::test_lacp_loopback_detection[stp] | 286.81 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'stp' @pytest.mark.parametrize('version', ['rstp', 'stp']) async def test_lacp_loopback_detection(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test stp/rstp loopback detection Test Procedure: 1. Create bridge bridge_1 and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 4. Set link up on all participant ports, bonds, bridges 5. Wait until topology converges 6. Send broadcast traffic for a random time between 30-60 seconds. 7. Verify device remain stable afterwards (during storming). Verify there is a storming 8. Set bridge stp_state to 1 9. Verify that afterwards all bonds with the lowest number within a loopback connection are blocked. 10. Verify that the rate on Ixia ports is 0 (storming has stopped) """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_ixia_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bridge = 'bridge_1' wait_time = 40 if version == 'stp' else 20 # 1. Create bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0}]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'master': bridge} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bond to bridge' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set( input_data=[{dent: [{'device': port_in_bond, 'operstate': 'up'} for port_in_bond in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_ixia_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ixia_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:110: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {"['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast": {'ds...4', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'], 'ip_source': '10.36.118.199:2:5_1.1.1.2/24', ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: Timeout - no response after 20s. /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_loopback_detection[stp]">Starting testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9065' coro=<test_lacp_loopback_detection() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py:35> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.3, port 37164 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:04:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 && ip link set dev bond_4 master bridge_1 && ip link set dev bond_5 master bridge_1 && ip link set dev bond_6 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=20] Command: ip link set dev swp33 master bridge_1 && ip link set dev swp34 master bridge_1 && ip link set dev swp35 master bridge_1 && ip link set dev swp36 master bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=22] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=158, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=158, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=158, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=26] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=158, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=158, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=28] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=158, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_loopback_detection[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_loopback_detection.py INFO asyncssh:logging.py:92 [conn=158, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=158, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":169,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=158, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:27 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=158, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=158, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":13,"ad_actor_oper_port_state_str":["active","aggregating","in_sync"],"ad_partner_oper_port_state":69,"ad_partner_oper_port_state_str":["active","aggregating","defaulted"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":13,"ad_partner_oper_port_state_str":["active","aggregating","in_sync"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":141,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","expired"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8d","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":163,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":165,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8e"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":166,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":167,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":168,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8d"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=158, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=158, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=158, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=158, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=46] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=158, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=48] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=158, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=50] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=158, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=52] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' Timeout - no response after 20s.\n'}}] | |||
| Failed | functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[stp] | 43.38 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_root_bridge_selection_stp(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test root bridge selection based on MAC rule Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports according to the test's setup topology 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports 5. Wait until topology converges 6. Verify the bridge root is bridge_1 by the lowest MAC rule. Other bridges are not root bridges 7. Verify bridge_3 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change bridge_3 priority to a priority with lower value then the root bridge. 10. Wait ~10 seconds for topology to re-build. 11. Verify bridge_3 has become the new root bridge. 12. Verify bridge_2 has a blocking port 13 Verify bridge_1 doesn't have any blocking port. """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } bridge_names = list(bridges.keys()) hw_mac = ['22:AA:98:EA:D2:43', '44:0A:D1:68:4E:B9', '66:2A:31:66:1C:CD'] time_to_wait = 40 if version == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, bonds in bridges.items(): out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'portpathcost', 'port': bond, 'cost': 1000} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting port pathcost' # 5. Wait until topology converges await asyncio.sleep(time_to_wait) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names[1:]: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge { bridge_names[1]} or {bridge_names[2]} is a root bridge' # 7. Verify bridge_3 has a blocking port out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'portdetail', 'bridge': bridge_names[2], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge_names[2]}' ports_state = [bond['state'] for bond in out[0][dent]['parsed_output']] > assert 'discarding' in ports_state, f'Bridge {bridge_names[2]} does not have a blocking port' E AssertionError: Bridge bridge_3 does not have a blocking port E assert 'discarding' in ['forwarding', 'forwarding'] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:133: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[stp]">Starting testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9425' coro=<test_lacp_root_bridge_selection_stp() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.3, port 48204 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=24] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=26] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=27] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=163, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=28] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=29] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=163, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=30] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=31] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=163, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=32] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=163, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=163, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=163, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=163, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=163, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=163, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=163, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=40] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=41] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=163, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=42] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=43] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=163, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=44] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=45] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=46] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=163, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=47] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=48] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"2","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=163, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=49] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_5","last-topology-change-port":"bond_6"}] INFO asyncssh:logging.py:92 [conn=163, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=51] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=52] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"8.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"22","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=163, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":246,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":247,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":248,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=58] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=163, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=59] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=60] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:27 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=163, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=62] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=163, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":240,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":241,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":242,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"d6:2f:bb:81:8c:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":243,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":244,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":245,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=163, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=64] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=163, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=66] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=163, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=68] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=163, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=70] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=163, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=70] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=72] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=163, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=74] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=163, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=75] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=76] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_root_bridge_stp_rstp.py::test_lacp_root_bridge_selection_stp[rstp] | 23.35 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_root_bridge_selection_stp(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test root bridge selection based on MAC rule Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports according to the test's setup topology 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports 5. Wait until topology converges 6. Verify the bridge root is bridge_1 by the lowest MAC rule. Other bridges are not root bridges 7. Verify bridge_3 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change bridge_3 priority to a priority with lower value then the root bridge. 10. Wait ~10 seconds for topology to re-build. 11. Verify bridge_3 has become the new root bridge. 12. Verify bridge_2 has a blocking port 13 Verify bridge_1 doesn't have any blocking port. """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } bridge_names = list(bridges.keys()) hw_mac = ['22:AA:98:EA:D2:43', '44:0A:D1:68:4E:B9', '66:2A:31:66:1C:CD'] time_to_wait = 40 if version == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports according to the test's setup topology out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port to bond' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, bonds in bridges.items(): out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'portpathcost', 'port': bond, 'cost': 1000} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting port pathcost' # 5. Wait until topology converges await asyncio.sleep(time_to_wait) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names[1:]: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge { bridge_names[1]} or {bridge_names[2]} is a root bridge' # 7. Verify bridge_3 has a blocking port out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'portdetail', 'bridge': bridge_names[2], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, f'Failed to get port detail of {bridge_names[2]}' ports_state = [bond['state'] for bond in out[0][dent]['parsed_output']] > assert 'discarding' in ports_state, f'Bridge {bridge_names[2]} does not have a blocking port' E AssertionError: Bridge bridge_3 does not have a blocking port E assert 'discarding' in ['forwarding', 'forwarding'] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:133: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_bridge_selection_stp[rstp]">Starting testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9514' coro=<test_lacp_root_bridge_selection_stp() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.3, port 48752 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=24] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=26] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=27] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=164, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=28] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=29] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=164, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=30] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=31] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=164, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=32] Command: ifconfig bridge_3 hw ether 66:2A:31:66:1C:CD INFO asyncssh:logging.py:92 [conn=164, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=164, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=164, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=164, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=164, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=164, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=164, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=164, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=40] Command: mstpctl setportpathcost bridge_1 bond_1 1000 && mstpctl setportpathcost bridge_1 bond_2 1000 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=41] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=164, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=42] Command: mstpctl setportpathcost bridge_2 bond_3 1000 && mstpctl setportpathcost bridge_2 bond_4 1000 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=43] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=164, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=44] Command: mstpctl setportpathcost bridge_3 bond_5 1000 && mstpctl setportpathcost bridge_3 bond_6 1000 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=45] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=46] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=164, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=47] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=48] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_4 (#2)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_4"}] INFO asyncssh:logging.py:92 [conn=164, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=49] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=50] Command: mstpctl -f json showbridge bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_3","enabled":"yes","bridge-id":"8.000.66:2A:31:66:1C:CD","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.66:2A:31:66:1C:CD","root-port":"bond_5 (#1)","path-cost":"1000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_5"}] INFO asyncssh:logging.py:92 [conn=164, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=51] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=52] Command: mstpctl -f json showportdetail bridge_3 INFO asyncssh:logging.py:92 [conn=164, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_5","bridge":"bridge_3","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_6","bridge":"bridge_3","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"1000","internal-port-cost":"20000","admin-external-cost":"1000","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"1000","dsgn-regional-root":"8.000.66:2A:31:66:1C:CD","dsgn-internal-cost":"0","designated-bridge":"8.000.66:2A:31:66:1C:CD","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_bridge_selection_stp[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_root_bridge_stp_rstp.py INFO asyncssh:logging.py:92 [conn=164, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=164, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":256,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":257,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:2a:31:66:1c:cd","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":255,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_2 && ip link delete bridge_3 && ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=58] Command: ip link delete bridge_2 && ip link delete bridge_3 && ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=164, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=59] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=60] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:50 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=164, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=62] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=164, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":249,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":250,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":251,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"3e:80:57:5d:36:dc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":252,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":253,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":254,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=164, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=64] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=164, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=66] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=164, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=68] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=164, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=70] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=164, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=70] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=72] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=164, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=74] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=164, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=75] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=76] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_vrf.py::test_lacp_routing_over_lag_vrf | 1.25 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_lacp_routing_over_lag_vrf(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test routing over vrf's Test Procedure: 1. Create 3 bonds and 2 vrf tables 2. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 3. Set link up on all participant ports 4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's 5. Setup one stream with destination IP 10.1.1.1 6. Transmit traffic 7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1 """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) vrf_1 = 'vrf0' vrf_2 = 'vrf1' rate = 10000 # 1. Create 3 bonds out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # Create 2 VRF tables out = await IpLink.add(input_data=[{dent: [{'dev': vrf_1, 'type': 'vrf', 'table': 10}]}]) > assert out[0][dent]['rc'] == 0, 'Failed to add vrf' E AssertionError: Failed to add vrf E assert 2 == 0 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py:72: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9803' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf">Starting testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=167, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.3, port 53442 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.23","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:6482","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:648d","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=20] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=20] Channel closed DEBUG infra2:Logger.py:156 Error: Unknown device type. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf.py INFO asyncssh:logging.py:92 [conn=168, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=168, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=24] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=168, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.23","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:6482","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:648d","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=168, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=168, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:41 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=168, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=168, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=30] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=168, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] INFO asyncssh:logging.py:92 [conn=168, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=168, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=34] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:41 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=168, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=168, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=168, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":267,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:15:0a:72:09:20","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":268,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"aa:98:34:ab:8f:de","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":269,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"fa:ef:4e:60:a7:0c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=168, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=168, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=168, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=46] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py::test_lacp_routing_over_lag_vrf_vlan_device | 1.46 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_lacp_routing_over_lag_vrf_vlan_device(testbed): """ Test Name: LACP routing Test Suite: suite_functional_lacp Test Overview: Test routing over vrf's Test Procedure: 1. Create 3 bonds and 2 vrf tables 2. Enslave DUT port <==> tgen port 1 to bond 1 DUT port <==> tgen port 2 to bond 2 DUT port <==> tgen port 3 to bond 3 DUT port <==> tgen port 4 to bond 3 3. Set link up on all participant ports 4. Configure ip addresses in each LAG and configure route 10.1.1.0/24 via 2 vrf's 5. Setup one stream with destination IP 10.1.1.1 6. Transmit traffic 7. Verify traffic received on active bond2 port in vrf0 and not received on vrf1 """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] bonds = [f'bond_{idx}' for idx in range(1, 4)] tgen_lag_1 = ('LAG_0', [tg_ports[0]]) tgen_lag_2 = ('LAG_1', [tg_ports[1]]) tgen_lag_3 = ('LAG_2', tg_ports[2:]) vrf_1 = 'vrf0' vrf_2 = 'vrf1' vid = 10 bridge = 'bridge_0' vlan_device = f'{bridge}.{vid}' rate = 10000 # 1. Create 3 bonds and a bridge out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filtering': 1, 'vlan_default_pvid': 10, }]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'}]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # Bridge to vlan id out = await BridgeVlan.add(input_data=[{dent: [{'device': bridge, 'vid': vid, 'self': True}]}]) assert out[0][dent]['rc'] == 0, 'Failed to add vlan on device' #### out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' # Create 2 VRF tables out = await IpLink.add(input_data=[{dent: [{'dev': vrf_1, 'type': 'vrf', 'table': 10}]}]) > assert out[0][dent]['rc'] == 0, 'Failed to add vrf' E AssertionError: Failed to add vrf E assert 2 == 0 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py:92: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9873' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lag_vrf_vlan_device">Starting testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO asyncssh:logging.py:92 [conn=168, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.3, port 53444 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.23","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:6482","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:648d","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=169, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=26] Command: ip link add type vrf table 10 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Unknown device type. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lag_vrf_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vrf_and_vlan_device.py INFO asyncssh:logging.py:92 [conn=169, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Deleting routes INFO asyncssh:logging.py:92 [conn=169, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=169, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:147 Deleting tables INFO asyncssh:logging.py:92 [conn=169, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=32] Command: ip -j route show table all INFO asyncssh:logging.py:92 [conn=169, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"10.36.118.23","dev":"ma1","table":"local","protocol":"kernel","scope":"host","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"broadcast","dst":"10.36.118.255","dev":"ma1","table":"local","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"type":"local","dst":"20.20.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"20.20.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.0/8","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"local","dst":"127.0.0.1","dev":"lo","table":"local","protocol":"kernel","scope":"host","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"type":"broadcast","dst":"127.255.255.255","dev":"lo","table":"local","protocol":"kernel","scope":"link","prefsrc":"127.0.0.1","flags":["rt_trap"]},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp9","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"dst":"fe80::/64","dev":"bridge_0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"type":"local","dst":"::1","dev":"lo","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:6482","dev":"ma1","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"local","dst":"fe80::1abe:92ff:fe13:648d","dev":"swp9","table":"local","protocol":"kernel","metric":0,"flags":["rt_trap"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"ma1","table":"local","protocol":"kernel","metric":256,"flags":["rt_offload_failed"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"swp9","table":"local","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"},{"type":"multicast","dst":"ff00::/8","dev":"bridge_0","table":"local","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=169, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=34] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=169, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":270,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"6e:7e:d1:5a:f2:41","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=38] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:42 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=169, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=169, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=42] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=169, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":271,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"56:d6:04:1a:15:1a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":272,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"7e:af:f0:95:fc:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":273,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"06:05:16:a2:f9:1f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=169, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=44] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=46] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=169, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=48] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=169, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=52] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:43 UTC 2023 INFO DENT:Logger.py:147 Deleting VRFs INFO asyncssh:logging.py:92 [conn=169, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=169, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=54] Command: ip -j link show type vrf INFO asyncssh:logging.py:92 [conn=169, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}] | |||
| Failed | functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[stp] | 179.25 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_traffic_during_topology_convergence(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test lacp during stp/rstp topology convergence Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 3. Change all bridges MAC addresses 4. Set link up on all participant ports, bonds, bridges 5. Send broadcast traffic for a random time between 30-60 seconds. 6. Verify device remain stable afterwards (during storming) 7. Verify there is a storming 8. Set bridge stp_state to 1 9. Verify the bridge root is bridge_2 by the lowest MAC rule. Verify other bridges do not consider themselves as root-bridge 10. Verify bridge_1 has a blocking bond 11 .Verify bridge_3 do not have any blocking bond 12. Verify that the rate on other tgen ports is 0 (storming has stopped) 13. Send broadcast traffic for a random time between 30-60 seconds 14. Verify that traffic is flooded to other tgen ports 15. Stop the traffic; Verify there is no storming" """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_tgen_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } hw_mac = ['44:AA:98:EA:D2:43', '00:45:34:43:56:55', '22:0A:D1:68:4E:B9'] bridge_names = list(bridges.keys()) tolerance = 0.15 wait_time = 40 if 'version' == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0} for bridge in bridges]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports to bonds, bonds to bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bonds' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[0], 'master': bridge_names[0]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[1], 'master': bridge_names[1]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_tgen_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5.Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_tgen_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(wait_time) await tgen_utils_stop_traffic(tgen_dev) # 6. Verify device remain stable afterwards (during storming) rc, out = await device.run_cmd("echo 'Hello World'") assert rc == 0, 'FAIL: DUT crashed due to storming' assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}' # 7. Verify there is a storming stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: if row['Port Name'] in tg_ports[:2]: err_msg = f'Expected {1400} got : {float(row["Rx. Rate (Mbps)"])}' > assert float(row['Rx. Rate (Mbps)']) > 1400, err_msg E AssertionError: Expected 1400 got : 0.0 E assert 0.0 > 1400 E + where 0.0 = float('0.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:143: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[stp]">Starting testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9950' coro=<test_lacp_traffic_during_topology_convergence() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.3, port 53450 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG infra2:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: ip link set dev swp33 master bridge_1 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=170, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=170, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=170, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=40] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=170, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=41] Channel closed DEBUG infra2:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=170, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=42] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=170, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=42] Channel closed DEBUG infra2:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb555780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 398948 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 398932 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=170, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:12:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=170, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":280,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":281,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":282,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=170, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:12:41 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=170, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=170, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=170, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":274,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":275,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":276,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:2d:1f:21:35:4e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":277,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":278,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":279,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=170, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=170, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=170, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=65] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=66] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:12:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lacp/test_lacp_traffic_during_topology_convergence.py::test_lacp_traffic_during_topology_convergence[rstp] | 187.16 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_lacp_traffic_during_topology_convergence(testbed, version): """ Test Name: LACP STP/RSTP interaction Test Suite: suite_functional_lacp Test Overview: Test lacp during stp/rstp topology convergence Test Procedure: 1. Create 3 bridge entities and 6 bonds and set link up on them 2. Enslave ports to bonds, bonds to bridges 3. Change all bridges MAC addresses 4. Set link up on all participant ports, bonds, bridges 5. Send broadcast traffic for a random time between 30-60 seconds. 6. Verify device remain stable afterwards (during storming) 7. Verify there is a storming 8. Set bridge stp_state to 1 9. Verify the bridge root is bridge_2 by the lowest MAC rule. Verify other bridges do not consider themselves as root-bridge 10. Verify bridge_1 has a blocking bond 11 .Verify bridge_3 do not have any blocking bond 12. Verify that the rate on other tgen ports is 0 (storming has stopped) 13. Send broadcast traffic for a random time between 30-60 seconds 14. Verify that traffic is flooded to other tgen ports 15. Stop the traffic; Verify there is no storming" """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip( 'The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name tg_ports = tgen_dev.links_dict[dent][0] dut_tgen_ports = tgen_dev.links_dict[dent][1] bonds = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): bonds[f'bond_{idx+1}'] = port bond_to_bridges = list(bonds.keys()) bridges = { 'bridge_1': bond_to_bridges[:2], 'bridge_2': bond_to_bridges[2:4], 'bridge_3': bond_to_bridges[4:] } hw_mac = ['44:AA:98:EA:D2:43', '00:45:34:43:56:55', '22:0A:D1:68:4E:B9'] bridge_names = list(bridges.keys()) tolerance = 0.15 wait_time = 40 if 'version' == 'stp' else 20 # 1. Create 3 bridge entities and 6 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{'device': bond, 'type': 'bond', 'mode': '802.3ad'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bond' out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'stp_state': 0} for bridge in bridges]}]) # stp not enabled assert out[0][dent]['rc'] == 0, 'Failed to add bridge' # 2. Enslave ports to bonds, bonds to bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bond}]} for bond, port in bonds.items()]) assert out[0][dent]['rc'] == 0, 'Failed enslaving bonds' for bridge, lags in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': lag, 'master': bridge} for lag in lags]}]) assert out[0][dent]['rc'] == 0, f'Failed enslaving lag to {bridge}' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[0], 'master': bridge_names[0]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' out = await IpLink.set(input_data=[{dent: [{'device': dut_tgen_ports[1], 'master': bridge_names[1]}]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving port' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bonds, bridges out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in bonds.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bond, 'operstate': 'up'} for bond in bonds]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bond to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' out = await IpLink.set(input_data=[{dent: [{'device': port, 'operstate': 'up'} for port in dut_tgen_ports]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' # 5.Send broadcast traffic for a random time between 30-60 seconds. dev_groups = tgen_utils_dev_groups_from_config(( {'ixp': tg_ports[0], 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24}, )) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_tgen_ports, dev_groups) tx_ports = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = { f'{rx_ports} -> Broadcast': { 'type': 'raw', 'ip_source': tx_ports, 'ip_destination': rx_ports, 'srcMac': 'aa:bb:cc:dd:ee:ff', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frame_rate_type': 'line_rate', 'rate': 5 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(wait_time) await tgen_utils_stop_traffic(tgen_dev) # 6. Verify device remain stable afterwards (during storming) rc, out = await device.run_cmd("echo 'Hello World'") assert rc == 0, 'FAIL: DUT crashed due to storming' assert out.strip() == 'Hello World', f'Expected <Hello World> got {out}' # 7. Verify there is a storming stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') for row in stats.Rows: if row['Port Name'] in tg_ports[:2]: err_msg = f'Expected {1400} got : {float(row["Rx. Rate (Mbps)"])}' > assert float(row['Rx. Rate (Mbps)']) > 1400, err_msg E AssertionError: Expected 1400 got : 0.0 E assert 0.0 > 1400 E + where 0.0 = float('0.000') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:143: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_traffic_during_topology_convergence[rstp]">Starting testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10029' coro=<test_lacp_traffic_during_topology_convergence() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.3, port 53934 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:12:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: ip link add bridge_1 type bridge stp_state 0 && ip link add bridge_2 type bridge stp_state 0 && ip link add bridge_3 type bridge stp_state 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: ip link set dev swp9 master bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG infra2:Logger.py:156 Error: Device can not be enslaved while up. INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: ip link set dev swp6 master bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: ip link set dev swp8 master bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: ip link set dev swp10 master bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: ip link set dev bond_5 master bridge_3 && ip link set dev bond_6 master bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: ip link set dev swp33 master bridge_1 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=26] Command: ip link set dev swp34 master bridge_2 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=27] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=171, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=28] Command: ifconfig bridge_1 hw ether 44:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=29] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=171, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=30] Command: ifconfig bridge_2 hw ether 00:45:34:43:56:55 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=31] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=171, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=32] Command: ifconfig bridge_3 hw ether 22:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=171, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=34] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=171, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=171, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=36] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up && ip link set dev bond_5 up && ip link set dev bond_6 up INFO asyncssh:logging.py:92 [conn=171, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=171, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=38] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=171, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=40] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=171, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ['10.36.118.199:2:6_1.1.1.3/24', '10.36.118.199:2:7_1.1.1.4/24', '10.36.118.199:2:8_1.1.1.5/24'] -> Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=41] Channel closed DEBUG infra2:Logger.py:156 echo 'Hello World' INFO asyncssh:logging.py:92 [conn=171, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=42] Command: echo 'Hello World' INFO asyncssh:logging.py:92 [conn=171, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=42] Channel closed DEBUG infra2:Logger.py:156 Hello World INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f8640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 342711 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 342690 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_traffic_during_topology_convergence[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_traffic_during_topology_convergence.py INFO asyncssh:logging.py:92 [conn=171, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:15:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=171, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":289,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":290,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:45:34:43:56:55","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":291,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=171, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:15:48 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=171, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=171, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":283,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":284,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":285,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ba:b5:e5:8d:db:43","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":286,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":287,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":288,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=171, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=171, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=171, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=58] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=171, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=60] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=171, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=62] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=171, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=64] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=171, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=65] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=66] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:15:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/lldp/test_lldp_tx_rx.py::test_lldp_lag | 88.51 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> @pytest.mark.usefixtures('cleanup_bonds') async def test_lldp_lag(testbed): """ Test Name: test_lldp_lag Test Suite: suite_functional_lldp Test Overview: Test lldp transmitted and received with port in lag Test Procedure: 1. Create lag device and set first DUT port to down 2. Add first port from DUT to lag 3. Set first port DUT and lag device to up state 4. Init interfaces 5. Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx 6. Setup lldp packet for trasmitting to first DUT port and start sending 7. Verify lldp pkt received and mandatory fields are as expected 8. Verify lldp pkt's were transmitted with all fields as expected """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name dent_dev = dent_devices[0] tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] lldp_interval = 2 bond1 = 'bond1' wait = 5 # 1.Create lag device and set first DUT port to down out = await IpLink.add( input_data=[{dev_name: [ {'name': bond1, 'type': 'bond', 'mode': '802.3ad'}]}]) err_msg = f'Verify that {bond1} was successfully added. \n{out}' assert not out[0][dev_name]['rc'], err_msg out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'operstate': 'down'}]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} set to 'DOWN' state.\n{out}" # 2.Add first port from DUT to lag out = await IpLink.set( input_data=[{dev_name: [ {'device': dut_ports[0], 'master': bond1}]}]) err_msg = f'Verify that {dut_ports[0]} set to master .\n{out}' assert not out[0][dev_name]['rc'], err_msg # 3.Set first port DUT and lag device to up state out = await IpLink.set( input_data=[{dev_name: [ {'device': dev, 'operstate': 'up'} for dev in [dut_ports[0], bond1]]}]) assert not out[0][dev_name]['rc'], f"Verify {dut_ports[0]} and {bond1} set to 'UP' state.\n{out}" # 4.Init interfaces dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': bond1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'lag_members': [tg_ports[0]]}, {'ixp': tg_ports[1], 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24}] ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 5.Configure lldp tx-interval 2 sec, bond-slave-src-mac-type real and lldp status rx-and-tx out = await Lldp.configure( input_data=[{dev_name: [ {'lldp': '', 'tx-interval': lldp_interval}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp tx-interval {lldp_interval}.\n{out}' out = await Lldp.configure( input_data=[{dev_name: [ {'system': 'bond-slave-src-mac-type real'}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp .\n{out}' tx_before = await get_lldp_statistic(dev_name, dut_ports[0]) out = await Lldp.configure( input_data=[{dev_name: [ {'interface': dut_ports[0], 'ports': '', 'lldp': '', 'status': 'rx-and-tx'}]}]) assert not out[0][dev_name]['rc'], f'Failed to configure lldp status on port {dut_ports[0]}.\n{out}' # 6.Setup lldp packet for trasmitting to first DUT port and start sending chassis = random_mac() port = 'FastEthernet/19' ttl = 110 port_subtype = 5 lldp = { 'chassisLen': (len(chassis.replace(':', '')) // 2) + 1, 'chassisSubtype': 4, 'chassisVarLen': len(chassis.replace(':', '')) // 2, 'chassisId': chassis.replace(':', ''), 'portLen': (len(port.encode().hex()) // 2) + 1, 'portSubtype': port_subtype, 'portVarLen': len(port.encode().hex()) // 2, 'portId': port.encode().hex(), 'ttlLen': 2, 'ttlVal': ttl } lldp_stream = get_lldp_stream(dev_groups[bond1][0]['name'], dev_groups[tg_ports[1]][0]['name'], lldp) > await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=lldp_stream) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py:326: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ device = [Ixia Traffic Generator: 10.36.118.213], config_file_name = None streams = {'lldp_1': {'chassisId': '026bd49346cc', 'chassisLen': 7, 'chassisSubtype': 4, 'chassisVarLen': 6, ...}} force_update = True async def tgen_utils_setup_streams(device, config_file_name, streams, force_update=True): """ - if there is a tgen config file then try to load it - else creates the streams and saves it and download a copy for future use. - start the protocols and resolve arp. """ res = -1 if not force_update and os.path.exists(config_file_name): device.applog.info(f'Loading Tgen config file {config_file_name}') out = await TrafficGen.load_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) res = out[0][device.host_name]['rc'] if res != 0: for s in streams.keys(): device.applog.info(f'Setting up Tgen traffic for {s}') out = await TrafficGen.set_traffic( input_data=[{device.host_name: [{'name': s, 'pkt_data': streams[s]}]}] ) device.applog.info(out) assert out[0][device.host_name]['rc'] == 0, f'Setting tgen traffic failed.\n{out}' device.applog.info(f'Saving Tgen config file {config_file_name}') out = await TrafficGen.save_config( input_data=[{device.host_name: [{'config_file_name': config_file_name}]}] ) device.applog.info('Starting Protocols') out = await TrafficGen.start_protocols(input_data=[{device.host_name: [{}]}]) device.applog.info(out) > assert out[0][device.host_name]['rc'] == 0, out[0][device.host_name]['result'] E AssertionError: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG /usr/local/lib/python3.10/dist-packages/dent_os_testbed/utils/test_utils/tgen_utils.py:426: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10703' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_lag">Starting testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.3, port 33444 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:46:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:46:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: ip link set dev swp33 up && ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag bond1 with ports ['/api/v1/sessions/14/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'bond1_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: lldpcli configure system bond-slave-src-mac-type real INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1540" }, "rx": { "rx": "409696" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint bond1 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:48:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n'}}] INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "real", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: lldpcli configure system bond-slave-src-mac-type local INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:48:03 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":297,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/qos/test_qos_default_prio.py::test_qos_default_prio | 662.88 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_qos_default_prio(testbed): """ Test Name: test_qos_default_prio Test Suite: suite_functional_qos Test Overview: Verify default priority behavior Test Procedure: 1. Create 1Q bridge. Add ports to bridge. Set ports and bridge up 2. Configure DSCP priorities. Add ETS with 8 strict TCs on ports 3. Configure tagged L3 streams 4. Send L3 packets with DSCP that are not in DSCP to TC map. Verify TBF statistic 5. Configure two DSCP for same PCP priority. Send Traffic. Verify both DSCPs are counted to the correct TC 6. Send packets. Verify number of priority packets received on default traffic class 7. Configure default priority. Verify default priority changed 8. Add new (smaller) default priority. Verify default priority did not change 9. Add another (higher) default priority. Verify default priority changed 10. Flush default priority and dscp-prio map. Verify default priority is zero """ num_of_ports = 4 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] ingress_port, *egress_ports = ports vlan = random.randint(2, 4095) wait_for_qd_stats = 5 # sec traffic_duration = 30 # sec dscp_not_in_map = 63 num_of_bands = 8 tolerance = .10 bridge = 'br0' tg_to_swp = {tg: swp for tg, swp in zip(tg_ports, ports)} # 1. Create 1Q bridge out = await IpLink.add(input_data=[{dent: [ {'name': bridge, 'type': 'bridge', 'vlan_filtering': 1, 'vlan_default_pvid': 0} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to create bridge' # Add ports to bridge # Set ports and bridge up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up', 'master': bridge} for port in ports ] + [ {'device': bridge, 'operstate': 'up'} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to enslave ports to bridge' out = await BridgeVlan.add(input_data=[{dent: [ {'device': port, 'vid': vlan, 'pvid': True, 'untagged': port in ports[:2]} for port in ports ]}]) assert out[0][dent]['rc'] == 0, f'Failed to add ports {ports} to vlan {vlan}' # 2. Configure DSCP priorities. # 8 random dscp values dscp_prio_map = {dscp: tc for tc, dscp in enumerate(random.sample(range(1, 60), num_of_bands))} await configure_dscp_map_and_verify(dent, {ingress_port: dscp_prio_map}) # Add ETS with 8 strict TCs on ports await configure_qdiscs_and_verify(dent, ports, rate=['10Gbit'] * num_of_bands) # 3. Configure tagged L3 streams dev_groups = tgen_utils_dev_groups_from_config([ {'ixp': tg_ports[host], 'ip': f'1.1.1.{host + 1}', # 1, 2, 3, 4 'gw': f'1.1.1.{gw + 1}', # 4, 3, 2, 1 'plen': 24} for host, gw in zip(range(len(tg_ports)), reversed(range(len(tg_ports)))) ]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Send L3 packets with DSCP that are not in DSCP to TC map. dscp_to_send = { 'type': 'list', 'list': list(map(dscp_to_raw, list(dscp_prio_map.keys()) + [dscp_not_in_map])), } streams = { 'traffic': { 'type': 'ethernet', 'ep_source': ingress_port, 'protocol': 'ipv4', 'frame_rate_type': 'line_rate', 'rate': 1, # % 'dscp_ecn': dscp_to_send, 'vlanID': vlan, }, } await tgen_utils_setup_streams(tgen_dev, None, streams) qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify TBF statistic await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, tol=tolerance) # 5. Configure two DSCP for same PCP priority dscp_prio_map[dscp_not_in_map] = num_of_bands - 1 out = await DcbApp.add(input_data=[{dent: [ {'dev': ingress_port, 'dscp_prio': [(dscp_not_in_map, dscp_prio_map[dscp_not_in_map])]} ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add dscp prio mapping' # Send Traffic qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify both DSCPs are counted to the correct TC await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, tol=tolerance) del dscp_prio_map[dscp_not_in_map] out = await DcbApp.flush(input_data=[{dent: [ {'dev': port} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to flush dscp prio map' await configure_dscp_map_and_verify(dent, {ingress_port: dscp_prio_map}) # 6. Send packets rand_l2_pcp, rand_l3_pcp = random.sample(range(1, 7), 2) # get 2 random but different priorities streams = { 'L2': { 'type': 'ethernet', 'ep_source': ingress_port, 'frame_rate_type': 'line_rate', 'rate': 1, # % }, 'L3': { 'type': 'ethernet', 'ep_source': ingress_port, 'frame_rate_type': 'line_rate', 'rate': 1, # % 'protocol': 'ipv4', 'dscp_ecn': dscp_to_send }, 'L2_tagged': { 'type': 'ethernet', 'ep_source': ingress_port, 'frame_rate_type': 'line_rate', 'rate': 1, # % 'vlanID': vlan, 'vlanPriority': rand_l2_pcp, }, 'L3_tagged': { 'type': 'ethernet', 'ep_source': ingress_port, 'frame_rate_type': 'line_rate', 'rate': 1, # % 'protocol': 'ipv4', 'dscp_ecn': dscp_to_send, 'vlanID': vlan, 'vlanPriority': rand_l3_pcp, }, } await tgen_utils_setup_streams(tgen_dev, None, streams) qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify number of priority packets received on default traffic class await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, tol=tolerance) # 7. Configure default priority. Verify default priority changed. def_prio = random.randint(1, 5) await configure_def_prio_and_verify(dent, ports, def_prio) qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, def_prio=def_prio, tol=tolerance) # 8. Add new (smaller) default priority. Verify default priority did not change await configure_def_prio_and_verify(dent, ports, def_prio - 1) qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, def_prio=def_prio, tol=tolerance) # 9. Add another (higher) default priority. Verify default priority changed await configure_def_prio_and_verify(dent, ports, def_prio + 1) qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=dscp_prio_map, num_of_tcs=num_of_bands, def_prio=def_prio + 1, tol=tolerance) # 10. Flush default priority and dscp-prio map. out = await DcbApp.flush(input_data=[{dent: [ {'dev': port} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to flush dscp prio map' for port in ports: out = await DcbApp.show(input_data=[{dent: [ {'dev': port, 'options': '-j'} ]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get dscp-prio map' assert not out[0][dent]['parsed_output'], \ 'Default priority and dscp-prio should be flushed' qd_stats = await get_qd_stats(dent, egress_ports) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify default priority is zero await asyncio.sleep(wait_for_qd_stats) qd_stats = await get_qd_stats_delta(dent, qd_stats) > await verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, num_of_tcs=num_of_bands, tol=tolerance) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py:301: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tgen_dev = [Ixia Traffic Generator: 10.36.118.213] qd_stats = {'swp34': {1: {'bytes': 0, 'drops': 0, 'packets': 0}, 2: {'bytes': 34884608, 'drops': 0, 'packets': 68134}, 3: {'bytes...ackets': 88096}, 3: {'bytes': 0, 'drops': 0, 'packets': 0}, 4: {'bytes': 45105152, 'drops': 0, 'packets': 88096}, ...}} tg_to_swp = {'10.36.118.199:2:5': 'swp33', '10.36.118.199:2:6': 'swp34', '10.36.118.199:2:7': 'swp35', '10.36.118.199:2:8': 'swp36'} dscp_prio_map = None tg_stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefcdf0> def_prio = 0, num_of_tcs = 8, tol = 0.1 async def verify_tgen_stats_per_port_per_tc(tgen_dev, qd_stats, tg_to_swp, dscp_prio_map=None, tg_stats=None, def_prio=0, num_of_tcs=8, tol=.10): """ Verify that there are no losses. Verify that tbf stats are correct. """ per_port_stats = {} if tg_stats is None: tg_stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in tg_stats.Rows: loss = tgen_utils_get_loss(row) assert loss == 0, f'Expected loss: 0%, actual: {loss}%' tc = get_tc_from_stats_row(row, dscp_prio_map, def_prio) swp = tg_to_swp[row[RX_PORT]] if swp not in per_port_stats: per_port_stats[swp] = [{'bytes': 0, 'packets': 0} for _ in range(num_of_tcs)] per_port_stats[swp][tc]['bytes'] += int(row[RX_BYTES]) per_port_stats[swp][tc]['packets'] += int(row[TX_FRAMES]) for port in qd_stats: for tc in range(num_of_tcs): band = num_of_tcs - tc qdisc = qd_stats[port][band] stats = per_port_stats[port][tc] for key in ('bytes', 'packets'): > assert is_close(qdisc[key], stats[key], rel_tol=tol), \ f'Expected qdisc {key} to be {stats[key]}, but got {qdisc[key]} ({tc = })' E AssertionError: Expected qdisc bytes to be 105198896, but got 135317550 (tc = 0) E assert False E + where False = is_close(135317550, 105198896, rel_tol=0.1) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/conftest.py:185: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14722' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=220] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=220] Local address: 172.17.0.3, port 40260 INFO asyncssh:logging.py:92 [conn=220] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=220] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=220] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:47:27 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:47:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=220, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=220, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1303 pvid untagged && bridge vlan add dev swp34 vid 1303 pvid untagged && bridge vlan add dev swp35 vid 1303 pvid && bridge vlan add dev swp36 vid 1303 pvid INFO asyncssh:logging.py:92 [conn=220, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=8] Command: bridge vlan add dev swp33 vid 1303 pvid untagged && bridge vlan add dev swp34 vid 1303 pvid untagged && bridge vlan add dev swp35 vid 1303 pvid && bridge vlan add dev swp36 vid 1303 pvid INFO asyncssh:logging.py:92 [conn=220, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 8:0 5:1 1:2 59:3 27:4 37:5 56:6 13:7 INFO asyncssh:logging.py:92 [conn=220, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=10] Command: dcb app add dev swp33 dscp-prio 8:0 5:1 1:2 59:3 27:4 37:5 56:6 13:7 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=12] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[1,2],[5,1],[8,0],[13,7],[27,4],[37,5],[56,6],[59,3]]} INFO asyncssh:logging.py:92 [conn=220, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=14] Command: tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=220, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=16] Command: tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=220, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14374452,"packets":105979,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2883848,"packets":24970,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2642944,"packets":22578,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6478771,"packets":38523,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3070,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7488,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2975,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7278,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7090,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7090,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14379302,"packets":106006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2886628,"packets":24990,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2643186,"packets":22579,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6480599,"packets":38529,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3339,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8046,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3244,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6817948,"packets":13349,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6817760,"packets":13352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6817760,"packets":13352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0c89a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6651 Rx 6651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6650 Rx 6650 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=23] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=220, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=24] Command: dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14384510,"packets":106042,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2886628,"packets":24990,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2644512,"packets":22592,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6484481,"packets":38552,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3339,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8046,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3513,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6818506,"packets":13351,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6817760,"packets":13352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405312,"packets":6651,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6817760,"packets":13352,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3405160,"packets":6654,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3404800,"packets":6650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14388934,"packets":106066,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2886628,"packets":24990,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2648852,"packets":22614,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6484565,"packets":38554,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3877,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9162,"packets":54,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3782,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10687736,"packets":20909,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10687548,"packets":20912,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3608,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10687708,"packets":20914,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0cae00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7556 Rx 7556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=29] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=30] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=31] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 8:0 5:1 1:2 59:3 27:4 37:5 56:6 13:7 INFO asyncssh:logging.py:92 [conn=220, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=32] Command: dcb app add dev swp33 dscp-prio 8:0 5:1 1:2 59:3 27:4 37:5 56:6 13:7 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=33] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=34] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=220, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=34] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[1,2],[5,1],[8,0],[13,7],[27,4],[37,5],[56,6],[59,3]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14398506,"packets":106136,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2889446,"packets":25017,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2653976,"packets":22650,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6486195,"packets":38561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4684,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11604,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4858,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10690736,"packets":20929,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4345,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10690246,"packets":20934,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4415,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7272960,"packets":14205,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273984,"packets":14207,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10690406,"packets":20936,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11141480,"packets":21764,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7273472,"packets":14206,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14403254,"packets":106164,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2893868,"packets":25042,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2654260,"packets":22652,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6486237,"packets":38562,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5222,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12720,"packets":76,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5127,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92586206,"packets":180882,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92586274,"packets":180889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4953,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92585410,"packets":180889,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17509376,"packets":34198,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08de40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59982 Rx 59982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59982 Rx 59982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59981 Rx 59981 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59982 Rx 59982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59982 Rx 59982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59981 Rx 59981 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6664 Rx 6664 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6665 Rx 6665 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=39] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=220, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=40] Command: dcb app add dev swp33 default-prio 4&& dcb app add dev swp34 default-prio 4&& dcb app add dev swp35 default-prio 4&& dcb app add dev swp36 default-prio 4 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=41] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=42] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=42] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[4]} INFO asyncssh:logging.py:92 [conn=220, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=43] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=44] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[4]} INFO asyncssh:logging.py:92 [conn=220, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=45] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=46] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=46] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[4]} INFO asyncssh:logging.py:92 [conn=220, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=47] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=48] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[4]} INFO asyncssh:logging.py:92 [conn=220, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14415352,"packets":106261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2905298,"packets":25135,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2654886,"packets":22655,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6486279,"packets":38563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5491,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13278,"packets":78,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5396,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92586764,"packets":180884,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92586832,"packets":180891,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5222,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17508864,"packets":34197,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17510912,"packets":34201,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17511424,"packets":34202,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92585968,"packets":180891,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21377384,"packets":41756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17509376,"packets":34198,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14419610,"packets":106284,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2909272,"packets":25156,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2655170,"packets":22657,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6486279,"packets":38563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5760,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13836,"packets":80,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5665,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29133312,"packets":56901,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110503424,"packets":215827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104211770,"packets":203590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135360,"packets":56905,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29131776,"packets":56898,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110501888,"packets":215824,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104211838,"packets":203597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135360,"packets":56905,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5491,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29131776,"packets":56898,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110501888,"packets":215824,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104210974,"packets":203597,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29133824,"packets":56902,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16f550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68110 Rx 68110 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68109 Rx 68109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68109 Rx 68109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68110 Rx 68110 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68109 Rx 68109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68109 Rx 68109 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7567 Rx 7567 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7568 Rx 7568 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=53] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=220, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=54] Command: dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=55] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=56] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=56] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4]} INFO asyncssh:logging.py:92 [conn=220, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=57] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=58] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=58] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4]} INFO asyncssh:logging.py:92 [conn=220, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=59] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=60] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=60] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4]} INFO asyncssh:logging.py:92 [conn=220, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=61] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=62] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=62] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4]} INFO asyncssh:logging.py:92 [conn=220, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14431186,"packets":106380,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2913220,"packets":25188,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2661206,"packets":22715,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6487871,"packets":38569,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6029,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14394,"packets":82,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5934,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29133312,"packets":56901,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110503424,"packets":215827,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104212328,"packets":203592,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135360,"packets":56905,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29131776,"packets":56898,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110501888,"packets":215824,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104212396,"packets":203599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135360,"packets":56905,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5760,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29131776,"packets":56898,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110501888,"packets":215824,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29135872,"packets":56906,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":104211532,"packets":203599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":33000296,"packets":64457,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29133824,"packets":56902,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14435728,"packets":106403,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2914388,"packets":25200,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2664580,"packets":22726,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6487871,"packets":38569,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6298,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14952,"packets":84,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6203,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40754688,"packets":79599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203474432,"packets":397411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115834262,"packets":226292,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40756736,"packets":79603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40753152,"packets":79596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203470336,"packets":397403,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115834330,"packets":226299,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40756736,"packets":79603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6029,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40753152,"packets":79596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203470336,"packets":397403,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115833466,"packets":226299,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40755200,"packets":79600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16dd50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68094 Rx 68094 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68093 Rx 68093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68093 Rx 68093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68094 Rx 68094 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68093 Rx 68093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68093 Rx 68093 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7565 Rx 7565 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7566 Rx 7566 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=67] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=220, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=68] Command: dcb app add dev swp33 default-prio 5&& dcb app add dev swp34 default-prio 5&& dcb app add dev swp35 default-prio 5&& dcb app add dev swp36 default-prio 5 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=69] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=70] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=70] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4,5]} INFO asyncssh:logging.py:92 [conn=220, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=71] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=72] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=72] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4,5]} INFO asyncssh:logging.py:92 [conn=220, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=73] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=74] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4,5]} INFO asyncssh:logging.py:92 [conn=220, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=75] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=76] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=220, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=76] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[3,4,5]} INFO asyncssh:logging.py:92 [conn=220, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14446958,"packets":106496,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2925334,"packets":25291,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2664822,"packets":22727,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6487913,"packets":38570,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15510,"packets":86,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6472,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40754688,"packets":79599,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203474432,"packets":397411,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115834820,"packets":226294,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40756736,"packets":79603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40753152,"packets":79596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203470336,"packets":397403,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115834888,"packets":226301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40756736,"packets":79603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6298,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40753152,"packets":79596,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203470336,"packets":397403,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40757248,"packets":79604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115834024,"packets":226301,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44621672,"packets":87155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40755200,"packets":79600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=80] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14451384,"packets":106519,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2928316,"packets":25300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2665064,"packets":22728,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6489115,"packets":38583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16068,"packets":88,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6741,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52372992,"packets":102291,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215092736,"packets":420103,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127453682,"packets":248988,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52371456,"packets":102288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215088640,"packets":420095,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127453750,"packets":248995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52369920,"packets":102285,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215088640,"packets":420095,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127452886,"packets":248995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133697024,"packets":261127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafeea10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68074 Rx 68074 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68074 Rx 68074 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68073 Rx 68073 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68074 Rx 68074 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68074 Rx 68074 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68073 Rx 68073 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7564 Rx 7564 Loss 0.000 INFO asyncssh:logging.py:92 [conn=220, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=81] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=82] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=82] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=83] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=220, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=84] Command: dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=220, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=84] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=85] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=220, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=86] Command: dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=220, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=86] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=87] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=220, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=88] Command: dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=220, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=88] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=89] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=90] Command: dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=90] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=220, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=92] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14463014,"packets":106614,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2928316,"packets":25300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2672344,"packets":22798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6493465,"packets":38608,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16626,"packets":90,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7010,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52372992,"packets":102291,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215092736,"packets":420103,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127454240,"packets":248990,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52371456,"packets":102288,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215088640,"packets":420095,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127454308,"packets":248997,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52369920,"packets":102285,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":215088640,"packets":420095,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127453444,"packets":248997,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133697024,"packets":261127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=220, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=94] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14467462,"packets":106638,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2368889,"packets":19908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2928316,"packets":25300,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2676676,"packets":22820,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6493581,"packets":38610,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7374,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17184,"packets":92,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7349,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87257600,"packets":170425,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":249977344,"packets":488237,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":232108782,"packets":453396,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":97477120,"packets":190385,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":260194304,"packets":508192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":262771858,"packets":513290,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133699584,"packets":261132,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":97475072,"packets":190381,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":260193792,"packets":508191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52375552,"packets":102296,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":262769458,"packets":513287,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56238440,"packets":109844,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133697024,"packets":261127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefcdf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68134 Rx 68134 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68134 Rx 68134 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68133 Rx 68133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68134 Rx 68134 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68134 Rx 68134 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68133 Rx 68133 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7570 Rx 7570 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7571 Rx 7571 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=220, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=95] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=96] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=220, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=97] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=98] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:58:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=220, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=220, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":331,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=220, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=103] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=220, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=104] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:58:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=220, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=220, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=220, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=220, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=220, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=220, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=220, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=128] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=220, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=130] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=220, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=132] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=220, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=134] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=220, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=136] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=220, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=138] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=220, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=140] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=220, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=142] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=220, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=144] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=220, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=146] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=220, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=148] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=220, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=150] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=220, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=152] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=220, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=154] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=220, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=156] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=220, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=158] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=220, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=160] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=220, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=162] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=220, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=164] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=220, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=166] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=220, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=168] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=220, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=170] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=220, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=172] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=220, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=172] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=174] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=220, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=174] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=175] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=176] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=220, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=176] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=177] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=178] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=220, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=178] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=179] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=180] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=220, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=180] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=181] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=182] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=220, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=182] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=183] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=184] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=220, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=184] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=185] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=186] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=220, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=186] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=187] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=188] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=220, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=188] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=189] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=190] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=220, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=190] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=191] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=192] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=220, chan=192] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=192] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=193] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=194] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=194] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=195] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=196] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=196] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=197] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=198] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=198] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=199] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=200] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=200] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=200] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=201] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=202] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=202] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=202] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=203] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=204] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=204] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=204] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=205] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=206] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=206] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=206] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=207] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=208] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=220, chan=208] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=208] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=209] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=210] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=220, chan=210] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=210] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=211] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=212] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=212] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=212] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=213] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=214] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=214] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=214] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=215] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=216] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=216] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=216] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=217] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=218] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=218] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=218] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=219] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=220] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=220] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=220] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=221] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=222] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=222] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=222] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=223] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=224] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=224] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=224] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=225] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=226] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=220, chan=226] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=226] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=227] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=228] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=220, chan=228] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=228] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=229] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=230] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=230] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=230] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=231] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=232] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=232] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=232] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=233] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=234] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=234] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=234] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=235] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=236] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=236] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=236] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=237] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=238] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=238] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=238] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=239] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=240] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=240] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=240] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=241] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=242] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=242] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=242] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=243] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=244] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=220, chan=244] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=244] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=245] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=246] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=220, chan=246] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=246] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=220, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=247] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=248] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=248] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=248] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=249] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=250] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=250] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=250] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=251] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=252] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=252] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=252] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=253] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=254] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=254] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=254] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=255] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=256] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=256] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=256] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=257] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=258] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=258] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=258] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=259] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=260] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=260] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=260] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=261] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=262] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=220, chan=262] Received exit status 1 INFO asyncssh:logging.py:92 [conn=220, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=262] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=220, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=263] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=264] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=220, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=264] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=265] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=266] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=220, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=266] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=267] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=268] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=220, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=268] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=269] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=270] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=220, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=270] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=271] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=272] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=220, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=272] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=273] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=274] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=220, chan=274] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=274] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=275] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=276] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=220, chan=276] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=276] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=277] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=278] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=220, chan=278] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=278] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=279] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=280] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=220, chan=280] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=280] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=281] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=282] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=220, chan=282] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=282] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=283] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=284] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=220, chan=284] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=284] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=285] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=286] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=220, chan=286] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=286] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=287] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=220, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=288] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=220, chan=288] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=288] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=289] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=220, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=290] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=220, chan=290] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=290] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=291] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=220, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=292] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=220, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=292] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=220, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=220, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=220, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=293] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=220, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=220, chan=294] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=220, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=220, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=220, chan=294] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Failed | functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership | 200.60 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> async def test_storm_control_br_and_unk_un_and_vlan_membership(testbed): """ Test Name: test_storm_control_br_and_unk_un_and_vlan_membership Test Suite: suite_functional_storm_control Test Overview: Verify rate is limited according to the changes in Storm Control Rules. Test Author: Kostiantyn Stavruk Test Procedure: 1. Create a bond (bond1), set link UP state on it and enslave the first port connected to Ixia to it. 2. Create a bond (bond2), set link UP state on it and enslave the third port connected to Ixia to it. 3. Set entities swp1, swp2, swp3, swp4 UP state. 4. Init vlan aware bridge entity br0. 5. Set bridge br0 admin state UP. 6. Set ports swp2, swp4 master br0. 7. Set bonds bond1, bond2 master br0. 8. Set storm control rate limit rule for all TG port. 9. Set up the following streams: - Ixia port 3: broadcast and unknown unicast streams with random generated size of packet. 10. Transmit continues traffic by TG. 11. Verify the RX rate on the RX port is as expected - the rate is limited by storm control. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] device_host_name = dent_dev.host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] kbyte_value_unk_uc = 20511 kbyte_value_bc = 32678 traffic_duration = 15 for x in range(2): out = await IpLink.add( input_data=[{device_host_name: [ {'device': f'bond{x+1}', 'type': 'bond mode 802.3ad'}]}]) err_msg = f"Verify that bond{x+1} created and type set to 'bond mode 802.3ad'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': f'bond{x+1}', 'operstate': 'up'}, {'device': ports[x if x == 0 else 2], 'operstate': 'down'}, {'device': ports[x if x == 0 else 2], 'master': f'bond{x+1}'}]}]) err_msg = f"Verify that bond{x+2} set to 'UP' state, {ports[x if x == 0 else 2]} set to 'DOWN' state \ and enslave {ports[x if x == 0 else 2]} port connected to Ixia.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'operstate': 'up'} for port in ports]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to 'UP' state.\n{out}" out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'type': 'bridge'}]}]) err_msg = f"Verify that bridge created and vlan filtering set to 'ON'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': ports[x+1 if x == 0 else 3], 'master': bridge} for x in range(2)]}]) err_msg = f'Verify that swp2 and swp4 bridge entities enslaved to bridge.\n{out}' assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': f'bond{x+1}', 'master': bridge} for x in range(2)]}]) err_msg = f'Verify that bond1 and bond2 entities enslaved to bridge.\n{out}' assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'type': 'bridge', 'vlan_default_pvid': 0}]}]) err_msg = f"Verify that vlan_default_pvid set to '0'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await BridgeVlan.add( input_data=[{device_host_name: [ {'device': ports[x+1 if x == 0 else 3], 'vid': f'{x+1}', 'untagged': True, 'pvid': True} for x in range(2)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities added to vid '1' and '2'.\n{out}" out = await BridgeVlan.add( input_data=[{device_host_name: [ {'device': f'bond{x+1}', 'vid': f'{x+1}', 'untagged': True, 'pvid': True} for x in range(2)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities added to vid '1' and '2'.\n{out}" params = [ {'port': ports[0], 'name': 'unk_uc_kbyte_per_sec_rate', 'value': 94404}, {'port': ports[1], 'name': 'bc_kbyte_per_sec_rate', 'value': 1210}, {'port': ports[1], 'name': 'unreg_mc_kbyte_per_sec_rate', 'value': 35099}, {'port': ports[1], 'name': 'unk_uc_kbyte_per_sec_rate', 'value': 37519}, {'port': ports[2], 'name': 'bc_kbyte_per_sec_rate', 'value': kbyte_value_bc}, {'port': ports[2], 'name': 'unk_uc_kbyte_per_sec_rate', 'value': kbyte_value_unk_uc}, {'port': ports[3], 'name': 'unreg_mc_kbyte_per_sec_rate', 'value': 83511} ] for value in params: await devlink_rate_value(dev=f'pci/0000:01:00.0/{value["port"].replace("swp","")}', name=value['name'], value=value['value'], cmode='runtime', device_host_name=device_host_name, set=True, verify=True) try: address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '1.1.1.3', '1.1.1.1', 24), (ports[2], tg_ports[2], '1.1.1.4', '1.1.1.1', 24), (ports[3], tg_ports[3], '1.1.1.5', '1.1.1.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — stream_unk_un — | — stream_1_unk_un — | — stream_2_unk_un — | - stream_3_unk_un - swp3 -> swp4 | swp3 -> swp1 | swp3 -> swp2 swp3 -> swp4 """ streams = { 'stream_br': { 'ip_source': dev_groups[tg_ports[2]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': 'b4:87:2a:9f:75:d5', 'dstMac': 'ff:ff:ff:ff:ff:ff', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_1_unk_un': { 'ip_source': dev_groups[tg_ports[2]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': '1c:30:27:a1:3c:bc', 'dstMac': '4a:4c:30:4e:9d:1e', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_2_unk_un': { 'ip_source': dev_groups[tg_ports[2]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcIp': '0.0.0.0', 'dstIp': '0.0.0.0', 'srcMac': '8:d4:6b:50:c9:f9', 'dstMac': 'b6:ee:e2:ef:d7:68', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' }, 'stream_3_unk_un': { 'ip_source': dev_groups[tg_ports[2]][0]['name'], 'ip_destination': dev_groups[tg_ports[3]][0]['name'], 'srcMac': 'ae:8a:1d:f3:1d:a5', 'dstMac': '6e:f8:5a:c0:66:84', 'frameSize': randrange(100, 1500), 'frame_rate_type': 'line_rate', 'rate': 30, 'protocol': '0x0800', 'type': 'raw' } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Port Statistics') kbyte_value = kbyte_value_bc+kbyte_value_unk_uc > await verify_expected_rx_rate(kbyte_value, stats, rx_ports=[streams['stream_3_unk_un']['ip_destination']], deviation=0.10) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:215: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ kbyte_value = 53189 stats = <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb003610> rx_ports = ['10.36.118.199:2:8_1.1.1.5/24'], deviation = 0.1 async def verify_expected_rx_rate(kbyte_value, stats, rx_ports, deviation=0.10): """ Verify expected rx_rate in bytes on ports Args: kbyte_value (int): Kbyte per sec rate stats (stats_object): Output of tgen_utils_get_traffic_stats rx_ports (list): list of Rx ports which rate should be verified deviation (int): Permissible deviation percentage """ collected = {row['Port Name']: {'tx_rate': row['Bytes Tx. Rate'], 'rx_rate': row['Bytes Rx. Rate']} for row in stats.Rows} exp_rate = kbyte_value*1000 for port in rx_ports: rx_name = port.split('_')[0] res = math.isclose(exp_rate, float(collected[rx_name]['rx_rate']), rel_tol=deviation) > assert res, f"The rate is not limited by storm control, \ actual rate {float(collected[rx_name]['rx_rate'])} instead of {exp_rate}." E AssertionError: The rate is not limited by storm control, actual rate 47618094.0 instead of 53189000. /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/storm_control_utils.py:62: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16690' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=229] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=229] Local address: 172.17.0.3, port 59008 INFO asyncssh:logging.py:92 [conn=229] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=229] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=229] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:22:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=229, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=229, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=229, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=229, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=229, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=229, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb003610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2168072 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1394090 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=229, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=229, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=229, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=229, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=62] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:25:18 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=229, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=229, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":342,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":343,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":344,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":104.96,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=229, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=229, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=70] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:25:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=229, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=229, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=72] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:25:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=229, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=229, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":344,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=229, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=229, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=229, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=229, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=229, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[stp] | 42.74 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'stp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_select_root_bridge(testbed, version): """ Test Name: STP/RSTP selecting root bridge Test Suite: suite_functional_stp Test Overview: Test root bridge selection based on bridge priority Test Procedure: 1. Create 3 bridge entities and set link up on them 2. Enslave ports to bridges 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports, bridges. Change priority of the bridges 5. Wait until topology converges 6. Verify the bridge root is br1 by the lowest MAC rule Verify other bridges do not consider themselves as root-bridge 7. Verify bridge_2 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change the highest bridge priority to a priority with lower value then the root bridge. 10. Wait for topology to re-build. 11. Verify bridge_2 has a blocking port and is not the same port as before 12.Verify bridge_2 has a blocking port 13.Verify bridge_1 does not have a blocking port """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port port_to_bridges = list(loopback_ports.values()) bridges = { 'bridge_1': port_to_bridges[:2], 'bridge_2': port_to_bridges[2:4], 'bridge_3': port_to_bridges[4:] } wait_time = 40 if version == 'stp' else 20 bridge_names = list(bridges.keys()) bridges_priorities = [2, 3, 4] hw_mac = ['44:DD:D2:85:22:A4', '22:67:05:4B:CC:25', '00:97:03:21:D9:68'] # 1. Create 3 bridge entities4 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filstering': 0, 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports to bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'down'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' for bridge, ports in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving ports' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'up'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, priority in zip(bridge_names, bridges_priorities): out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'treeprio', 'bridge': bridge, 'mstid': 0, 'priority': priority} ]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge priority' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule; # verify other bridges do not consider themselves as root-bridge out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0]['root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' > assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge {bridge_names[1]} or {bridge_names[2]} is a root bridge' E AssertionError: Bridge bridge_2 or bridge_3 is a root bridge E assert '' != '' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:121: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18255' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[stp]">Starting testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=250] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=250] Local address: 172.17.0.3, port 50710 INFO asyncssh:logging.py:92 [conn=250] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=250] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=250] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=250, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=250, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=250, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=250, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=250, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=9] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=250, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp && mstpctl setforcevers bridge_3 stp INFO asyncssh:logging.py:92 [conn=250, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=250, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=250, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=250, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=21] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=250, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=22] Command: ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=23] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=250, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=24] Command: ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=25] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=250, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=26] Command: ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=250, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=250, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=250, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=250, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=31] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=250, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=250, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=250, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=37] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=250, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=40] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=250, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=41] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=42] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=250, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=250, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=250, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=250, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":370,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":371,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":372,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=250, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:44 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=250, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=250, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=250, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=250, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=250, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=250, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=250, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Failed | functional/stp/test_stp_select_root.py::test_stp_select_root_bridge[rstp] | 22.46 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> version = 'rstp' @pytest.mark.parametrize('version', ['stp', 'rstp']) async def test_stp_select_root_bridge(testbed, version): """ Test Name: STP/RSTP selecting root bridge Test Suite: suite_functional_stp Test Overview: Test root bridge selection based on bridge priority Test Procedure: 1. Create 3 bridge entities and set link up on them 2. Enslave ports to bridges 3. Change the MAC addresses for all bridges. 4. Set link up on all participant ports, bridges. Change priority of the bridges 5. Wait until topology converges 6. Verify the bridge root is br1 by the lowest MAC rule Verify other bridges do not consider themselves as root-bridge 7. Verify bridge_2 has a blocking port 8. Verify bridge_1 doesn't have any blocking port. 9. Change the highest bridge priority to a priority with lower value then the root bridge. 10. Wait for topology to re-build. 11. Verify bridge_2 has a blocking port and is not the same port as before 12.Verify bridge_2 has a blocking port 13.Verify bridge_1 does not have a blocking port """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device = dent_devices[0] dent = device.host_name loopback_ports = {} for idx, port in enumerate(device.links_dict[dent][0] + device.links_dict[dent][1]): loopback_ports[f'loopback_{idx+1}'] = port port_to_bridges = list(loopback_ports.values()) bridges = { 'bridge_1': port_to_bridges[:2], 'bridge_2': port_to_bridges[2:4], 'bridge_3': port_to_bridges[4:] } wait_time = 40 if version == 'stp' else 20 bridge_names = list(bridges.keys()) bridges_priorities = [2, 3, 4] hw_mac = ['44:DD:D2:85:22:A4', '22:67:05:4B:CC:25', '00:97:03:21:D9:68'] # 1. Create 3 bridge entities4 bonds and set link up on them out = await IpLink.add(input_data=[{dent: [{ 'device': bridge, 'type': 'bridge', 'vlan_filstering': 0, 'stp_state': 1} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge' out = await Mstpctl.add(input_data=[{dent: [{'bridge': bridge} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to add bridge with mstpd' out = await Mstpctl.set(input_data=[{dent: [{ 'bridge': bridge, 'parameter': 'forcevers', 'version': version} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed to set stp/rstp version' # 2. Enslave ports to bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'down'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting links to state down' for bridge, ports in bridges.items(): out = await IpLink.set(input_data=[{dent: [{'device': port, 'master': bridge} for port in ports]}]) assert out[0][dent]['rc'] == 0, 'Failed enslaving ports' # 3. Change the MAC addresses for all bridges for bridge, mac in zip(bridge_names, hw_mac): rc, _ = await device.run_cmd(f'ifconfig {bridge} hw ether {mac}') assert rc == 0, 'Failed to change MAC address' # 4. Set link up on all participant ports, bridges out = await IpLink.set(input_data=[{dent: [{ 'device': port, 'operstate': 'up'} for port in loopback_ports.values()]}]) assert out[0][dent]['rc'] == 0, 'Failed setting loopback links to state up' out = await IpLink.set(input_data=[{dent: [{'device': bridge, 'operstate': 'up'} for bridge in bridges]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge to state up' for bridge, priority in zip(bridge_names, bridges_priorities): out = await Mstpctl.set(input_data=[{dent: [ {'parameter': 'treeprio', 'bridge': bridge, 'mstid': 0, 'priority': priority} ]}]) assert out[0][dent]['rc'] == 0, 'Failed setting bridge priority' # 5. Wait until topology converges await asyncio.sleep(wait_time) # 6. Verify the bridge root is bridge_1 by the lowest MAC rule; # verify other bridges do not consider themselves as root-bridge out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge_names[0], 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' assert out[0][dent]['parsed_output'][0]['root-port'] == '', f'Bridge { bridge_names[0]} is not a root bridge' # Other bridges do not consider themselves as root bridge for bridge in bridge_names: out = await Mstpctl.show(input_data=[{dent: [ {'parameter': 'bridge', 'bridge': bridge, 'options': '-f json'}]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get bridge detail' > assert out[0][dent]['parsed_output'][0][ 'root-port'] != '', f'Bridge {bridge_names[1]} or {bridge_names[2]} is a root bridge' E AssertionError: Bridge bridge_2 or bridge_3 is a root bridge E assert '' != '' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py:121: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18327' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_bridge[rstp]">Starting testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=250, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=251] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=251] Local address: 172.17.0.3, port 43502 INFO asyncssh:logging.py:92 [conn=251] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=251] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=251] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=251, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=251, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=251, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=251, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=251, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 && ip link add bridge_3 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=9] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 && mstpctl addbridge bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=251, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp && mstpctl setforcevers bridge_3 rstp INFO asyncssh:logging.py:92 [conn=251, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=251, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp6 down && ip link set dev swp8 down && ip link set dev swp10 down INFO asyncssh:logging.py:92 [conn=251, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=18] Command: ip link set dev swp9 master bridge_2 && ip link set dev swp6 master bridge_2 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=20] Command: ip link set dev swp8 master bridge_3 && ip link set dev swp10 master bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=21] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=22] Command: ifconfig bridge_1 hw ether 44:DD:D2:85:22:A4 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=23] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=251, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=24] Command: ifconfig bridge_2 hw ether 22:67:05:4B:CC:25 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=25] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=251, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=26] Command: ifconfig bridge_3 hw ether 00:97:03:21:D9:68 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=251, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp6 up && ip link set dev swp8 up && ip link set dev swp10 up INFO asyncssh:logging.py:92 [conn=251, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=251, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=30] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up && ip link set dev bridge_3 up INFO asyncssh:logging.py:92 [conn=251, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=31] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=251, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=32] Command: mstpctl settreeprio bridge_1 0 2 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=251, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=34] Command: mstpctl settreeprio bridge_2 0 3 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=251, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=36] Command: mstpctl settreeprio bridge_3 0 4 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=37] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=38] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"14","topology-change-count":"1","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] INFO asyncssh:logging.py:92 [conn=251, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=40] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"2.000.44:DD:D2:85:22:A4","designated-root":"2.000.44:DD:D2:85:22:A4","regional-root":"2.000.44:DD:D2:85:22:A4","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"14","topology-change-count":"1","topology-change":"no","topology-change-port":"swp7","last-topology-change-port":"swp5"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_bridge[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=251, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=41] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=42] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=251, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=251, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:38:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=251, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=251, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":373,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:dd:d2:85:22:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":374,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:67:05:4b:cc:25","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":375,"ifname":"bridge_3","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"00:97:03:21:d9:68","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=251, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=48] Command: ip link delete bridge_1 && ip link delete bridge_2 && ip link delete bridge_3 INFO asyncssh:logging.py:92 [conn=251, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:38:06 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=251, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=251, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=251, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=251, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=251, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=251, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=251, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:38:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| XFailed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size | 125.19 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_ping_size(testbed): """ Test Name: test_ipv4_ping_size Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 ping size Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Add dynamic arp entries 5. Generate ping with size smaller than mru and larger than mru and verify fragmentation on the larger ping """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Add dynamic arp entries streams = { 'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name']} } await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports # 5. Generate ping with size smaller than mru await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15) for port, *_, dst, _ in address_map)) # Generate ping with size larger than mru and verify fragmentation > await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15) for port, *_, dst, _ in address_map)) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev = [DENT infrastructure 2: 10.36.118.23], port = 'swp33', dst = '1.1.1.2' count = 1, interval = 0.1, size = 1473, timeout = 15 async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120): cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}' cmd += ' | grep "ping statistics" -A 2' # filter ouptut rc, out = await dev.run_cmd(cmd) assert rc == 0, f'Failed to send ping from {port} to {dst}' > assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}' E AssertionError: Some pings did not reach their destination E --- 1.1.1.2 ping statistics --- E 145 packets transmitted, 0 received, 100% packet loss, time 14976ms E E E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14976ms\n\n' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7330' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.3, port 53688 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:48:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:48:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.377/0.377/0.377/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.316/0.316/0.316/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.350/0.350/0.350/0.000 ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.255/0.255/0.255/0.000 ms INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=25] Command: ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=26] Command: ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14976ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=129, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=129, chan=26] Channel closed DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14990ms DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14974ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14990ms INFO asyncssh:logging.py:92 [conn=129, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:50:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:50:39 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=129, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation | 138.88 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7f0fe15b5b70> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_fragmentation(testbed): """ Test Name: test_ipv4_fragmentation Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 fragmentation Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Generate Non-fragment/fragment traffic and verify reception """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] traffic_duration = 10 fragmented = 1522 non_fragmented = 1420 address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'{tg1} <-> {tg2} | frame size {size}': { 'type': 'ipv4', 'ip_source': dev_groups[tg1][0]['name'], 'ip_destination': dev_groups[tg2][0]['name'], 'protocol': 'ip', 'rate': '1000', # pps 'frameSize': size, 'bi_directional': True, } for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented), (tg_ports[2], tg_ports[3], fragmented)) } # 4. Generate Non-fragment/fragment traffic and verify reception await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify packet discarded/fwd stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: loss = tgen_utils_get_loss(row) if str(non_fragmented) in row['Traffic Item']: assert loss == 0, f'Expected loss: 0%, actual: {loss}%' assert row['Tx Frames'] == row['Rx Frames'], \ f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}" else: # fragmented traffic > assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \ f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}" E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 10226 E assert 0 == (5113 * 2) E + where 0 = int('0') E + and 5113 = int('5113') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7536' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.3, port 42096 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:56:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:56:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb095c30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5113 Rx 5113 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5113 Rx 5113 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5113 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5113 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:59:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:59:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] | 10.91 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Can not run test in device infra2 with the speed: 10000') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-968' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.3, port 43910 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:39 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle | 0.00 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152') -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py | |||
| Skipped | functional/lacp/test_lacp_distribution_over_ecmp.py::test_lacp_ecmp_distribution_over_lag | 91.73 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py', 144, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8931' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_ecmp_distribution_over_lag">Starting testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.3, port 45732 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:00:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:00:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Command: ip address add 2.2.2.1/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=26] Command: ip address add 3.3.3.1/24 dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=28] Command: ip neigh add 2.2.2.3 lladdr 00:AD:20:B2:A7:75 dev bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=30] Command: ip neigh add 3.3.3.4 lladdr 00:59:CD:1E:83:1B dev bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=156, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=32] Command: ip route add 10.1.1.0/24 nexthop via 2.2.2.3 weight 1 nexthop via 3.3.3.4 weight 1 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/14/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=156, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=33] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=34] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=34] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=156, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=36] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":153,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":153,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_ecmp_distribution_over_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_distribution_over_ecmp.py INFO asyncssh:logging.py:92 [conn=156, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=37] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=38] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=38] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=156, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:02:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=156, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=42] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:02:30 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=156, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=156, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":153,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":154,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":155,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=156, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=156, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=156, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=52] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=156, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:02:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Skipped | functional/lacp/test_lacp_routing_over_bridge.py::test_lacp_routing_over_bridge | 3366.22 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py', 147, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9603' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_bridge">Starting testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.3, port 47060 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:10:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: ip link add bridge0 type bridge INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=22] Command: ip link set dev bond_2 master bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=165, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=26] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=28] Command: ip address add 2.2.2.2/24 dev bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=165, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=30] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2', '/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=165, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=31] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=32] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=32] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=165, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=34] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":259,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":259,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_bridge.py INFO asyncssh:logging.py:92 [conn=165, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=35] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=36] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=36] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=165, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=38] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:06:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=165, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":258,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=165, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=42] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:06:57 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=165, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=165, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=46] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=165, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":259,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":260,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a7","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=165, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=48] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=165, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=50] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=165, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=52] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:06:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Skipped | functional/lacp/test_lacp_routing_over_lacp.py::test_lacp_routing_over_lacp | 78.92 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py', 136, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9670' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_lacp">Starting testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.3, port 49458 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:06:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:06:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=22] Command: ip address add 2.2.2.2/24 dev bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=166, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=24] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2', '/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=166, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=26] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=26] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=166, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=28] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":261,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":261,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2.2.2.3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_lacp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_lacp.py INFO asyncssh:logging.py:92 [conn=166, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=29] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=30] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:08:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=166, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=34] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:08:16 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=166, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=166, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=166, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":261,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":262,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a7","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=166, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=166, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:08:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Skipped | functional/lacp/test_lacp_routing_over_vlan_device.py::test_lacp_routing_over_vlan_device | 83.64 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py', 168, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-9729' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_routing_over_vlan_device">Starting testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.3, port 35548 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:08:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:08:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link add bridge_0 type bridge vlan_filtering 1 vlan_default_pvid 10 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: ip link set dev bridge_0 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: bridge vlan add dev bridge_0 vid 10 self INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: ip link set dev bond_1 up && ip link set dev bond_2 up INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: ip link set dev swp34 master bond_2 && ip link set dev swp35 master bond_2 && ip link set dev swp36 master bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=24] Command: ip link set dev bond_2 master bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=26] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=167, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=28] Command: ip link add link bridge_0 name bridge_0.10 type vlan id 10 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=167, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=30] Command: ip link set dev bridge_0.10 up INFO asyncssh:logging.py:92 [conn=167, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=32] Command: ip address add 1.1.1.1/24 dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=167, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=34] Command: ip address add 2.2.2.2/24 dev bridge_0.10 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=167, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=36] Command: ip route add 10.1.1.0/24 via 2.2.2.3 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2', '/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=167, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=37] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=38] Command: bridge -j vlan show dev bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=38] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond_1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=167, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=40] Command: ip -j address show bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":264,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond_1 ', 'rc': 0, 'result': '[{"ifindex":264,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"bond_1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2.2.2.3/24 (bridge IP) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_routing_over_vlan_device from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_routing_over_vlan_device.py INFO asyncssh:logging.py:92 [conn=167, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO asyncssh:logging.py:92 [conn=167, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=44] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=167, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=46] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":263,"ifname":"bridge_0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=48] Command: ip link delete bridge_0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=167, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=52] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":264,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":265,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a7","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=167, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=54] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=167, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=56] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=167, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=58] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:09:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Skipped | functional/lacp/test_lacp_with_all_vlan_modes.py::test_lacp_all_vlan_modes | 92.98 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py', 124, 'Skipped: System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG') -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_all_vlan_modes">Starting testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10108' coro=<test_lacp_all_vlan_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py:44> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.3, port 50172 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:15:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: ip link add bridge_1 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: ip link set dev bridge_1 up INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: ip link set dev swp33 master bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: ip link set dev swp34 master bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: ip link set dev swp35 master bond_3 && ip link set dev swp36 master bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 && ip link set dev bond_3 master bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=22] Command: bridge vlan add dev bond_1 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=172, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=24] Command: bridge vlan add dev bond_1 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=172, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=26] Command: bridge vlan add dev bond_2 vid 2 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=172, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=28] Command: bridge vlan add dev bond_3 vid 4 pvid INFO asyncssh:logging.py:92 [conn=172, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_0 with ports ['/api/v1/sessions/14/ixnetwork/vport/1'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_0_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:5']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_1 with ports ['/api/v1/sessions/14/ixnetwork/vport/2'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_1_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:6']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding lag LAG_2 with ports ['/api/v1/sessions/14/ixnetwork/vport/3', '/api/v1/sessions/14/ixnetwork/vport/4'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': 'LAG_2_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'lag', 'lag_members': ['10.36.118.199:2:7', '10.36.118.199:2:8']} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From bond_1 -> untagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint LAG_0 to LAG_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_all_vlan_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_with_all_vlan_modes.py INFO asyncssh:logging.py:92 [conn=172, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:17:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=172, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":292,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=34] Command: ip link delete bridge_1 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:17:22 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=172, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=172, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=38] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=172, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":293,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":294,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":295,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=172, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=40] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=42] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=44] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=46] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:17:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': -1, 'result': ' System Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\nSystem Exception Caught. Exception Text: 10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n10/100/1000 LSM XMVDC16 (10/100/1000 LSM XMVDC16) ports are not supported as part of a LAG\n\n'}}] | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[port] | 0.67 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19399' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[port]">Starting testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=278] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=278] Local address: 172.17.0.3, port 41702 INFO asyncssh:logging.py:92 [conn=278] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=278] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=278] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=278, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=278, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=278, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=278, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=278, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=278, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=278, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=278, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=278, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=278, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=278, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=278, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=278, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=278, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=278, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=278, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=278, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=278, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=278, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=278, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_on[bridge] | 0.57 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19434' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_on[bridge]">Starting testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=278, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=279] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=279] Local address: 172.17.0.3, port 41712 INFO asyncssh:logging.py:92 [conn=279] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=279] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=279] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=279, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=279, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=279, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=279, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=279, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=279, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=279, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=279, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=279, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=279, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=279, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=279, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=279, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=279, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=279, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=279, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=279, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=279, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=279, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=279, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=279, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[port] | 0.50 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19469' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[port]">Starting testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=279, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=280] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=280] Local address: 172.17.0.3, port 41724 INFO asyncssh:logging.py:92 [conn=280] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=280] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=280] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=280, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=280, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=280, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=280, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=280, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=280, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=280, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=280, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=280, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=280, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=280, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=280, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=280, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=280, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=280, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=280, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=280, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=280, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=280, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=280, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=280, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_basic.py::test_vrrp_basic_down_on[bridge] | 0.50 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19504' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_basic_down_on[bridge]">Starting testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=280, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=281] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=281] Local address: 172.17.0.3, port 41728 INFO asyncssh:logging.py:92 [conn=281] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=281] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=281] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=281, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=281, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=281, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=281, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:22 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_basic_down_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_basic.py INFO asyncssh:logging.py:92 [conn=281, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=281, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=281, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=281, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=281, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=281, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=281, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=281, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=281, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=281, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=281, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=281, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=281, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=281, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=281, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=281, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=281, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[port] | 0.51 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19539' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[port]">Starting testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=281, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=282] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=282] Local address: 172.17.0.3, port 41740 INFO asyncssh:logging.py:92 [conn=282] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=282] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=282] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=282, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=282, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=282, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=282, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=282, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=282, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=282, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=282, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=282, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=282, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=282, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=282, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=282, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=282, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=282, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=282, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=282, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=282, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=282, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=282, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=282, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/vrrp/test_vrrp_priority.py::test_vrrp_priority_on[bridge] | 0.70 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/vrrp_utils.py', 41, 'Skipped: The testbed does not have enough devices (1 agg + 2 infra)') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-19574' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vrrp_priority_on[bridge]">Starting testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=282, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=283] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=283] Local address: 172.17.0.3, port 41744 INFO asyncssh:logging.py:92 [conn=283] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=283] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=283] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=283, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=283, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=283, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=283, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:24 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vrrp_priority_on[bridge] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vrrp/test_vrrp_priority.py INFO asyncssh:logging.py:92 [conn=283, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=283, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=10] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=283, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=10] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=283, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=283, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=283, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=283, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=283, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=283, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=283, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=283, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=283, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=283, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=283, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=283, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=283, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=283, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=283, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=283, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] | 180.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.3, port 55888 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:36:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:36:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb8f8790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 5637 Rx 5637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 5637 Rx 5630 Loss 0.124 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:39:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:39:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] | 242.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-72' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.3, port 47672 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:39:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:39:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbcd1a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4356 Rx 4356 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbc2c2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4768 Rx 4768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:43:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:43:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] | 173.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-128' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.3, port 43648 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:43:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:43:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb8fb340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 46526 Rx 35270 Loss 24.193 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 46525 Rx 35270 Loss 24.191 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:45:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:46:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] | 241.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-184' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.3, port 47666 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:46:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:46:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbdd79d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 48640 Rx 48640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbdd5f90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 48805 Rx 48805 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:50:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:50:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] | 180.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-240' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.3, port 39736 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:50:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:50:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb8fba00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 696840 Rx 696840 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 696840 Rx 696840 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:53:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:53:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] | 176.85 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-296' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.3, port 43084 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:53:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:53:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7206d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6836 Rx 6836 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6836 Rx 6836 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:55:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:55:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] | 246.17 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-352' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.3, port 51008 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:56:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 15:56:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbc2c2e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4803 Rx 4803 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7236d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4894 Rx 4894 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:00:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:00:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] | 177.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-408' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.3, port 33476 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:00:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:00:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb776590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 66853 Rx 66853 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 66853 Rx 66853 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:03:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:03:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] | 246.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-464' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.3, port 39100 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:03:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp34 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:03:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb8fa590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 48499 Rx 48499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7766e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 48222 Rx 48222 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:07:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:07:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] | 175.08 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-520' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.3, port 39700 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:07:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:07:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=26] Command: ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb777df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 666994 Rx 666994 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 666994 Rx 666994 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] | 164.53 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-688' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.3, port 55484 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:10:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb722a70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4351 Rx 4351 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4351 Rx 4351 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:13:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:13:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] | 239.20 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-744' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.3, port 43442 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:13:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:13:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb774670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4950 Rx 4950 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7742b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4753 Rx 4753 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:17:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:17:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] | 175.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-800' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.3, port 47498 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:17:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:17:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7235b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 66650 Rx 66650 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 66650 Rx 66650 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:20:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:20:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] | 245.41 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-856' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.3, port 38658 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:20:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:20:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cc3a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 47790 Rx 47790 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cf550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 50846 Rx 50846 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:24:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:24:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] | 176.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-912' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.3, port 38860 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:24:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:24:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb723640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 548086 Rx 548086 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 548086 Rx 548086 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed | 219.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-1006' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.3, port 49784 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:27:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=30] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=32] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=33] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=34] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=34] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=35] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=36] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=36] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=37] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=38] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=38] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: No Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=40] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=42] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=44] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=45] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=46] Command: ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=47] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=48] Command: ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=49] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=50] Command: ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=51] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=52] Command: ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> ('10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8') INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7771f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 10159 Rx 10159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 10158 Rx 10158 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 10158 Rx 10158 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=53] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=54] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=55] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=56] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:31:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=58] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:31:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=62] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=62] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_port_state.py::test_l1_port_state_status | 5.55 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1083' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete It took 0:00:00.038994 to grep count of entities. It took 0:00:05.086595 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.3, port 42134 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:31:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG infra2:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG infra2:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether 82:05:e5:33:1f:6d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 46:15:5d:75:69:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 484 bytes 24200 (23.6 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 484 bytes 24200 (23.6 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.23 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::1abe:92ff:fe13:6482 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:82 txqueuelen 2048 (Ethernet) RX packets 8718 bytes 803396 (784.5 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6259 bytes 759760 (741.9 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:85 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:86 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:88 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:89 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:90 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:91 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:92 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:93 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:94 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:96 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:97 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:98 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:99 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a5 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a5 txqueuelen 1000 (Ethernet) RX packets 2287230 bytes 1170972160 (1.0 GiB) RX errors 0 dropped 0 overruns 0 frame 10996 TX packets 2260501 bytes 1157101386 (1.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a6 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a6 txqueuelen 1000 (Ethernet) RX packets 2259997 bytes 1157029312 (1.0 GiB) RX errors 0 dropped 0 overruns 0 frame 11005 TX packets 2267326 bytes 1160632790 (1.0 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 1 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a7 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a7 txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 10365 bytes 5237358 (4.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a8 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a8 txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 10363 bytes 5237160 (4.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a9 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:aa txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ab txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ac txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ad txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ae txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:af txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b5 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b7 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b8 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:31:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] | 178.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1102' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.3, port 42902 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:31:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cc0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 616 Rx 616 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":315392,"packets":616,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":315392,"hw_packets":616,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 616, Rx Frames: 616, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 616, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 616, packets = 616, expected = 616, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 616, hw_packets = 616, expected = 616, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbdd6b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":16,"stats":{"bytes":480072,"packets":964,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, packets = 964, expected = 967, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb775ff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":16,"stats":{"bytes":975674,"packets":1932,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":480570,"sw_packets":965,"hw_bytes":495104,"hw_packets":967,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, packets = 1932, expected = 1934, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, hw_packets = 967, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 967, sw_packets = 965, expected = 967, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:34:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:34:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:34:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] | 175.93 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1179' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.3, port 43102 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:34:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbcd2920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 608 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":311296,"packets":608,"drops":608,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":311296,"hw_packets":608,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 608, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 608, drops = 608, expected = 608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 608, packets = 608, expected = 608, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 608, hw_packets = 608, expected = 608, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbdd6350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":16,"stats":{"bytes":479076,"packets":962,"drops":962,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, drops = 962, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, packets = 962, expected = 967, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbdd6f80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":495104,"packets":967,"drops":967,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":495104,"hw_packets":967,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, drops = 967, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, packets = 967, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, hw_packets = 967, expected = 967, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 967, sw_packets = 0, expected = 0, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:37:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:37:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:37:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] | 172.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1256' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.3, port 42890 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:37:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbcd3fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 613 Rx 613 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":313856,"packets":613,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":313856,"hw_packets":613,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 613, Rx Frames: 613, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 613, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 613, packets = 613, expected = 613, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 613, hw_packets = 613, expected = 613, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdbcd3ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":16,"stats":{"bytes":479076,"packets":962,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 967, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 967, packets = 962, expected = 967, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7ceda0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 962 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":16,"stats":{"bytes":971620,"packets":1924,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":479076,"sw_packets":962,"hw_bytes":492544,"hw_packets":962,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 962, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 962, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 962, packets = 1924, expected = 1924, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 962, hw_packets = 962, expected = 962, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 962, sw_packets = 962, expected = 962, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:12 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_rule_deletion | 17.95 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1333' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.3, port 58820 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10000 flower src_mac 02:ec:f1:df:f3:b7 dst_mac 02:32:10:91:86:cc vlan_id 3355 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10001 flower src_mac 02:99:6f:aa:e1:80 dst_mac 02:8d:72:3f:6d:6c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:35:c1:59:b0:ba dst_mac 02:0a:99:bc:93:5d vlan_id 1849 vlan_ethtype ip src_ip 111.170.205.184 dst_ip 91.134.146.130 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10003 flower src_mac 02:39:f8:a4:b1:7a dst_mac 02:84:84:dc:4c:63 vlan_id 2326 vlan_ethtype ipv4 src_ip 12.126.184.78 dst_ip 29.21.49.170 ip_proto tcp src_port 60610 dst_port 46204 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10004 flower src_mac 02:77:8f:88:01:8e dst_mac 02:1e:60:48:51:1f vlan_id 3451 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10005 flower src_mac 02:f0:7e:44:1d:71 dst_mac 02:0b:47:8c:1f:3f vlan_id 627 vlan_ethtype ip src_ip 68.107.165.208 dst_ip 11.171.239.155 ip_proto tcp src_port 19083 dst_port 25743 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10006 flower src_mac 02:bd:eb:bf:06:04 dst_mac 02:af:4a:57:c1:08 vlan_id 461 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10007 flower src_mac 02:c6:ee:15:c4:e5 dst_mac 02:fa:ee:da:93:2f action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10008 flower src_mac 02:8a:fa:9c:62:ac dst_mac 02:a4:b5:27:f0:35 src_ip 124.213.97.155 dst_ip 34.158.134.152 ip_proto tcp src_port 16328 dst_port 34259 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10009 flower src_mac 02:b2:4b:11:39:47 dst_mac 02:1c:10:ef:61:0b vlan_id 3636 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10010 flower src_mac 02:94:f7:d2:6d:ae dst_mac 02:b6:49:56:16:fc src_ip 71.58.161.193 dst_ip 72.237.99.190 ip_proto udp src_port 3534 dst_port 7260 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10011 flower src_mac 02:97:52:98:3d:fd dst_mac 02:bc:3a:9f:eb:22 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10012 flower src_mac 02:68:0d:27:94:e5 dst_mac 02:f2:8f:14:10:53 src_ip 46.62.4.138 dst_ip 104.143.214.235 ip_proto tcp src_port 40309 dst_port 33348 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10013 flower src_mac 02:1b:55:a9:cc:c8 dst_mac 02:06:a6:77:1b:a4 src_ip 82.172.33.206 dst_ip 34.250.94.86 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:3a:d6:cc:3d:4f dst_mac 02:64:14:f0:f8:97 vlan_id 3188 vlan_ethtype 0x0800 src_ip 27.108.125.210 dst_ip 18.90.26.209 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10015 flower src_mac 02:17:42:09:fc:c5 dst_mac 02:ae:d1:0b:5f:3e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10016 flower src_mac 02:e7:fd:1f:24:a1 dst_mac 02:42:00:27:03:ac action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10017 flower src_mac 02:21:6d:3e:16:8f dst_mac 02:9c:d0:19:6d:84 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10018 flower src_mac 02:ae:bd:94:57:f5 dst_mac 02:87:e5:fe:5b:1d src_ip 86.201.132.204 dst_ip 92.113.210.248 ip_proto tcp src_port 15300 dst_port 40831 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10019 flower src_mac 02:66:1b:4e:5e:ce dst_mac 02:53:49:69:c2:63 vlan_id 3900 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10020 flower src_mac 02:2c:ec:d6:d7:43 dst_mac 02:31:b7:5b:55:12 vlan_id 2562 vlan_ethtype 0x0800 src_ip 71.143.213.71 dst_ip 53.41.224.217 ip_proto udp src_port 20869 dst_port 52232 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10021 flower src_mac 02:ac:00:08:97:4b dst_mac 02:a2:1e:da:f7:5e vlan_id 2042 vlan_ethtype 0x0800 src_ip 82.205.40.61 dst_ip 108.172.141.136 ip_proto tcp src_port 17098 dst_port 62772 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10022 flower src_mac 02:db:86:cd:12:82 dst_mac 02:b2:f6:be:99:1b action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10023 flower src_mac 02:27:f7:5c:79:80 dst_mac 02:d6:5d:e4:f4:04 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10024 flower src_mac 02:0f:79:47:36:60 dst_mac 02:21:ef:4f:10:5a vlan_id 3456 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10025 flower src_mac 02:9c:62:84:a8:8c dst_mac 02:a0:58:46:29:68 action drop && tc filter add dev swp33 ingress protocol ip pref 10026 flower src_mac 02:00:9e:ee:aa:79 dst_mac 02:2f:62:60:01:a1 src_ip 101.221.248.7 dst_ip 37.186.222.56 ip_proto tcp src_port 24073 dst_port 57792 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10027 flower src_mac 02:c5:b8:76:80:5a dst_mac 02:2b:00:f0:9f:8c src_ip 116.203.113.12 dst_ip 105.138.23.93 ip_proto icmp code 148 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10028 flower src_mac 02:ce:20:dd:ce:69 dst_mac 02:f7:76:8e:06:eb vlan_id 1515 vlan_ethtype ipv4 src_ip 116.237.45.234 dst_ip 78.64.55.92 ip_proto tcp src_port 6235 dst_port 11826 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:6e:b3:7b:ba:89 dst_mac 02:f1:27:3f:30:00 vlan_id 901 vlan_ethtype 0x0800 src_ip 60.90.215.214 dst_ip 85.78.107.187 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:83:a2:8c:62:8e dst_mac 02:77:d2:bc:02:43 vlan_id 3676 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10031 flower src_mac 02:34:55:55:ad:87 dst_mac 02:3c:4c:64:3f:0d vlan_id 3654 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10032 flower src_mac 02:dd:25:5c:43:f8 dst_mac 02:20:a8:0c:3a:1a src_ip 108.121.195.155 dst_ip 93.241.253.3 ip_proto udp src_port 45478 dst_port 18021 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10033 flower src_mac 02:4c:6a:80:c1:63 dst_mac 02:bb:d1:02:a6:f5 src_ip 121.202.105.5 dst_ip 26.170.13.119 ip_proto tcp src_port 35951 dst_port 23688 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10034 flower src_mac 02:8a:f4:6f:c1:1b dst_mac 02:89:60:9d:57:3f vlan_id 1680 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:42:00:8d:77:6e dst_mac 02:ec:c7:5b:b1:4a action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10036 flower src_mac 02:d5:5c:1f:27:4d dst_mac 02:9b:76:27:40:fa action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:36:f8:0c:aa:90 dst_mac 02:96:ec:4e:96:fb vlan_id 3853 vlan_ethtype ipv4 src_ip 18.80.112.109 dst_ip 21.61.172.215 ip_proto udp src_port 3819 dst_port 9815 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10038 flower src_mac 02:63:fe:b9:ec:30 dst_mac 02:5f:5f:17:4a:cc src_ip 88.217.164.138 dst_ip 54.170.81.196 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10039 flower src_mac 02:42:87:2b:44:5d dst_mac 02:da:37:a6:e4:97 src_ip 82.246.123.170 dst_ip 101.43.165.24 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:b2:52:e4:16:4d dst_mac 02:76:96:16:c7:f0 src_ip 53.6.246.114 dst_ip 27.97.0.168 ip_proto icmp code 22 type 14 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10041 flower src_mac 02:8a:62:b8:dd:12 dst_mac 02:18:89:8f:64:66 src_ip 28.7.252.46 dst_ip 64.236.130.126 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10042 flower src_mac 02:66:f2:71:dd:49 dst_mac 02:1a:ee:c4:f2:2a vlan_id 3447 vlan_ethtype ipv4 src_ip 119.236.14.209 dst_ip 125.227.4.204 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower src_mac 02:12:2d:d4:dc:60 dst_mac 02:dc:ba:4f:a0:b0 vlan_id 4020 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10044 flower src_mac 02:5a:d7:ff:5e:4a dst_mac 02:eb:a3:3e:2a:4b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10045 flower src_mac 02:8f:13:de:6f:94 dst_mac 02:dc:2a:c7:82:7a action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10046 flower src_mac 02:bd:7b:4a:0d:66 dst_mac 02:4f:c3:e7:58:63 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10047 flower src_mac 02:dd:1a:49:77:50 dst_mac 02:fe:b2:f1:15:28 src_ip 88.119.14.50 dst_ip 105.182.223.115 ip_proto icmp code 120 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10048 flower src_mac 02:78:ff:cb:5a:4f dst_mac 02:18:b5:07:4b:73 vlan_id 538 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:d6:ab:5a:e0:69 dst_mac 02:b3:82:6a:a6:ce vlan_id 3502 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10050 flower src_mac 02:bf:43:cd:4c:4b dst_mac 02:29:a5:49:43:67 vlan_id 3439 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10051 flower src_mac 02:3c:ab:77:98:80 dst_mac 02:9f:f7:38:b9:c2 src_ip 114.149.194.113 dst_ip 28.29.16.94 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10052 flower src_mac 02:3a:d7:8f:36:18 dst_mac 02:23:0d:aa:13:ed action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10053 flower src_mac 02:be:b5:ed:d7:77 dst_mac 02:f8:64:cd:4a:9b vlan_id 1505 vlan_ethtype ip src_ip 37.14.72.209 dst_ip 81.126.116.165 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10054 flower src_mac 02:2e:d3:bf:8e:73 dst_mac 02:f7:4c:cd:53:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10055 flower src_mac 02:9c:61:bb:bb:a5 dst_mac 02:88:45:0e:4e:7a vlan_id 1645 vlan_ethtype ipv4 src_ip 111.87.253.235 dst_ip 124.100.235.108 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10056 flower src_mac 02:bf:4b:d7:d7:5a dst_mac 02:96:4a:ad:61:37 vlan_id 1922 vlan_ethtype ipv4 src_ip 91.122.162.185 dst_ip 31.8.6.186 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:a8:70:cd:1d:1f dst_mac 02:51:29:55:39:98 vlan_id 3973 vlan_ethtype 0x0800 src_ip 82.243.125.225 dst_ip 40.9.181.116 ip_proto tcp src_port 513 dst_port 28199 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10058 flower src_mac 02:49:3b:a5:53:cc dst_mac 02:ee:ee:bf:37:d2 vlan_id 1745 vlan_ethtype ipv4 src_ip 111.33.155.250 dst_ip 19.203.170.150 ip_proto udp src_port 13423 dst_port 10432 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10059 flower src_mac 02:39:86:b3:25:83 dst_mac 02:8d:4f:60:51:a8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10060 flower src_mac 02:8b:4f:ae:d5:80 dst_mac 02:a1:2e:04:0a:13 src_ip 68.6.205.40 dst_ip 126.86.66.26 ip_proto icmp code 224 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10061 flower src_mac 02:cb:17:02:15:3a dst_mac 02:fd:f1:f7:2e:57 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:db:13:3f:36:de dst_mac 02:73:06:3e:3b:57 vlan_id 3272 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10063 flower src_mac 02:e8:22:11:af:c5 dst_mac 02:f6:c6:63:88:68 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:2c:e0:fa:f0:4e dst_mac 02:a9:e0:6e:45:c8 vlan_id 2438 vlan_ethtype ipv4 src_ip 63.153.143.102 dst_ip 22.119.251.111 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10065 flower src_mac 02:b9:53:f0:1f:14 dst_mac 02:6e:3c:28:13:a2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10066 flower src_mac 02:11:be:a3:12:06 dst_mac 02:df:85:fe:67:6f vlan_id 218 vlan_ethtype ip src_ip 104.31.254.240 dst_ip 72.232.107.134 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10067 flower src_mac 02:fe:a2:ed:dd:81 dst_mac 02:0a:c1:88:b7:0f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10068 flower src_mac 02:1a:ca:c7:55:90 dst_mac 02:e1:86:c6:73:07 vlan_id 4025 vlan_ethtype ip src_ip 58.121.210.234 dst_ip 20.62.53.179 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10069 flower src_mac 02:c5:0f:5e:05:af dst_mac 02:a9:b7:37:c0:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10070 flower src_mac 02:38:ae:7b:23:35 dst_mac 02:53:a6:58:57:b1 vlan_id 1428 vlan_ethtype ipv4 src_ip 46.31.208.125 dst_ip 33.44.1.210 ip_proto tcp src_port 37557 dst_port 57628 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10071 flower src_mac 02:09:2d:2e:81:14 dst_mac 02:f3:43:18:bd:74 src_ip 118.129.31.191 dst_ip 120.128.146.210 ip_proto udp src_port 50644 dst_port 31691 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10072 flower src_mac 02:bf:24:4c:8a:e1 dst_mac 02:e2:cb:34:f0:a1 src_ip 49.39.103.188 dst_ip 123.249.6.125 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10073 flower src_mac 02:f7:ab:76:fc:7e dst_mac 02:6c:94:a9:6e:38 vlan_id 3176 vlan_ethtype ipv4 src_ip 56.115.60.135 dst_ip 72.90.169.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:a5:af:42:c9:fe dst_mac 02:4b:7c:85:2f:85 vlan_id 1152 vlan_ethtype ip src_ip 126.12.43.86 dst_ip 113.46.68.46 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:49:d1:3c:e6:3d dst_mac 02:46:83:fa:0d:b4 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10076 flower src_mac 02:fd:10:20:80:22 dst_mac 02:6e:ed:69:4c:34 action pass && tc filter add dev swp33 ingress protocol ip pref 10077 flower src_mac 02:ff:e2:4c:94:4f dst_mac 02:ae:21:9d:f0:08 src_ip 115.172.23.44 dst_ip 36.91.166.223 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10078 flower src_mac 02:90:6c:03:5f:c7 dst_mac 02:a8:61:a1:87:a8 vlan_id 3243 vlan_ethtype 0x0800 src_ip 101.108.127.238 dst_ip 45.125.145.132 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10079 flower src_mac 02:49:9e:6e:1a:66 dst_mac 02:bc:0c:6b:06:60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10080 flower src_mac 02:c6:ec:f3:d1:bc dst_mac 02:6f:42:ca:a8:4e vlan_id 2207 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10081 flower src_mac 02:b6:df:67:cf:0d dst_mac 02:16:fd:58:08:50 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10082 flower src_mac 02:15:a2:5b:6a:1b dst_mac 02:46:3e:8f:ed:f9 vlan_id 3688 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10083 flower src_mac 02:86:b8:31:ee:ae dst_mac 02:42:cd:b8:ac:71 src_ip 101.109.208.236 dst_ip 56.10.190.185 ip_proto udp src_port 59000 dst_port 38974 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:5a:d1:8f:3b:b0 dst_mac 02:01:fe:61:1b:88 src_ip 51.115.140.6 dst_ip 86.51.147.22 ip_proto tcp src_port 47634 dst_port 39313 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:30:fa:fd:97:f9 dst_mac 02:1f:7e:e1:97:2a vlan_id 3135 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:fe:07:da:17:42 dst_mac 02:f0:b0:8f:00:ed vlan_id 3348 vlan_ethtype ip src_ip 119.75.134.35 dst_ip 106.55.68.8 ip_proto tcp src_port 50184 dst_port 33114 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10087 flower src_mac 02:d7:93:5f:b1:1a dst_mac 02:cc:51:70:37:6e src_ip 97.193.139.21 dst_ip 126.153.36.209 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10088 flower src_mac 02:e3:04:1a:0a:68 dst_mac 02:fe:40:f7:a4:61 src_ip 12.60.251.18 dst_ip 53.69.138.79 ip_proto tcp src_port 27154 dst_port 30559 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:27:aa:2d:cf:18 dst_mac 02:77:a4:ee:5e:10 vlan_id 3216 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10090 flower src_mac 02:1c:e9:01:3b:60 dst_mac 02:3a:9c:87:f3:9f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10091 flower src_mac 02:26:35:c0:27:72 dst_mac 02:c3:a4:80:9d:96 vlan_id 2694 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10092 flower src_mac 02:aa:29:87:61:f9 dst_mac 02:3b:90:3a:2a:8c src_ip 27.142.173.182 dst_ip 123.153.91.100 ip_proto udp src_port 54760 dst_port 44987 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:85:ad:4f:07:eb dst_mac 02:18:81:61:c2:ff vlan_id 1338 vlan_ethtype ipv4 src_ip 86.138.50.182 dst_ip 25.35.196.84 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10094 flower src_mac 02:3d:0e:f1:f1:e4 dst_mac 02:a8:3d:65:01:c2 vlan_id 543 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10095 flower src_mac 02:0a:57:a3:4f:de dst_mac 02:e7:ac:bf:c2:ee src_ip 59.135.171.250 dst_ip 80.178.122.114 ip_proto icmp code 48 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10096 flower src_mac 02:8a:f8:a1:72:56 dst_mac 02:79:16:4d:96:a4 vlan_id 1477 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:60:b5:99:c5:f4 dst_mac 02:f1:d9:60:90:d6 vlan_id 568 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:8d:5f:f6:fb:f0 dst_mac 02:7e:01:06:8e:8b src_ip 24.45.131.157 dst_ip 68.49.4.249 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10099 flower src_mac 02:82:03:ee:62:cd dst_mac 02:19:17:9c:7a:70 vlan_id 2583 vlan_ethtype ipv4 src_ip 124.58.150.180 dst_ip 46.13.31.243 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:d1:22:29:b9:d9 dst_mac 02:d2:41:b7:66:15 vlan_id 2075 vlan_ethtype ipv4 src_ip 121.242.12.153 dst_ip 21.161.96.161 action trap && tc filter add dev swp33 ingress protocol ip pref 10101 flower src_mac 02:b3:f2:19:ed:99 dst_mac 02:93:89:07:58:76 src_ip 83.177.115.245 dst_ip 118.219.121.163 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10102 flower src_mac 02:cd:2a:70:88:41 dst_mac 02:52:ae:1f:9e:5b vlan_id 2821 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10103 flower src_mac 02:88:1d:0c:42:3d dst_mac 02:8e:65:48:f5:6d src_ip 59.187.193.111 dst_ip 103.72.87.63 ip_proto icmp code 107 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:45:5a:75:aa:dd dst_mac 02:c2:e0:6c:9a:37 vlan_id 257 vlan_ethtype ip src_ip 107.203.114.222 dst_ip 100.32.75.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10105 flower src_mac 02:10:ed:d9:48:68 dst_mac 02:84:d4:fe:73:2b vlan_id 3227 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10106 flower src_mac 02:65:e3:f5:99:22 dst_mac 02:f0:f1:77:d1:d5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10107 flower src_mac 02:f2:74:6d:04:9a dst_mac 02:d9:3b:93:39:02 vlan_id 3880 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:5f:d7:a1:d9:17 dst_mac 02:c5:57:17:56:c8 vlan_id 940 vlan_ethtype ip src_ip 85.12.191.152 dst_ip 70.233.86.186 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10109 flower src_mac 02:6d:25:ac:6c:f0 dst_mac 02:29:4b:1e:ca:ba action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10110 flower src_mac 02:f7:20:58:ce:ab dst_mac 02:70:21:9c:8f:ef action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10111 flower src_mac 02:22:0d:59:39:50 dst_mac 02:ef:f9:0e:25:2d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10112 flower src_mac 02:ef:11:9b:ef:f2 dst_mac 02:c4:91:40:94:5d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10113 flower src_mac 02:a1:52:eb:f0:97 dst_mac 02:ba:be:bd:d1:d6 src_ip 102.29.7.118 dst_ip 102.48.76.64 ip_proto tcp src_port 58639 dst_port 46431 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10114 flower src_mac 02:43:67:a5:11:4b dst_mac 02:dd:3d:7b:cd:f0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10115 flower src_mac 02:89:9b:ea:7b:70 dst_mac 02:46:ae:68:48:d5 vlan_id 1878 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10116 flower src_mac 02:f9:f1:92:cb:10 dst_mac 02:07:33:da:f4:76 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10117 flower src_mac 02:a4:a4:2a:16:9b dst_mac 02:d9:10:81:dd:4c vlan_id 2394 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10118 flower src_mac 02:bb:9b:e0:8e:41 dst_mac 02:ac:06:ac:7a:d8 vlan_id 1552 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10119 flower src_mac 02:7a:81:36:fe:ff dst_mac 02:29:db:02:05:60 vlan_id 1733 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:91:03:99:0c:e7 dst_mac 02:68:1a:75:92:0d vlan_id 150 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10121 flower src_mac 02:2c:5a:f3:e8:1a dst_mac 02:aa:ad:c0:45:36 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10122 flower src_mac 02:5b:c6:e1:72:35 dst_mac 02:14:96:84:e9:d5 src_ip 59.134.80.17 dst_ip 12.13.227.100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10123 flower src_mac 02:8c:3f:05:34:60 dst_mac 02:03:9a:e3:c1:78 vlan_id 3537 vlan_ethtype ipv4 src_ip 92.121.13.19 dst_ip 82.15.14.125 ip_proto tcp src_port 31904 dst_port 63312 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10124 flower src_mac 02:cf:6f:f5:38:71 dst_mac 02:3b:cc:d4:85:f2 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10125 flower src_mac 02:99:a6:3b:fb:1f dst_mac 02:55:62:62:d3:64 src_ip 46.166.238.121 dst_ip 107.75.228.243 ip_proto udp src_port 57206 dst_port 61028 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10126 flower src_mac 02:fa:26:ea:df:88 dst_mac 02:f0:cc:22:37:40 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10127 flower src_mac 02:a7:44:94:3e:56 dst_mac 02:38:99:e6:47:54 src_ip 101.1.222.187 dst_ip 38.9.76.165 ip_proto icmp code 9 type 11 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10128 flower src_mac 02:4e:b5:35:05:38 dst_mac 02:84:a2:03:72:3a src_ip 46.99.181.210 dst_ip 94.161.221.187 ip_proto udp src_port 17323 dst_port 23902 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:b4:8b:89:f8:96 dst_mac 02:bd:f7:f0:57:7c vlan_id 2351 vlan_ethtype ipv4 src_ip 85.164.2.159 dst_ip 112.232.154.56 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10130 flower src_mac 02:d7:75:5f:d0:9c dst_mac 02:08:ec:cb:81:cd src_ip 90.179.215.77 dst_ip 37.204.224.128 ip_proto icmp code 115 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10131 flower src_mac 02:b5:7c:e8:63:02 dst_mac 02:e8:10:40:3e:0b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10132 flower src_mac 02:1c:1d:6a:44:dd dst_mac 02:c3:92:f7:a7:c7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10133 flower src_mac 02:b5:d7:21:c6:ff dst_mac 02:b9:1c:f1:44:e4 vlan_id 2370 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10134 flower src_mac 02:73:5f:66:e5:4e dst_mac 02:6a:34:d7:4c:52 vlan_id 1381 vlan_ethtype 0x0800 src_ip 31.169.33.41 dst_ip 105.224.130.75 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10135 flower src_mac 02:dc:5e:3e:cb:e5 dst_mac 02:c1:11:68:d4:ed vlan_id 2371 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10136 flower src_mac 02:63:22:c6:58:80 dst_mac 02:a7:d3:46:92:86 src_ip 38.85.129.66 dst_ip 18.143.71.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10137 flower src_mac 02:de:da:05:9d:95 dst_mac 02:0a:9f:50:79:ad vlan_id 790 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10138 flower src_mac 02:21:7b:fd:9f:a7 dst_mac 02:cc:2e:bb:18:95 vlan_id 3455 vlan_ethtype ip src_ip 78.161.177.117 dst_ip 30.170.21.162 ip_proto tcp src_port 8466 dst_port 63393 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:3e:3a:07:79:bd dst_mac 02:f1:a4:02:84:9e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:11:e4:e6:a0:38 dst_mac 02:3a:26:05:07:5f vlan_id 2443 vlan_ethtype 0x0800 src_ip 42.10.60.11 dst_ip 109.99.127.106 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10141 flower src_mac 02:c7:8b:48:d1:34 dst_mac 02:1f:ea:94:f3:f7 vlan_id 1203 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10142 flower src_mac 02:0f:fc:68:b3:3b dst_mac 02:ba:a0:15:47:05 src_ip 31.255.12.112 dst_ip 98.164.200.17 ip_proto udp src_port 61280 dst_port 8783 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10143 flower src_mac 02:d0:c1:2b:08:4e dst_mac 02:c7:9e:ee:b4:ad action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10144 flower src_mac 02:12:5d:43:b1:3b dst_mac 02:79:e8:9a:77:11 src_ip 104.190.125.103 dst_ip 83.238.21.5 ip_proto udp src_port 65042 dst_port 11346 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10145 flower src_mac 02:b9:a4:51:24:d3 dst_mac 02:44:05:4e:71:4d vlan_id 1595 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10146 flower src_mac 02:dc:64:6a:be:63 dst_mac 02:0d:f7:c5:8a:20 vlan_id 66 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10147 flower src_mac 02:29:3e:34:6c:65 dst_mac 02:cd:41:a8:89:2d vlan_id 3225 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:d7:98:73:d6:37 dst_mac 02:b4:15:6f:ba:e8 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10149 flower src_mac 02:3a:0e:b4:59:16 dst_mac 02:8c:a9:4a:24:48 src_ip 34.42.15.227 dst_ip 101.248.252.234 ip_proto icmp code 150 type 15 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10150 flower src_mac 02:f6:63:5b:e8:55 dst_mac 02:09:c1:30:75:7f src_ip 82.78.247.88 dst_ip 106.42.190.218 ip_proto tcp src_port 45116 dst_port 33482 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10151 flower src_mac 02:c8:df:ae:fc:5b dst_mac 02:be:22:6a:be:7b vlan_id 2424 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10152 flower src_mac 02:2a:0f:b7:17:51 dst_mac 02:c8:24:bc:d8:33 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10153 flower src_mac 02:df:db:ea:2c:38 dst_mac 02:95:11:21:18:84 vlan_id 3277 vlan_ethtype 0x0800 src_ip 126.253.171.87 dst_ip 49.202.44.57 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10154 flower src_mac 02:78:16:70:c6:16 dst_mac 02:1e:c1:a9:7e:aa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:3a:c7:80:68:d6 dst_mac 02:6e:6c:9d:75:86 vlan_id 324 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10156 flower src_mac 02:e3:bb:0c:58:a5 dst_mac 02:26:3b:2c:54:a7 vlan_id 3619 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10157 flower src_mac 02:1d:fb:d0:d8:e8 dst_mac 02:5a:d7:dd:36:c4 src_ip 31.164.204.177 dst_ip 107.67.56.166 ip_proto tcp src_port 23698 dst_port 36248 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10158 flower src_mac 02:ff:1f:f6:2b:a9 dst_mac 02:53:74:a2:2b:2b src_ip 116.82.228.71 dst_ip 97.142.250.80 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10159 flower src_mac 02:39:74:09:31:aa dst_mac 02:9e:a5:95:92:5b src_ip 89.225.64.203 dst_ip 68.17.197.188 ip_proto tcp src_port 40403 dst_port 10865 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10160 flower src_mac 02:57:6b:e1:6f:54 dst_mac 02:09:ca:01:f5:af src_ip 84.174.182.99 dst_ip 97.185.13.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10161 flower src_mac 02:b6:89:3c:73:b6 dst_mac 02:fd:d2:e5:cd:c3 vlan_id 2388 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:e4:81:26:be:a8 dst_mac 02:02:6a:0e:30:37 vlan_id 3755 vlan_ethtype ipv4 src_ip 47.165.22.49 dst_ip 62.167.50.90 ip_proto tcp src_port 52146 dst_port 30030 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:ee:74:23:ee:06 dst_mac 02:6c:7c:e9:bd:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:04:49:d9:67:b3 dst_mac 02:bb:64:50:99:a2 vlan_id 1835 vlan_ethtype ipv4 src_ip 95.200.230.47 dst_ip 124.175.173.165 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:65:a2:29:9c:d2 dst_mac 02:39:7d:e9:f3:46 vlan_id 2424 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10166 flower src_mac 02:1f:bf:63:ae:af dst_mac 02:0e:83:34:b8:b6 vlan_id 4022 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10167 flower src_mac 02:9b:22:0e:6d:73 dst_mac 02:d2:96:90:5b:a5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10168 flower src_mac 02:f6:15:8c:f2:cc dst_mac 02:ee:c3:0f:16:12 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10169 flower src_mac 02:69:48:c3:21:87 dst_mac 02:67:f8:26:26:85 src_ip 27.200.119.196 dst_ip 84.76.160.228 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10170 flower src_mac 02:d6:a7:c3:99:e2 dst_mac 02:b3:c3:59:50:34 src_ip 79.68.45.37 dst_ip 111.220.103.222 ip_proto udp src_port 34405 dst_port 18177 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10171 flower src_mac 02:14:ef:15:ce:2f dst_mac 02:f3:79:5e:0e:c8 src_ip 121.9.102.29 dst_ip 39.154.231.23 ip_proto icmp code 108 type 4 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:51:84:6e:1a:94 dst_mac 02:49:fe:20:e0:15 vlan_id 18 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10173 flower src_mac 02:8c:2c:08:35:05 dst_mac 02:ba:1c:60:d3:a6 vlan_id 2527 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10174 flower src_mac 02:03:2c:60:05:c7 dst_mac 02:da:97:e9:f9:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10175 flower src_mac 02:64:d7:b5:30:61 dst_mac 02:d5:f5:fd:0d:87 vlan_id 676 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10176 flower src_mac 02:bd:97:25:88:42 dst_mac 02:2a:4c:20:1e:5c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:f8:92:11:0b:d4 dst_mac 02:a0:43:19:ff:00 vlan_id 2709 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10178 flower src_mac 02:82:de:78:1d:7e dst_mac 02:b9:58:01:02:e7 vlan_id 1739 vlan_ethtype 0x0800 src_ip 50.94.133.76 dst_ip 117.87.70.149 ip_proto tcp src_port 63176 dst_port 40511 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10179 flower src_mac 02:c8:ca:d1:fa:9f dst_mac 02:12:a3:4a:72:d0 vlan_id 3820 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10180 flower src_mac 02:e0:ce:c0:26:97 dst_mac 02:ac:9c:f7:9b:df vlan_id 845 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10181 flower src_mac 02:a4:46:4f:ce:db dst_mac 02:3c:e2:04:03:9d src_ip 32.217.221.9 dst_ip 123.168.61.214 ip_proto udp src_port 17298 dst_port 48445 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10182 flower src_mac 02:97:95:96:1c:1b dst_mac 02:6c:35:38:4d:18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10183 flower src_mac 02:3e:e4:05:fa:33 dst_mac 02:ac:49:25:70:95 vlan_id 2277 vlan_ethtype 0x0800 src_ip 114.226.64.99 dst_ip 11.14.189.35 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10184 flower src_mac 02:d7:1f:00:16:9b dst_mac 02:8f:8f:4c:81:29 src_ip 63.72.9.233 dst_ip 94.63.32.183 ip_proto tcp src_port 59574 dst_port 21656 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10185 flower src_mac 02:7f:98:23:d3:35 dst_mac 02:f4:7a:18:68:09 vlan_id 2718 vlan_ethtype ipv4 src_ip 70.21.228.187 dst_ip 21.105.248.90 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10186 flower src_mac 02:28:a7:d8:2b:0a dst_mac 02:52:e8:f7:bc:62 action drop && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:f5:97:c5:a9:6d dst_mac 02:d4:82:b2:0b:e1 src_ip 28.222.8.88 dst_ip 120.30.149.211 ip_proto icmp code 152 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10188 flower src_mac 02:15:53:6f:6e:d1 dst_mac 02:da:df:95:98:af vlan_id 3791 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10189 flower src_mac 02:f6:25:1a:92:d9 dst_mac 02:b7:e0:a6:cd:28 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10190 flower src_mac 02:90:21:00:68:00 dst_mac 02:e2:3e:8e:c3:3d action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10191 flower src_mac 02:82:41:56:c1:49 dst_mac 02:65:76:6f:2a:60 src_ip 27.250.204.86 dst_ip 105.100.247.2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10192 flower src_mac 02:de:c7:d4:c7:93 dst_mac 02:44:18:5f:ea:d0 vlan_id 1688 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:3a:4d:a1:04:07 dst_mac 02:63:6c:c0:13:29 src_ip 38.105.205.230 dst_ip 70.123.90.116 ip_proto tcp src_port 11954 dst_port 45058 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10194 flower src_mac 02:72:3c:bf:27:f7 dst_mac 02:29:95:76:78:c0 src_ip 49.78.48.78 dst_ip 25.191.238.234 action pass && tc filter add dev swp33 ingress protocol ip pref 10195 flower src_mac 02:58:7c:37:67:8f dst_mac 02:ab:40:85:96:e6 src_ip 122.22.139.224 dst_ip 70.127.204.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10196 flower src_mac 02:fa:68:07:97:d6 dst_mac 02:4a:15:86:3e:52 src_ip 89.20.244.56 dst_ip 84.25.191.24 ip_proto icmp code 208 type 8 action trap && tc filter add dev swp33 ingress protocol ip pref 10197 flower src_mac 02:46:04:b0:f2:9b dst_mac 02:b1:2c:4e:bb:65 src_ip 40.31.202.91 dst_ip 94.29.133.83 ip_proto udp src_port 59844 dst_port 38186 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10198 flower src_mac 02:de:4e:1b:f1:d6 dst_mac 02:7c:39:90:c1:cb src_ip 77.82.196.36 dst_ip 55.166.5.228 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10199 flower src_mac 02:e4:be:e3:69:89 dst_mac 02:59:62:1b:1e:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:66:63:ad:7a:3a dst_mac 02:df:e4:60:5f:0a vlan_id 2012 vlan_ethtype ip src_ip 46.101.110.190 dst_ip 73.128.46.196 ip_proto tcp src_port 54297 dst_port 54061 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10201 flower src_mac 02:56:5a:ee:e2:6d dst_mac 02:fe:a0:80:c2:70 vlan_id 3024 vlan_ethtype ipv4 src_ip 59.197.15.63 dst_ip 84.177.222.73 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10202 flower src_mac 02:76:ef:19:35:6e dst_mac 02:a1:48:43:c6:ac src_ip 12.92.174.232 dst_ip 50.0.85.242 ip_proto tcp src_port 58540 dst_port 20867 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:28:ce:03:9b:bf dst_mac 02:43:3c:00:9a:90 vlan_id 1620 vlan_ethtype ipv4 src_ip 12.232.15.166 dst_ip 89.87.57.28 ip_proto udp src_port 32529 dst_port 30784 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10204 flower src_mac 02:98:bc:68:1c:de dst_mac 02:c7:8f:a3:ee:e2 vlan_id 3581 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10205 flower src_mac 02:5f:1e:75:06:df dst_mac 02:f9:c8:61:90:0d vlan_id 3215 vlan_ethtype ip src_ip 56.144.120.188 dst_ip 51.130.54.216 ip_proto udp src_port 6936 dst_port 61465 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10206 flower src_mac 02:51:b1:d4:3c:29 dst_mac 02:4f:b2:2f:2d:3d vlan_id 2882 vlan_ethtype 0x0800 src_ip 26.79.145.117 dst_ip 49.32.184.141 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10207 flower src_mac 02:d3:be:7b:f9:ef dst_mac 02:bf:4c:a6:48:e7 vlan_id 1357 vlan_ethtype 0x0800 src_ip 100.20.128.174 dst_ip 111.227.139.53 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10208 flower src_mac 02:9f:2f:ea:aa:74 dst_mac 02:e5:83:ec:73:88 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10209 flower src_mac 02:52:a4:f0:d5:8d dst_mac 02:07:0c:7f:bc:ed vlan_id 1806 vlan_ethtype ipv4 src_ip 23.90.246.170 dst_ip 89.160.160.183 ip_proto udp src_port 28192 dst_port 35555 action pass && tc filter add dev swp33 ingress protocol ip pref 10210 flower src_mac 02:88:7e:ea:48:af dst_mac 02:64:3f:36:80:d4 src_ip 57.101.49.77 dst_ip 77.224.212.28 ip_proto tcp src_port 1940 dst_port 18292 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10211 flower src_mac 02:3f:02:ba:40:df dst_mac 02:77:9c:9f:d7:64 src_ip 56.190.84.183 dst_ip 86.5.232.185 ip_proto icmp code 168 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10212 flower src_mac 02:fa:f2:9e:e6:01 dst_mac 02:a5:57:6b:02:20 vlan_id 802 vlan_ethtype 0x0800 src_ip 109.89.79.23 dst_ip 19.131.195.68 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10213 flower src_mac 02:b7:6d:2f:61:5e dst_mac 02:7e:4b:89:0b:ac action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10214 flower src_mac 02:2d:a6:71:c0:30 dst_mac 02:ea:a8:74:f7:89 vlan_id 2124 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10215 flower src_mac 02:f6:d8:ab:75:8e dst_mac 02:70:6c:ca:fb:0e vlan_id 2470 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10216 flower src_mac 02:11:dd:b7:27:91 dst_mac 02:27:9f:2c:6d:f4 vlan_id 1931 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10217 flower src_mac 02:29:80:c9:cd:18 dst_mac 02:17:08:be:cb:32 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10218 flower src_mac 02:cc:15:0c:8b:f3 dst_mac 02:9b:94:a1:a8:4c src_ip 57.95.217.82 dst_ip 110.29.222.1 ip_proto udp src_port 55331 dst_port 11814 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10219 flower src_mac 02:0e:73:5d:1d:13 dst_mac 02:e2:bf:85:dc:b7 vlan_id 3583 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:29:b1:d6:76:5a dst_mac 02:6e:05:b1:9c:2a vlan_id 970 vlan_ethtype 0x0800 src_ip 104.80.63.156 dst_ip 119.155.122.208 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10221 flower src_mac 02:7a:3b:68:ca:f8 dst_mac 02:9d:98:e0:f3:59 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10222 flower src_mac 02:09:36:f6:07:47 dst_mac 02:2f:60:9b:90:36 src_ip 89.162.23.213 dst_ip 42.240.125.110 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10223 flower src_mac 02:b9:9e:31:c8:f9 dst_mac 02:41:34:2b:49:65 src_ip 62.247.109.215 dst_ip 103.78.249.103 ip_proto udp src_port 19719 dst_port 42172 action drop && tc filter add dev swp33 ingress protocol ip pref 10224 flower src_mac 02:ee:e3:42:5b:80 dst_mac 02:25:a9:21:a0:3f src_ip 108.120.224.120 dst_ip 111.229.22.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:95:24:fc:95:dd dst_mac 02:a7:ab:a4:85:d8 vlan_id 3562 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10226 flower src_mac 02:ee:ff:6e:0a:26 dst_mac 02:85:ce:1a:42:c9 action trap && tc filter add dev swp33 ingress protocol ip pref 10227 flower src_mac 02:d2:5a:fd:53:a1 dst_mac 02:d3:0d:1b:11:46 src_ip 90.6.94.118 dst_ip 37.139.202.29 action trap && tc filter add dev swp33 ingress protocol ip pref 10228 flower src_mac 02:5d:22:5a:13:d7 dst_mac 02:09:22:fd:23:8c src_ip 91.242.70.213 dst_ip 87.251.126.174 ip_proto tcp src_port 29114 dst_port 2743 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10229 flower src_mac 02:de:18:26:f4:ba dst_mac 02:23:2f:7b:f7:8a vlan_id 1487 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10230 flower src_mac 02:ef:8b:49:2c:3b dst_mac 02:a3:b7:84:90:92 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10231 flower src_mac 02:56:c8:dc:57:ff dst_mac 02:57:65:48:bd:99 src_ip 74.83.121.213 dst_ip 125.219.85.131 ip_proto icmp code 62 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10232 flower src_mac 02:21:05:77:bc:99 dst_mac 02:91:a1:6f:d7:39 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10233 flower src_mac 02:51:d2:72:66:4d dst_mac 02:e9:eb:4e:9b:63 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10234 flower src_mac 02:c7:7e:e2:b8:00 dst_mac 02:a7:8a:da:4d:94 vlan_id 1090 vlan_ethtype ip src_ip 23.181.45.10 dst_ip 68.210.52.125 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10235 flower src_mac 02:5b:11:d7:b4:5f dst_mac 02:4d:fe:04:2e:aa src_ip 71.152.144.89 dst_ip 38.171.88.183 ip_proto tcp src_port 43627 dst_port 61836 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10236 flower src_mac 02:95:f9:31:0b:bd dst_mac 02:2f:f8:2b:b9:aa vlan_id 3669 vlan_ethtype ipv4 src_ip 121.160.26.195 dst_ip 59.43.83.178 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10237 flower src_mac 02:de:4e:47:31:f2 dst_mac 02:fd:95:34:f3:0b action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10238 flower src_mac 02:4b:e3:38:05:4e dst_mac 02:62:17:ca:c5:53 src_ip 86.95.158.238 dst_ip 73.90.3.243 ip_proto udp src_port 11374 dst_port 1832 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10239 flower src_mac 02:31:28:a6:7a:cd dst_mac 02:c2:6e:68:ab:7d src_ip 123.57.83.29 dst_ip 93.150.60.81 ip_proto icmp code 186 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:94:24:ee:e4:c6 dst_mac 02:dc:96:99:fc:67 src_ip 119.42.102.220 dst_ip 42.114.190.39 ip_proto icmp code 240 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10241 flower src_mac 02:2e:f1:64:56:78 dst_mac 02:2d:a0:f6:8b:4c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10242 flower src_mac 02:29:d5:44:3e:78 dst_mac 02:b6:25:3d:a8:7b vlan_id 63 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10243 flower src_mac 02:19:2b:54:55:ac dst_mac 02:b5:23:a6:5c:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:45:9e:70:ab:57 dst_mac 02:bb:34:4d:b8:e4 vlan_id 1291 vlan_ethtype ipv4 src_ip 50.97.197.11 dst_ip 52.197.120.42 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10245 flower src_mac 02:0f:ca:df:23:1d dst_mac 02:39:8a:65:00:c7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10246 flower src_mac 02:95:5b:5d:71:b0 dst_mac 02:3a:5a:d4:b2:54 vlan_id 2358 vlan_ethtype ip src_ip 11.179.121.247 dst_ip 16.125.28.163 ip_proto udp src_port 21248 dst_port 33436 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:48:32:05:4d:4d dst_mac 02:2e:1e:c0:7a:5b vlan_id 1226 vlan_ethtype ipv4 src_ip 52.235.66.229 dst_ip 23.0.239.225 ip_proto udp src_port 5116 dst_port 57541 action pass && tc filter add dev swp33 ingress protocol ip pref 10248 flower src_mac 02:73:7c:37:04:04 dst_mac 02:7f:62:8b:e2:9e src_ip 101.61.199.175 dst_ip 81.161.119.129 ip_proto icmp code 102 type 15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10249 flower src_mac 02:23:f1:f4:8a:f2 dst_mac 02:79:80:fd:66:3b vlan_id 1635 vlan_ethtype ip src_ip 50.55.193.75 dst_ip 102.244.27.175 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10250 flower src_mac 02:a7:e6:48:62:15 dst_mac 02:aa:8f:64:59:d8 vlan_id 887 vlan_ethtype ipv4 src_ip 50.123.214.117 dst_ip 46.44.147.75 ip_proto udp src_port 56453 dst_port 15058 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:88:e0:56:14:9e dst_mac 02:af:e6:06:7b:a6 vlan_id 3815 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10252 flower src_mac 02:37:27:c7:60:3c dst_mac 02:7d:dd:68:66:89 vlan_id 3710 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10253 flower src_mac 02:a3:cd:93:2c:02 dst_mac 02:23:79:d9:5e:70 vlan_id 1641 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10254 flower src_mac 02:3e:e5:37:8c:25 dst_mac 02:98:b9:d0:6d:8a vlan_id 588 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10255 flower src_mac 02:65:67:ce:08:21 dst_mac 02:d3:36:ba:d7:c5 src_ip 64.106.123.209 dst_ip 27.154.184.164 ip_proto udp src_port 8894 dst_port 36030 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10256 flower src_mac 02:61:50:d8:25:5b dst_mac 02:9d:a5:18:5f:76 vlan_id 2405 vlan_ethtype ip src_ip 72.216.250.79 dst_ip 99.72.160.2 ip_proto tcp src_port 9917 dst_port 51999 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10257 flower src_mac 02:6b:45:d4:63:ea dst_mac 02:f8:d4:0f:bb:2d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10258 flower src_mac 02:e2:6a:e6:3e:ed dst_mac 02:aa:f1:84:c9:df vlan_id 2817 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10259 flower src_mac 02:6f:b0:55:71:37 dst_mac 02:cc:d4:c8:9d:6c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10260 flower src_mac 02:ef:b5:8e:ae:95 dst_mac 02:f4:fa:c5:98:bd action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10261 flower src_mac 02:30:79:fa:d4:39 dst_mac 02:5c:a9:95:52:bb vlan_id 1362 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10262 flower src_mac 02:dc:62:3e:c9:50 dst_mac 02:d1:ee:2b:c0:75 vlan_id 1898 vlan_ethtype ipv4 src_ip 123.88.64.34 dst_ip 35.85.166.56 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10263 flower src_mac 02:14:73:09:f8:2c dst_mac 02:9a:6a:5d:da:b0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10264 flower src_mac 02:23:fb:4b:cd:c6 dst_mac 02:7b:e4:10:ce:9b vlan_id 231 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10265 flower src_mac 02:f4:52:9d:d5:3c dst_mac 02:76:26:70:c7:57 src_ip 43.121.34.113 dst_ip 53.70.29.237 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10266 flower src_mac 02:fc:b9:08:1d:20 dst_mac 02:86:b5:e9:a7:8e vlan_id 2556 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10267 flower src_mac 02:ee:8b:f6:4a:00 dst_mac 02:db:a9:09:d4:4f src_ip 39.233.126.52 dst_ip 11.213.15.6 ip_proto udp src_port 59035 dst_port 38245 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10268 flower src_mac 02:a7:57:b4:34:43 dst_mac 02:2d:b6:e6:d0:ca vlan_id 13 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10269 flower src_mac 02:03:dc:07:aa:80 dst_mac 02:24:28:7e:c5:1c src_ip 40.178.237.112 dst_ip 37.140.21.83 ip_proto udp src_port 13227 dst_port 53238 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10270 flower src_mac 02:f5:f0:53:47:2b dst_mac 02:67:06:05:56:f0 src_ip 74.99.42.231 dst_ip 56.1.42.118 ip_proto tcp src_port 11125 dst_port 51732 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10271 flower src_mac 02:74:3f:2c:17:50 dst_mac 02:c7:e4:4c:3f:19 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10272 flower src_mac 02:52:3f:47:e3:c1 dst_mac 02:f1:f0:5e:98:f3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:33:e3:49:d7:32 dst_mac 02:bf:e1:d4:61:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10274 flower src_mac 02:12:19:f2:e2:a9 dst_mac 02:9b:e4:a4:7b:b2 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10275 flower src_mac 02:70:bc:f1:d3:d4 dst_mac 02:9e:84:70:bf:3f action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10276 flower src_mac 02:5c:67:87:fc:be dst_mac 02:a6:ae:db:48:8d action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10277 flower src_mac 02:26:53:e5:16:34 dst_mac 02:75:83:13:e0:8b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10278 flower src_mac 02:30:81:6e:95:6e dst_mac 02:35:ab:69:31:40 action trap && tc filter add dev swp33 ingress protocol ip pref 10279 flower src_mac 02:db:05:01:24:dd dst_mac 02:85:56:92:df:54 src_ip 29.248.95.184 dst_ip 26.135.134.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10280 flower src_mac 02:7d:33:f5:eb:d6 dst_mac 02:28:05:e8:a7:1c vlan_id 2042 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10281 flower src_mac 02:95:59:30:4c:de dst_mac 02:b6:01:84:f6:53 src_ip 97.75.235.104 dst_ip 15.148.201.136 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10282 flower src_mac 02:4f:57:c9:f3:ec dst_mac 02:c5:18:bb:6a:f1 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10283 flower src_mac 02:7f:e5:45:8b:42 dst_mac 02:cd:6e:5b:e1:09 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10284 flower src_mac 02:68:c6:2d:c9:31 dst_mac 02:81:4e:b3:89:33 vlan_id 2495 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10285 flower src_mac 02:c2:68:09:35:31 dst_mac 02:20:a4:8c:6b:d3 vlan_id 3163 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:47:e6:89:38:ba dst_mac 02:95:ae:3c:a4:58 vlan_id 3523 vlan_ethtype ip src_ip 86.95.190.4 dst_ip 101.171.177.170 ip_proto udp src_port 11339 dst_port 28247 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10287 flower src_mac 02:c7:27:d0:85:ac dst_mac 02:c1:0f:e7:4d:ad action trap && tc filter add dev swp33 ingress protocol ip pref 10288 flower src_mac 02:f4:2b:27:68:26 dst_mac 02:49:29:a8:ca:4a src_ip 44.184.23.35 dst_ip 63.154.228.159 ip_proto tcp src_port 51079 dst_port 19255 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:3b:c4:51:37:9d dst_mac 02:d7:89:22:20:dc vlan_id 1804 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10290 flower src_mac 02:e3:66:8e:5a:c9 dst_mac 02:f5:a4:63:98:1a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10291 flower src_mac 02:35:84:c1:2e:dd dst_mac 02:29:0f:55:4e:ca vlan_id 1444 vlan_ethtype ip src_ip 87.112.209.110 dst_ip 18.223.51.90 ip_proto tcp src_port 56810 dst_port 33521 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:1a:ae:9f:e6:d9 dst_mac 02:26:dc:f4:cd:6e vlan_id 523 vlan_ethtype 0x0800 src_ip 79.247.241.61 dst_ip 101.2.232.60 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10293 flower src_mac 02:e3:a4:40:c2:45 dst_mac 02:de:0d:73:5f:87 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10294 flower src_mac 02:4f:e3:96:16:47 dst_mac 02:b5:70:12:9c:d1 vlan_id 2692 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10295 flower src_mac 02:5d:85:cb:6d:16 dst_mac 02:a1:a7:a1:be:64 src_ip 91.121.139.135 dst_ip 72.244.142.204 ip_proto icmp code 50 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10296 flower src_mac 02:b0:16:2d:93:79 dst_mac 02:73:17:0f:b9:22 src_ip 19.114.135.250 dst_ip 111.2.218.127 ip_proto tcp src_port 26062 dst_port 13425 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10297 flower src_mac 02:af:1d:74:94:c5 dst_mac 02:43:ec:31:d8:5e vlan_id 755 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10298 flower src_mac 02:c0:d4:6a:fe:f4 dst_mac 02:4e:07:e7:16:2e vlan_id 896 vlan_ethtype ip src_ip 110.117.52.246 dst_ip 34.108.214.4 ip_proto tcp src_port 45013 dst_port 10116 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10299 flower src_mac 02:b5:9a:df:1f:73 dst_mac 02:00:27:05:bc:8e vlan_id 2301 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10300 flower src_mac 02:c4:e8:fe:7b:e2 dst_mac 02:55:f5:13:64:86 vlan_id 2566 vlan_ethtype ipv4 src_ip 72.115.184.244 dst_ip 41.245.79.87 ip_proto tcp src_port 10155 dst_port 60697 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10301 flower src_mac 02:c5:b3:23:0f:67 dst_mac 02:cd:6f:21:e0:cf src_ip 87.49.171.211 dst_ip 11.113.84.70 ip_proto icmp code 123 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10302 flower src_mac 02:5b:65:25:4e:e6 dst_mac 02:c5:de:73:2d:8d src_ip 67.148.166.247 dst_ip 77.141.46.145 ip_proto icmp code 233 type 13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10303 flower src_mac 02:0a:1b:1f:9b:f7 dst_mac 02:40:3c:46:f8:cf vlan_id 2615 vlan_ethtype ipv4 src_ip 56.137.100.174 dst_ip 79.124.132.173 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:a8:a7:91:05:30 dst_mac 02:ff:fa:22:08:85 vlan_id 788 vlan_ethtype ipv4 src_ip 71.30.161.30 dst_ip 13.117.10.206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10305 flower src_mac 02:9b:00:45:56:f8 dst_mac 02:d3:e7:78:88:d4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10306 flower src_mac 02:07:dc:99:a8:8b dst_mac 02:08:fb:2e:f3:f1 vlan_id 3297 vlan_ethtype ip src_ip 16.49.124.218 dst_ip 38.145.187.78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10307 flower src_mac 02:4f:5a:f2:49:1d dst_mac 02:30:7f:07:c6:6f vlan_id 188 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10308 flower src_mac 02:ae:a5:b6:62:aa dst_mac 02:04:fc:72:b6:d9 src_ip 35.8.43.131 dst_ip 21.58.132.196 ip_proto tcp src_port 30905 dst_port 30900 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10309 flower src_mac 02:7e:61:b9:54:cf dst_mac 02:40:15:34:5b:6c vlan_id 1175 vlan_ethtype 0x0800 src_ip 57.105.48.147 dst_ip 107.155.226.213 ip_proto udp src_port 36400 dst_port 10390 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10310 flower src_mac 02:85:e6:65:53:14 dst_mac 02:31:b1:d1:09:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10311 flower src_mac 02:96:f0:fa:e2:ad dst_mac 02:ff:e7:32:34:9d vlan_id 1659 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10312 flower src_mac 02:61:fe:37:24:07 dst_mac 02:66:21:6b:fe:4f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10313 flower src_mac 02:37:0d:0a:3a:55 dst_mac 02:96:8e:8c:83:c2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:36:21:1f:eb:72 dst_mac 02:fa:22:ba:bf:73 vlan_id 1399 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10315 flower src_mac 02:dc:fd:42:c0:ce dst_mac 02:18:27:cf:af:d9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10316 flower src_mac 02:f0:6e:6e:68:16 dst_mac 02:e9:f6:e8:ba:8c vlan_id 3639 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10317 flower src_mac 02:0f:a0:4d:cb:1e dst_mac 02:bd:1c:1c:12:79 vlan_id 1715 vlan_ethtype ipv4 src_ip 63.14.44.175 dst_ip 114.133.238.216 ip_proto udp src_port 42174 dst_port 27776 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10318 flower src_mac 02:e5:f6:66:3e:32 dst_mac 02:b8:49:3e:22:b7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:83:00:ae:30:61 dst_mac 02:c6:4f:fa:23:54 vlan_id 1119 vlan_ethtype 0x0800 src_ip 86.48.80.237 dst_ip 18.102.32.27 ip_proto tcp src_port 61599 dst_port 51595 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:11:12:02:62:47 dst_mac 02:f4:bb:67:c9:85 vlan_id 3378 vlan_ethtype ip src_ip 52.73.81.100 dst_ip 116.39.205.134 ip_proto udp src_port 57526 dst_port 29667 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10321 flower src_mac 02:1c:84:c4:4b:1c dst_mac 02:1b:3a:73:89:b4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10322 flower src_mac 02:76:23:e9:f0:45 dst_mac 02:5a:57:68:c2:89 vlan_id 1008 vlan_ethtype ip src_ip 31.239.228.116 dst_ip 39.28.239.224 ip_proto tcp src_port 42770 dst_port 41209 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10323 flower src_mac 02:0d:a3:35:5a:77 dst_mac 02:71:d9:75:47:65 vlan_id 3841 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10324 flower src_mac 02:0b:e0:8d:b1:d0 dst_mac 02:47:42:40:55:af src_ip 62.209.71.93 dst_ip 82.96.166.200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10325 flower src_mac 02:49:8c:ef:05:ff dst_mac 02:29:0a:f7:4f:1d src_ip 94.233.63.126 dst_ip 22.141.229.207 ip_proto icmp code 182 type 12 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10326 flower src_mac 02:71:84:7c:1e:4f dst_mac 02:56:ba:41:ba:ce src_ip 72.28.35.148 dst_ip 78.223.27.225 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10327 flower src_mac 02:0a:14:0a:62:34 dst_mac 02:f7:3e:6b:99:cc vlan_id 942 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10328 flower src_mac 02:9c:ad:07:d9:fb dst_mac 02:4e:a1:37:f8:93 vlan_id 2098 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:46:ad:d5:aa:85 dst_mac 02:b5:92:8d:71:1c vlan_id 142 vlan_ethtype ipv4 src_ip 61.2.238.153 dst_ip 107.122.147.241 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10330 flower src_mac 02:28:4d:57:df:2c dst_mac 02:0f:d3:8e:7e:36 vlan_id 1493 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10331 flower src_mac 02:75:06:aa:e5:aa dst_mac 02:bf:ea:9f:31:bd vlan_id 1158 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10332 flower src_mac 02:9c:98:7c:81:74 dst_mac 02:9d:f6:3a:27:a5 vlan_id 3455 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10333 flower src_mac 02:9d:c5:c9:74:54 dst_mac 02:eb:e2:52:27:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10334 flower src_mac 02:1a:7a:a6:3b:88 dst_mac 02:59:ac:04:4d:74 vlan_id 3224 vlan_ethtype 0x0800 src_ip 26.239.158.50 dst_ip 110.57.197.53 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10335 flower src_mac 02:7d:f7:ac:56:a6 dst_mac 02:29:a7:d6:9c:e4 src_ip 108.217.253.145 dst_ip 37.56.107.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10336 flower src_mac 02:78:08:49:7e:f2 dst_mac 02:8d:fe:37:6c:85 vlan_id 1270 vlan_ethtype 0x0800 src_ip 17.156.228.181 dst_ip 75.253.252.250 ip_proto udp src_port 37763 dst_port 54217 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10337 flower src_mac 02:3f:4a:b9:c3:4c dst_mac 02:09:fa:38:e6:96 vlan_id 812 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10338 flower src_mac 02:2d:ae:24:c1:d7 dst_mac 02:d0:5b:40:a1:0e src_ip 25.66.228.192 dst_ip 107.88.236.230 ip_proto udp src_port 4765 dst_port 5652 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10339 flower src_mac 02:86:f0:f5:68:36 dst_mac 02:f6:6d:a7:dc:5e vlan_id 48 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10340 flower src_mac 02:e6:49:3c:dd:4d dst_mac 02:59:0c:ff:e7:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10341 flower src_mac 02:2c:92:76:7f:d6 dst_mac 02:78:3f:57:73:08 vlan_id 327 vlan_ethtype 0x0800 src_ip 112.164.51.33 dst_ip 115.122.78.173 ip_proto udp src_port 33671 dst_port 50088 action trap && tc filter add dev swp33 ingress protocol ip pref 10342 flower src_mac 02:b9:45:0f:31:45 dst_mac 02:df:50:8d:6c:85 src_ip 118.82.33.212 dst_ip 51.61.107.220 ip_proto udp src_port 48690 dst_port 2371 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10343 flower src_mac 02:fa:af:ed:de:af dst_mac 02:89:fc:fc:ca:7f vlan_id 2682 vlan_ethtype 0x0800 src_ip 92.246.166.212 dst_ip 126.26.121.216 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10344 flower src_mac 02:98:9a:c9:6f:dc dst_mac 02:6b:17:53:a3:c8 vlan_id 3384 vlan_ethtype ipv4 src_ip 50.99.106.83 dst_ip 29.147.169.152 ip_proto udp src_port 26716 dst_port 37842 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10345 flower src_mac 02:00:ef:58:36:84 dst_mac 02:3f:f8:fd:02:af vlan_id 2591 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10346 flower src_mac 02:a1:35:eb:0a:d2 dst_mac 02:01:53:60:da:87 src_ip 71.98.71.144 dst_ip 20.100.208.135 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10347 flower src_mac 02:0c:31:b0:b4:71 dst_mac 02:2d:dc:e8:51:88 vlan_id 2863 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10348 flower src_mac 02:b1:86:66:5b:37 dst_mac 02:65:56:23:a6:02 vlan_id 387 vlan_ethtype 0x0800 src_ip 111.26.25.228 dst_ip 34.165.242.105 ip_proto tcp src_port 407 dst_port 1231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10349 flower src_mac 02:d5:4e:15:a5:de dst_mac 02:88:b6:a6:b4:3d vlan_id 1448 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10350 flower src_mac 02:20:9d:24:a0:cb dst_mac 02:2f:32:fe:90:d3 src_ip 69.233.246.133 dst_ip 113.54.55.93 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10351 flower src_mac 02:25:3f:ad:b4:0b dst_mac 02:a1:f7:4f:cb:fc vlan_id 2190 vlan_ethtype 0x0800 src_ip 111.193.76.85 dst_ip 20.228.124.191 ip_proto udp src_port 39372 dst_port 10274 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10352 flower src_mac 02:21:3b:6c:e6:af dst_mac 02:f1:69:2d:98:a2 vlan_id 2332 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10353 flower src_mac 02:f0:e6:8b:a7:07 dst_mac 02:95:59:3d:71:67 src_ip 124.242.66.38 dst_ip 21.31.225.47 ip_proto udp src_port 9737 dst_port 27626 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10354 flower src_mac 02:9b:60:26:79:45 dst_mac 02:a1:17:96:20:45 vlan_id 394 vlan_ethtype 0x0800 src_ip 71.193.132.9 dst_ip 83.85.205.238 ip_proto udp src_port 42114 dst_port 6501 action drop && tc filter add dev swp33 ingress protocol ip pref 10355 flower src_mac 02:ca:da:fa:9e:bb dst_mac 02:e2:21:d9:5e:39 src_ip 54.206.176.119 dst_ip 120.250.89.167 ip_proto tcp src_port 24281 dst_port 30961 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10356 flower src_mac 02:6a:7c:5d:80:e8 dst_mac 02:10:7f:38:e1:15 src_ip 80.140.149.78 dst_ip 94.179.221.241 ip_proto icmp code 200 type 18 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10357 flower src_mac 02:d6:3a:06:ea:1b dst_mac 02:92:26:22:75:20 src_ip 94.92.16.92 dst_ip 112.244.4.96 ip_proto udp src_port 25833 dst_port 43698 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10358 flower src_mac 02:15:44:26:05:4d dst_mac 02:ee:53:ac:24:9b vlan_id 1716 vlan_ethtype ip src_ip 99.181.245.59 dst_ip 82.228.177.119 ip_proto udp src_port 25815 dst_port 27965 action drop && tc filter add dev swp33 ingress protocol ip pref 10359 flower src_mac 02:16:9b:0f:86:4e dst_mac 02:2a:ad:40:e7:3a src_ip 98.194.64.6 dst_ip 64.158.142.169 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10360 flower src_mac 02:6d:80:0f:81:55 dst_mac 02:cb:36:ff:df:07 src_ip 51.247.227.203 dst_ip 123.132.250.139 ip_proto tcp src_port 3811 dst_port 3983 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:75:e2:b6:73:24 dst_mac 02:a0:f9:27:34:f6 vlan_id 214 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10362 flower src_mac 02:91:d1:cf:fa:50 dst_mac 02:5d:75:9a:ab:58 vlan_id 205 vlan_ethtype ipv4 src_ip 27.21.242.67 dst_ip 70.152.174.157 ip_proto tcp src_port 28473 dst_port 30329 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10363 flower src_mac 02:cc:a8:32:7d:e6 dst_mac 02:96:68:93:18:08 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10364 flower src_mac 02:fc:d8:ae:90:3d dst_mac 02:e3:a3:db:77:92 src_ip 104.170.209.99 dst_ip 28.168.54.13 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10365 flower src_mac 02:a2:33:c1:4d:77 dst_mac 02:8d:40:59:22:fc vlan_id 4082 vlan_ethtype 0x0800 src_ip 36.52.144.223 dst_ip 46.189.214.120 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10366 flower src_mac 02:28:79:f8:79:8b dst_mac 02:70:0e:ae:81:6b src_ip 117.97.198.107 dst_ip 35.12.34.135 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10367 flower src_mac 02:b6:f9:81:80:3b dst_mac 02:e4:30:32:b3:1d vlan_id 725 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:04:ed:79:1f:59 dst_mac 02:e5:26:54:2c:64 vlan_id 3343 vlan_ethtype ip src_ip 82.112.151.44 dst_ip 35.116.10.209 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10369 flower src_mac 02:3f:d2:2c:0d:59 dst_mac 02:0b:59:ac:e2:18 vlan_id 2810 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:f3:5d:40:7b:e6 dst_mac 02:1d:aa:d6:54:f5 vlan_id 1700 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10371 flower src_mac 02:61:a7:8e:03:79 dst_mac 02:84:f1:6f:27:ed src_ip 86.54.132.43 dst_ip 122.237.201.248 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10372 flower src_mac 02:7e:09:b1:d2:cf dst_mac 02:99:50:bc:2b:97 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10373 flower src_mac 02:92:d3:68:e6:97 dst_mac 02:07:f5:86:17:85 vlan_id 1751 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10374 flower src_mac 02:fa:9d:2f:cd:84 dst_mac 02:a8:a0:c2:c6:d5 vlan_id 3533 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:40:f2:c2:50:69 dst_mac 02:b3:54:f7:94:f1 vlan_id 1626 vlan_ethtype ipv4 src_ip 46.224.114.247 dst_ip 23.244.249.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10376 flower src_mac 02:14:d5:75:8c:d4 dst_mac 02:7e:92:f1:52:be vlan_id 1917 vlan_ethtype ipv4 src_ip 28.68.251.50 dst_ip 18.216.91.221 ip_proto udp src_port 18449 dst_port 5651 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10377 flower src_mac 02:43:55:14:be:56 dst_mac 02:c6:b2:5a:23:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:9e:5b:75:29:d1 dst_mac 02:30:3d:05:32:bb vlan_id 1221 vlan_ethtype 0x0800 src_ip 67.17.85.235 dst_ip 34.37.11.211 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10379 flower src_mac 02:89:d4:25:ff:55 dst_mac 02:e0:45:0f:0e:9d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:89:c8:00:cd:74 dst_mac 02:88:92:e8:a9:28 vlan_id 462 vlan_ethtype 0x0800 src_ip 21.138.121.182 dst_ip 56.104.171.177 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:53:71:32:97:7b dst_mac 02:41:61:cd:9d:c7 vlan_id 611 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10382 flower src_mac 02:83:ea:e2:70:de dst_mac 02:e9:33:94:31:dd vlan_id 1442 vlan_ethtype ip src_ip 124.131.108.219 dst_ip 108.218.54.1 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10383 flower src_mac 02:93:cc:c0:ba:58 dst_mac 02:68:db:d9:1f:34 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:e0:48:ca:8e:af dst_mac 02:25:ec:a2:c8:c0 vlan_id 196 vlan_ethtype 0x0800 src_ip 85.166.195.110 dst_ip 123.70.208.188 ip_proto tcp src_port 45636 dst_port 401 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10385 flower src_mac 02:b8:e4:2e:b5:6b dst_mac 02:1b:c3:58:77:a6 src_ip 102.73.203.165 dst_ip 112.252.163.102 ip_proto tcp src_port 2702 dst_port 41072 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:9f:6a:ed:d6:11 dst_mac 02:bb:7f:58:81:c8 vlan_id 1132 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10387 flower src_mac 02:00:7f:95:5c:a5 dst_mac 02:9d:b2:2e:05:2c vlan_id 3396 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10388 flower src_mac 02:b3:8d:08:4a:ea dst_mac 02:83:b5:75:36:10 vlan_id 1798 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10389 flower src_mac 02:18:66:b8:59:bc dst_mac 02:d5:e7:1b:2d:03 vlan_id 2700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10390 flower src_mac 02:83:66:4d:fe:51 dst_mac 02:af:75:8e:d2:c2 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10391 flower src_mac 02:f3:2d:b9:b8:30 dst_mac 02:04:c3:d5:97:8a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10392 flower src_mac 02:0a:d1:80:b0:df dst_mac 02:17:91:f0:88:b7 vlan_id 1867 vlan_ethtype ip src_ip 40.108.117.78 dst_ip 83.111.246.65 ip_proto udp src_port 37240 dst_port 41079 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10393 flower src_mac 02:82:7c:53:d7:14 dst_mac 02:7e:43:27:bd:f6 src_ip 115.182.89.120 dst_ip 38.147.159.188 ip_proto icmp code 96 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10394 flower src_mac 02:85:85:af:bf:d0 dst_mac 02:31:1a:82:53:fd vlan_id 59 vlan_ethtype ipv4 src_ip 77.197.216.146 dst_ip 73.95.19.99 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10395 flower src_mac 02:a6:cb:0e:fa:3a dst_mac 02:31:35:3b:c0:d9 vlan_id 106 vlan_ethtype ip src_ip 126.93.112.242 dst_ip 44.168.180.50 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10396 flower src_mac 02:87:fb:10:fd:5f dst_mac 02:08:86:cb:0e:89 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10397 flower src_mac 02:a4:df:2f:51:bc dst_mac 02:eb:4b:c1:34:9a vlan_id 1980 vlan_ethtype ip src_ip 85.175.168.165 dst_ip 69.212.244.89 ip_proto tcp src_port 7638 dst_port 17766 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10398 flower src_mac 02:39:a4:0e:d5:35 dst_mac 02:6a:5c:b3:b1:ec src_ip 99.228.221.164 dst_ip 80.175.203.80 ip_proto udp src_port 10609 dst_port 35649 action trap && tc filter add dev swp33 ingress protocol ip pref 10399 flower src_mac 02:4d:1d:2d:0a:b4 dst_mac 02:11:a9:b7:1a:5a src_ip 27.95.0.123 dst_ip 97.40.9.151 ip_proto udp src_port 49803 dst_port 65523 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10000 flower src_mac 02:ec:f1:df:f3:b7 dst_mac 02:32:10:91:86:cc vlan_id 3355 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10001 flower src_mac 02:99:6f:aa:e1:80 dst_mac 02:8d:72:3f:6d:6c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10002 flower src_mac 02:35:c1:59:b0:ba dst_mac 02:0a:99:bc:93:5d vlan_id 1849 vlan_ethtype ip src_ip 111.170.205.184 dst_ip 91.134.146.130 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10003 flower src_mac 02:39:f8:a4:b1:7a dst_mac 02:84:84:dc:4c:63 vlan_id 2326 vlan_ethtype ipv4 src_ip 12.126.184.78 dst_ip 29.21.49.170 ip_proto tcp src_port 60610 dst_port 46204 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10004 flower src_mac 02:77:8f:88:01:8e dst_mac 02:1e:60:48:51:1f vlan_id 3451 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10005 flower src_mac 02:f0:7e:44:1d:71 dst_mac 02:0b:47:8c:1f:3f vlan_id 627 vlan_ethtype ip src_ip 68.107.165.208 dst_ip 11.171.239.155 ip_proto tcp src_port 19083 dst_port 25743 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10006 flower src_mac 02:bd:eb:bf:06:04 dst_mac 02:af:4a:57:c1:08 vlan_id 461 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10007 flower src_mac 02:c6:ee:15:c4:e5 dst_mac 02:fa:ee:da:93:2f action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10008 flower src_mac 02:8a:fa:9c:62:ac dst_mac 02:a4:b5:27:f0:35 src_ip 124.213.97.155 dst_ip 34.158.134.152 ip_proto tcp src_port 16328 dst_port 34259 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10009 flower src_mac 02:b2:4b:11:39:47 dst_mac 02:1c:10:ef:61:0b vlan_id 3636 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10010 flower src_mac 02:94:f7:d2:6d:ae dst_mac 02:b6:49:56:16:fc src_ip 71.58.161.193 dst_ip 72.237.99.190 ip_proto udp src_port 3534 dst_port 7260 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10011 flower src_mac 02:97:52:98:3d:fd dst_mac 02:bc:3a:9f:eb:22 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10012 flower src_mac 02:68:0d:27:94:e5 dst_mac 02:f2:8f:14:10:53 src_ip 46.62.4.138 dst_ip 104.143.214.235 ip_proto tcp src_port 40309 dst_port 33348 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10013 flower src_mac 02:1b:55:a9:cc:c8 dst_mac 02:06:a6:77:1b:a4 src_ip 82.172.33.206 dst_ip 34.250.94.86 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:3a:d6:cc:3d:4f dst_mac 02:64:14:f0:f8:97 vlan_id 3188 vlan_ethtype 0x0800 src_ip 27.108.125.210 dst_ip 18.90.26.209 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10015 flower src_mac 02:17:42:09:fc:c5 dst_mac 02:ae:d1:0b:5f:3e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10016 flower src_mac 02:e7:fd:1f:24:a1 dst_mac 02:42:00:27:03:ac action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10017 flower src_mac 02:21:6d:3e:16:8f dst_mac 02:9c:d0:19:6d:84 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10018 flower src_mac 02:ae:bd:94:57:f5 dst_mac 02:87:e5:fe:5b:1d src_ip 86.201.132.204 dst_ip 92.113.210.248 ip_proto tcp src_port 15300 dst_port 40831 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10019 flower src_mac 02:66:1b:4e:5e:ce dst_mac 02:53:49:69:c2:63 vlan_id 3900 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10020 flower src_mac 02:2c:ec:d6:d7:43 dst_mac 02:31:b7:5b:55:12 vlan_id 2562 vlan_ethtype 0x0800 src_ip 71.143.213.71 dst_ip 53.41.224.217 ip_proto udp src_port 20869 dst_port 52232 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10021 flower src_mac 02:ac:00:08:97:4b dst_mac 02:a2:1e:da:f7:5e vlan_id 2042 vlan_ethtype 0x0800 src_ip 82.205.40.61 dst_ip 108.172.141.136 ip_proto tcp src_port 17098 dst_port 62772 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10022 flower src_mac 02:db:86:cd:12:82 dst_mac 02:b2:f6:be:99:1b action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10023 flower src_mac 02:27:f7:5c:79:80 dst_mac 02:d6:5d:e4:f4:04 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10024 flower src_mac 02:0f:79:47:36:60 dst_mac 02:21:ef:4f:10:5a vlan_id 3456 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10025 flower src_mac 02:9c:62:84:a8:8c dst_mac 02:a0:58:46:29:68 action drop && tc filter add dev swp33 ingress protocol ip pref 10026 flower src_mac 02:00:9e:ee:aa:79 dst_mac 02:2f:62:60:01:a1 src_ip 101.221.248.7 dst_ip 37.186.222.56 ip_proto tcp src_port 24073 dst_port 57792 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10027 flower src_mac 02:c5:b8:76:80:5a dst_mac 02:2b:00:f0:9f:8c src_ip 116.203.113.12 dst_ip 105.138.23.93 ip_proto icmp code 148 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10028 flower src_mac 02:ce:20:dd:ce:69 dst_mac 02:f7:76:8e:06:eb vlan_id 1515 vlan_ethtype ipv4 src_ip 116.237.45.234 dst_ip 78.64.55.92 ip_proto tcp src_port 6235 dst_port 11826 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:6e:b3:7b:ba:89 dst_mac 02:f1:27:3f:30:00 vlan_id 901 vlan_ethtype 0x0800 src_ip 60.90.215.214 dst_ip 85.78.107.187 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10030 flower src_mac 02:83:a2:8c:62:8e dst_mac 02:77:d2:bc:02:43 vlan_id 3676 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10031 flower src_mac 02:34:55:55:ad:87 dst_mac 02:3c:4c:64:3f:0d vlan_id 3654 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10032 flower src_mac 02:dd:25:5c:43:f8 dst_mac 02:20:a8:0c:3a:1a src_ip 108.121.195.155 dst_ip 93.241.253.3 ip_proto udp src_port 45478 dst_port 18021 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10033 flower src_mac 02:4c:6a:80:c1:63 dst_mac 02:bb:d1:02:a6:f5 src_ip 121.202.105.5 dst_ip 26.170.13.119 ip_proto tcp src_port 35951 dst_port 23688 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10034 flower src_mac 02:8a:f4:6f:c1:1b dst_mac 02:89:60:9d:57:3f vlan_id 1680 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:42:00:8d:77:6e dst_mac 02:ec:c7:5b:b1:4a action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10036 flower src_mac 02:d5:5c:1f:27:4d dst_mac 02:9b:76:27:40:fa action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10037 flower src_mac 02:36:f8:0c:aa:90 dst_mac 02:96:ec:4e:96:fb vlan_id 3853 vlan_ethtype ipv4 src_ip 18.80.112.109 dst_ip 21.61.172.215 ip_proto udp src_port 3819 dst_port 9815 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10038 flower src_mac 02:63:fe:b9:ec:30 dst_mac 02:5f:5f:17:4a:cc src_ip 88.217.164.138 dst_ip 54.170.81.196 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10039 flower src_mac 02:42:87:2b:44:5d dst_mac 02:da:37:a6:e4:97 src_ip 82.246.123.170 dst_ip 101.43.165.24 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10040 flower src_mac 02:b2:52:e4:16:4d dst_mac 02:76:96:16:c7:f0 src_ip 53.6.246.114 dst_ip 27.97.0.168 ip_proto icmp code 22 type 14 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10041 flower src_mac 02:8a:62:b8:dd:12 dst_mac 02:18:89:8f:64:66 src_ip 28.7.252.46 dst_ip 64.236.130.126 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10042 flower src_mac 02:66:f2:71:dd:49 dst_mac 02:1a:ee:c4:f2:2a vlan_id 3447 vlan_ethtype ipv4 src_ip 119.236.14.209 dst_ip 125.227.4.204 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower src_mac 02:12:2d:d4:dc:60 dst_mac 02:dc:ba:4f:a0:b0 vlan_id 4020 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10044 flower src_mac 02:5a:d7:ff:5e:4a dst_mac 02:eb:a3:3e:2a:4b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10045 flower src_mac 02:8f:13:de:6f:94 dst_mac 02:dc:2a:c7:82:7a action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10046 flower src_mac 02:bd:7b:4a:0d:66 dst_mac 02:4f:c3:e7:58:63 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10047 flower src_mac 02:dd:1a:49:77:50 dst_mac 02:fe:b2:f1:15:28 src_ip 88.119.14.50 dst_ip 105.182.223.115 ip_proto icmp code 120 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10048 flower src_mac 02:78:ff:cb:5a:4f dst_mac 02:18:b5:07:4b:73 vlan_id 538 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:d6:ab:5a:e0:69 dst_mac 02:b3:82:6a:a6:ce vlan_id 3502 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10050 flower src_mac 02:bf:43:cd:4c:4b dst_mac 02:29:a5:49:43:67 vlan_id 3439 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10051 flower src_mac 02:3c:ab:77:98:80 dst_mac 02:9f:f7:38:b9:c2 src_ip 114.149.194.113 dst_ip 28.29.16.94 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10052 flower src_mac 02:3a:d7:8f:36:18 dst_mac 02:23:0d:aa:13:ed action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10053 flower src_mac 02:be:b5:ed:d7:77 dst_mac 02:f8:64:cd:4a:9b vlan_id 1505 vlan_ethtype ip src_ip 37.14.72.209 dst_ip 81.126.116.165 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10054 flower src_mac 02:2e:d3:bf:8e:73 dst_mac 02:f7:4c:cd:53:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10055 flower src_mac 02:9c:61:bb:bb:a5 dst_mac 02:88:45:0e:4e:7a vlan_id 1645 vlan_ethtype ipv4 src_ip 111.87.253.235 dst_ip 124.100.235.108 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10056 flower src_mac 02:bf:4b:d7:d7:5a dst_mac 02:96:4a:ad:61:37 vlan_id 1922 vlan_ethtype ipv4 src_ip 91.122.162.185 dst_ip 31.8.6.186 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10057 flower src_mac 02:a8:70:cd:1d:1f dst_mac 02:51:29:55:39:98 vlan_id 3973 vlan_ethtype 0x0800 src_ip 82.243.125.225 dst_ip 40.9.181.116 ip_proto tcp src_port 513 dst_port 28199 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10058 flower src_mac 02:49:3b:a5:53:cc dst_mac 02:ee:ee:bf:37:d2 vlan_id 1745 vlan_ethtype ipv4 src_ip 111.33.155.250 dst_ip 19.203.170.150 ip_proto udp src_port 13423 dst_port 10432 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10059 flower src_mac 02:39:86:b3:25:83 dst_mac 02:8d:4f:60:51:a8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10060 flower src_mac 02:8b:4f:ae:d5:80 dst_mac 02:a1:2e:04:0a:13 src_ip 68.6.205.40 dst_ip 126.86.66.26 ip_proto icmp code 224 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10061 flower src_mac 02:cb:17:02:15:3a dst_mac 02:fd:f1:f7:2e:57 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:db:13:3f:36:de dst_mac 02:73:06:3e:3b:57 vlan_id 3272 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10063 flower src_mac 02:e8:22:11:af:c5 dst_mac 02:f6:c6:63:88:68 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:2c:e0:fa:f0:4e dst_mac 02:a9:e0:6e:45:c8 vlan_id 2438 vlan_ethtype ipv4 src_ip 63.153.143.102 dst_ip 22.119.251.111 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10065 flower src_mac 02:b9:53:f0:1f:14 dst_mac 02:6e:3c:28:13:a2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10066 flower src_mac 02:11:be:a3:12:06 dst_mac 02:df:85:fe:67:6f vlan_id 218 vlan_ethtype ip src_ip 104.31.254.240 dst_ip 72.232.107.134 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10067 flower src_mac 02:fe:a2:ed:dd:81 dst_mac 02:0a:c1:88:b7:0f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10068 flower src_mac 02:1a:ca:c7:55:90 dst_mac 02:e1:86:c6:73:07 vlan_id 4025 vlan_ethtype ip src_ip 58.121.210.234 dst_ip 20.62.53.179 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10069 flower src_mac 02:c5:0f:5e:05:af dst_mac 02:a9:b7:37:c0:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10070 flower src_mac 02:38:ae:7b:23:35 dst_mac 02:53:a6:58:57:b1 vlan_id 1428 vlan_ethtype ipv4 src_ip 46.31.208.125 dst_ip 33.44.1.210 ip_proto tcp src_port 37557 dst_port 57628 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10071 flower src_mac 02:09:2d:2e:81:14 dst_mac 02:f3:43:18:bd:74 src_ip 118.129.31.191 dst_ip 120.128.146.210 ip_proto udp src_port 50644 dst_port 31691 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10072 flower src_mac 02:bf:24:4c:8a:e1 dst_mac 02:e2:cb:34:f0:a1 src_ip 49.39.103.188 dst_ip 123.249.6.125 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10073 flower src_mac 02:f7:ab:76:fc:7e dst_mac 02:6c:94:a9:6e:38 vlan_id 3176 vlan_ethtype ipv4 src_ip 56.115.60.135 dst_ip 72.90.169.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:a5:af:42:c9:fe dst_mac 02:4b:7c:85:2f:85 vlan_id 1152 vlan_ethtype ip src_ip 126.12.43.86 dst_ip 113.46.68.46 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:49:d1:3c:e6:3d dst_mac 02:46:83:fa:0d:b4 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10076 flower src_mac 02:fd:10:20:80:22 dst_mac 02:6e:ed:69:4c:34 action pass && tc filter add dev swp33 ingress protocol ip pref 10077 flower src_mac 02:ff:e2:4c:94:4f dst_mac 02:ae:21:9d:f0:08 src_ip 115.172.23.44 dst_ip 36.91.166.223 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10078 flower src_mac 02:90:6c:03:5f:c7 dst_mac 02:a8:61:a1:87:a8 vlan_id 3243 vlan_ethtype 0x0800 src_ip 101.108.127.238 dst_ip 45.125.145.132 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10079 flower src_mac 02:49:9e:6e:1a:66 dst_mac 02:bc:0c:6b:06:60 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10080 flower src_mac 02:c6:ec:f3:d1:bc dst_mac 02:6f:42:ca:a8:4e vlan_id 2207 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10081 flower src_mac 02:b6:df:67:cf:0d dst_mac 02:16:fd:58:08:50 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10082 flower src_mac 02:15:a2:5b:6a:1b dst_mac 02:46:3e:8f:ed:f9 vlan_id 3688 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10083 flower src_mac 02:86:b8:31:ee:ae dst_mac 02:42:cd:b8:ac:71 src_ip 101.109.208.236 dst_ip 56.10.190.185 ip_proto udp src_port 59000 dst_port 38974 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:5a:d1:8f:3b:b0 dst_mac 02:01:fe:61:1b:88 src_ip 51.115.140.6 dst_ip 86.51.147.22 ip_proto tcp src_port 47634 dst_port 39313 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10085 flower src_mac 02:30:fa:fd:97:f9 dst_mac 02:1f:7e:e1:97:2a vlan_id 3135 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10086 flower src_mac 02:fe:07:da:17:42 dst_mac 02:f0:b0:8f:00:ed vlan_id 3348 vlan_ethtype ip src_ip 119.75.134.35 dst_ip 106.55.68.8 ip_proto tcp src_port 50184 dst_port 33114 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10087 flower src_mac 02:d7:93:5f:b1:1a dst_mac 02:cc:51:70:37:6e src_ip 97.193.139.21 dst_ip 126.153.36.209 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10088 flower src_mac 02:e3:04:1a:0a:68 dst_mac 02:fe:40:f7:a4:61 src_ip 12.60.251.18 dst_ip 53.69.138.79 ip_proto tcp src_port 27154 dst_port 30559 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:27:aa:2d:cf:18 dst_mac 02:77:a4:ee:5e:10 vlan_id 3216 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10090 flower src_mac 02:1c:e9:01:3b:60 dst_mac 02:3a:9c:87:f3:9f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10091 flower src_mac 02:26:35:c0:27:72 dst_mac 02:c3:a4:80:9d:96 vlan_id 2694 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10092 flower src_mac 02:aa:29:87:61:f9 dst_mac 02:3b:90:3a:2a:8c src_ip 27.142.173.182 dst_ip 123.153.91.100 ip_proto udp src_port 54760 dst_port 44987 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10093 flower src_mac 02:85:ad:4f:07:eb dst_mac 02:18:81:61:c2:ff vlan_id 1338 vlan_ethtype ipv4 src_ip 86.138.50.182 dst_ip 25.35.196.84 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10094 flower src_mac 02:3d:0e:f1:f1:e4 dst_mac 02:a8:3d:65:01:c2 vlan_id 543 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10095 flower src_mac 02:0a:57:a3:4f:de dst_mac 02:e7:ac:bf:c2:ee src_ip 59.135.171.250 dst_ip 80.178.122.114 ip_proto icmp code 48 type 11 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10096 flower src_mac 02:8a:f8:a1:72:56 dst_mac 02:79:16:4d:96:a4 vlan_id 1477 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10097 flower src_mac 02:60:b5:99:c5:f4 dst_mac 02:f1:d9:60:90:d6 vlan_id 568 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10098 flower src_mac 02:8d:5f:f6:fb:f0 dst_mac 02:7e:01:06:8e:8b src_ip 24.45.131.157 dst_ip 68.49.4.249 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10099 flower src_mac 02:82:03:ee:62:cd dst_mac 02:19:17:9c:7a:70 vlan_id 2583 vlan_ethtype ipv4 src_ip 124.58.150.180 dst_ip 46.13.31.243 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:d1:22:29:b9:d9 dst_mac 02:d2:41:b7:66:15 vlan_id 2075 vlan_ethtype ipv4 src_ip 121.242.12.153 dst_ip 21.161.96.161 action trap && tc filter add dev swp33 ingress protocol ip pref 10101 flower src_mac 02:b3:f2:19:ed:99 dst_mac 02:93:89:07:58:76 src_ip 83.177.115.245 dst_ip 118.219.121.163 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10102 flower src_mac 02:cd:2a:70:88:41 dst_mac 02:52:ae:1f:9e:5b vlan_id 2821 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10103 flower src_mac 02:88:1d:0c:42:3d dst_mac 02:8e:65:48:f5:6d src_ip 59.187.193.111 dst_ip 103.72.87.63 ip_proto icmp code 107 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10104 flower src_mac 02:45:5a:75:aa:dd dst_mac 02:c2:e0:6c:9a:37 vlan_id 257 vlan_ethtype ip src_ip 107.203.114.222 dst_ip 100.32.75.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10105 flower src_mac 02:10:ed:d9:48:68 dst_mac 02:84:d4:fe:73:2b vlan_id 3227 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10106 flower src_mac 02:65:e3:f5:99:22 dst_mac 02:f0:f1:77:d1:d5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10107 flower src_mac 02:f2:74:6d:04:9a dst_mac 02:d9:3b:93:39:02 vlan_id 3880 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:5f:d7:a1:d9:17 dst_mac 02:c5:57:17:56:c8 vlan_id 940 vlan_ethtype ip src_ip 85.12.191.152 dst_ip 70.233.86.186 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10109 flower src_mac 02:6d:25:ac:6c:f0 dst_mac 02:29:4b:1e:ca:ba action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10110 flower src_mac 02:f7:20:58:ce:ab dst_mac 02:70:21:9c:8f:ef action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10111 flower src_mac 02:22:0d:59:39:50 dst_mac 02:ef:f9:0e:25:2d action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10112 flower src_mac 02:ef:11:9b:ef:f2 dst_mac 02:c4:91:40:94:5d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10113 flower src_mac 02:a1:52:eb:f0:97 dst_mac 02:ba:be:bd:d1:d6 src_ip 102.29.7.118 dst_ip 102.48.76.64 ip_proto tcp src_port 58639 dst_port 46431 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10114 flower src_mac 02:43:67:a5:11:4b dst_mac 02:dd:3d:7b:cd:f0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10115 flower src_mac 02:89:9b:ea:7b:70 dst_mac 02:46:ae:68:48:d5 vlan_id 1878 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10116 flower src_mac 02:f9:f1:92:cb:10 dst_mac 02:07:33:da:f4:76 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10117 flower src_mac 02:a4:a4:2a:16:9b dst_mac 02:d9:10:81:dd:4c vlan_id 2394 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10118 flower src_mac 02:bb:9b:e0:8e:41 dst_mac 02:ac:06:ac:7a:d8 vlan_id 1552 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10119 flower src_mac 02:7a:81:36:fe:ff dst_mac 02:29:db:02:05:60 vlan_id 1733 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10120 flower src_mac 02:91:03:99:0c:e7 dst_mac 02:68:1a:75:92:0d vlan_id 150 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10121 flower src_mac 02:2c:5a:f3:e8:1a dst_mac 02:aa:ad:c0:45:36 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10122 flower src_mac 02:5b:c6:e1:72:35 dst_mac 02:14:96:84:e9:d5 src_ip 59.134.80.17 dst_ip 12.13.227.100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10123 flower src_mac 02:8c:3f:05:34:60 dst_mac 02:03:9a:e3:c1:78 vlan_id 3537 vlan_ethtype ipv4 src_ip 92.121.13.19 dst_ip 82.15.14.125 ip_proto tcp src_port 31904 dst_port 63312 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10124 flower src_mac 02:cf:6f:f5:38:71 dst_mac 02:3b:cc:d4:85:f2 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10125 flower src_mac 02:99:a6:3b:fb:1f dst_mac 02:55:62:62:d3:64 src_ip 46.166.238.121 dst_ip 107.75.228.243 ip_proto udp src_port 57206 dst_port 61028 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10126 flower src_mac 02:fa:26:ea:df:88 dst_mac 02:f0:cc:22:37:40 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10127 flower src_mac 02:a7:44:94:3e:56 dst_mac 02:38:99:e6:47:54 src_ip 101.1.222.187 dst_ip 38.9.76.165 ip_proto icmp code 9 type 11 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10128 flower src_mac 02:4e:b5:35:05:38 dst_mac 02:84:a2:03:72:3a src_ip 46.99.181.210 dst_ip 94.161.221.187 ip_proto udp src_port 17323 dst_port 23902 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:b4:8b:89:f8:96 dst_mac 02:bd:f7:f0:57:7c vlan_id 2351 vlan_ethtype ipv4 src_ip 85.164.2.159 dst_ip 112.232.154.56 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10130 flower src_mac 02:d7:75:5f:d0:9c dst_mac 02:08:ec:cb:81:cd src_ip 90.179.215.77 dst_ip 37.204.224.128 ip_proto icmp code 115 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10131 flower src_mac 02:b5:7c:e8:63:02 dst_mac 02:e8:10:40:3e:0b action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10132 flower src_mac 02:1c:1d:6a:44:dd dst_mac 02:c3:92:f7:a7:c7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10133 flower src_mac 02:b5:d7:21:c6:ff dst_mac 02:b9:1c:f1:44:e4 vlan_id 2370 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10134 flower src_mac 02:73:5f:66:e5:4e dst_mac 02:6a:34:d7:4c:52 vlan_id 1381 vlan_ethtype 0x0800 src_ip 31.169.33.41 dst_ip 105.224.130.75 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10135 flower src_mac 02:dc:5e:3e:cb:e5 dst_mac 02:c1:11:68:d4:ed vlan_id 2371 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10136 flower src_mac 02:63:22:c6:58:80 dst_mac 02:a7:d3:46:92:86 src_ip 38.85.129.66 dst_ip 18.143.71.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10137 flower src_mac 02:de:da:05:9d:95 dst_mac 02:0a:9f:50:79:ad vlan_id 790 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10138 flower src_mac 02:21:7b:fd:9f:a7 dst_mac 02:cc:2e:bb:18:95 vlan_id 3455 vlan_ethtype ip src_ip 78.161.177.117 dst_ip 30.170.21.162 ip_proto tcp src_port 8466 dst_port 63393 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:3e:3a:07:79:bd dst_mac 02:f1:a4:02:84:9e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:11:e4:e6:a0:38 dst_mac 02:3a:26:05:07:5f vlan_id 2443 vlan_ethtype 0x0800 src_ip 42.10.60.11 dst_ip 109.99.127.106 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10141 flower src_mac 02:c7:8b:48:d1:34 dst_mac 02:1f:ea:94:f3:f7 vlan_id 1203 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10142 flower src_mac 02:0f:fc:68:b3:3b dst_mac 02:ba:a0:15:47:05 src_ip 31.255.12.112 dst_ip 98.164.200.17 ip_proto udp src_port 61280 dst_port 8783 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10143 flower src_mac 02:d0:c1:2b:08:4e dst_mac 02:c7:9e:ee:b4:ad action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10144 flower src_mac 02:12:5d:43:b1:3b dst_mac 02:79:e8:9a:77:11 src_ip 104.190.125.103 dst_ip 83.238.21.5 ip_proto udp src_port 65042 dst_port 11346 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10145 flower src_mac 02:b9:a4:51:24:d3 dst_mac 02:44:05:4e:71:4d vlan_id 1595 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10146 flower src_mac 02:dc:64:6a:be:63 dst_mac 02:0d:f7:c5:8a:20 vlan_id 66 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10147 flower src_mac 02:29:3e:34:6c:65 dst_mac 02:cd:41:a8:89:2d vlan_id 3225 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10148 flower src_mac 02:d7:98:73:d6:37 dst_mac 02:b4:15:6f:ba:e8 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10149 flower src_mac 02:3a:0e:b4:59:16 dst_mac 02:8c:a9:4a:24:48 src_ip 34.42.15.227 dst_ip 101.248.252.234 ip_proto icmp code 150 type 15 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10150 flower src_mac 02:f6:63:5b:e8:55 dst_mac 02:09:c1:30:75:7f src_ip 82.78.247.88 dst_ip 106.42.190.218 ip_proto tcp src_port 45116 dst_port 33482 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10151 flower src_mac 02:c8:df:ae:fc:5b dst_mac 02:be:22:6a:be:7b vlan_id 2424 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10152 flower src_mac 02:2a:0f:b7:17:51 dst_mac 02:c8:24:bc:d8:33 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10153 flower src_mac 02:df:db:ea:2c:38 dst_mac 02:95:11:21:18:84 vlan_id 3277 vlan_ethtype 0x0800 src_ip 126.253.171.87 dst_ip 49.202.44.57 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10154 flower src_mac 02:78:16:70:c6:16 dst_mac 02:1e:c1:a9:7e:aa action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:3a:c7:80:68:d6 dst_mac 02:6e:6c:9d:75:86 vlan_id 324 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10156 flower src_mac 02:e3:bb:0c:58:a5 dst_mac 02:26:3b:2c:54:a7 vlan_id 3619 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10157 flower src_mac 02:1d:fb:d0:d8:e8 dst_mac 02:5a:d7:dd:36:c4 src_ip 31.164.204.177 dst_ip 107.67.56.166 ip_proto tcp src_port 23698 dst_port 36248 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10158 flower src_mac 02:ff:1f:f6:2b:a9 dst_mac 02:53:74:a2:2b:2b src_ip 116.82.228.71 dst_ip 97.142.250.80 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10159 flower src_mac 02:39:74:09:31:aa dst_mac 02:9e:a5:95:92:5b src_ip 89.225.64.203 dst_ip 68.17.197.188 ip_proto tcp src_port 40403 dst_port 10865 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10160 flower src_mac 02:57:6b:e1:6f:54 dst_mac 02:09:ca:01:f5:af src_ip 84.174.182.99 dst_ip 97.185.13.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10161 flower src_mac 02:b6:89:3c:73:b6 dst_mac 02:fd:d2:e5:cd:c3 vlan_id 2388 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:e4:81:26:be:a8 dst_mac 02:02:6a:0e:30:37 vlan_id 3755 vlan_ethtype ipv4 src_ip 47.165.22.49 dst_ip 62.167.50.90 ip_proto tcp src_port 52146 dst_port 30030 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10163 flower src_mac 02:ee:74:23:ee:06 dst_mac 02:6c:7c:e9:bd:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:04:49:d9:67:b3 dst_mac 02:bb:64:50:99:a2 vlan_id 1835 vlan_ethtype ipv4 src_ip 95.200.230.47 dst_ip 124.175.173.165 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:65:a2:29:9c:d2 dst_mac 02:39:7d:e9:f3:46 vlan_id 2424 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10166 flower src_mac 02:1f:bf:63:ae:af dst_mac 02:0e:83:34:b8:b6 vlan_id 4022 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10167 flower src_mac 02:9b:22:0e:6d:73 dst_mac 02:d2:96:90:5b:a5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10168 flower src_mac 02:f6:15:8c:f2:cc dst_mac 02:ee:c3:0f:16:12 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10169 flower src_mac 02:69:48:c3:21:87 dst_mac 02:67:f8:26:26:85 src_ip 27.200.119.196 dst_ip 84.76.160.228 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10170 flower src_mac 02:d6:a7:c3:99:e2 dst_mac 02:b3:c3:59:50:34 src_ip 79.68.45.37 dst_ip 111.220.103.222 ip_proto udp src_port 34405 dst_port 18177 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10171 flower src_mac 02:14:ef:15:ce:2f dst_mac 02:f3:79:5e:0e:c8 src_ip 121.9.102.29 dst_ip 39.154.231.23 ip_proto icmp code 108 type 4 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10172 flower src_mac 02:51:84:6e:1a:94 dst_mac 02:49:fe:20:e0:15 vlan_id 18 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10173 flower src_mac 02:8c:2c:08:35:05 dst_mac 02:ba:1c:60:d3:a6 vlan_id 2527 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10174 flower src_mac 02:03:2c:60:05:c7 dst_mac 02:da:97:e9:f9:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10175 flower src_mac 02:64:d7:b5:30:61 dst_mac 02:d5:f5:fd:0d:87 vlan_id 676 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10176 flower src_mac 02:bd:97:25:88:42 dst_mac 02:2a:4c:20:1e:5c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10177 flower src_mac 02:f8:92:11:0b:d4 dst_mac 02:a0:43:19:ff:00 vlan_id 2709 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10178 flower src_mac 02:82:de:78:1d:7e dst_mac 02:b9:58:01:02:e7 vlan_id 1739 vlan_ethtype 0x0800 src_ip 50.94.133.76 dst_ip 117.87.70.149 ip_proto tcp src_port 63176 dst_port 40511 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10179 flower src_mac 02:c8:ca:d1:fa:9f dst_mac 02:12:a3:4a:72:d0 vlan_id 3820 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10180 flower src_mac 02:e0:ce:c0:26:97 dst_mac 02:ac:9c:f7:9b:df vlan_id 845 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10181 flower src_mac 02:a4:46:4f:ce:db dst_mac 02:3c:e2:04:03:9d src_ip 32.217.221.9 dst_ip 123.168.61.214 ip_proto udp src_port 17298 dst_port 48445 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10182 flower src_mac 02:97:95:96:1c:1b dst_mac 02:6c:35:38:4d:18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10183 flower src_mac 02:3e:e4:05:fa:33 dst_mac 02:ac:49:25:70:95 vlan_id 2277 vlan_ethtype 0x0800 src_ip 114.226.64.99 dst_ip 11.14.189.35 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10184 flower src_mac 02:d7:1f:00:16:9b dst_mac 02:8f:8f:4c:81:29 src_ip 63.72.9.233 dst_ip 94.63.32.183 ip_proto tcp src_port 59574 dst_port 21656 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10185 flower src_mac 02:7f:98:23:d3:35 dst_mac 02:f4:7a:18:68:09 vlan_id 2718 vlan_ethtype ipv4 src_ip 70.21.228.187 dst_ip 21.105.248.90 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10186 flower src_mac 02:28:a7:d8:2b:0a dst_mac 02:52:e8:f7:bc:62 action drop && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:f5:97:c5:a9:6d dst_mac 02:d4:82:b2:0b:e1 src_ip 28.222.8.88 dst_ip 120.30.149.211 ip_proto icmp code 152 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10188 flower src_mac 02:15:53:6f:6e:d1 dst_mac 02:da:df:95:98:af vlan_id 3791 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10189 flower src_mac 02:f6:25:1a:92:d9 dst_mac 02:b7:e0:a6:cd:28 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10190 flower src_mac 02:90:21:00:68:00 dst_mac 02:e2:3e:8e:c3:3d action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10191 flower src_mac 02:82:41:56:c1:49 dst_mac 02:65:76:6f:2a:60 src_ip 27.250.204.86 dst_ip 105.100.247.2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10192 flower src_mac 02:de:c7:d4:c7:93 dst_mac 02:44:18:5f:ea:d0 vlan_id 1688 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:3a:4d:a1:04:07 dst_mac 02:63:6c:c0:13:29 src_ip 38.105.205.230 dst_ip 70.123.90.116 ip_proto tcp src_port 11954 dst_port 45058 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10194 flower src_mac 02:72:3c:bf:27:f7 dst_mac 02:29:95:76:78:c0 src_ip 49.78.48.78 dst_ip 25.191.238.234 action pass && tc filter add dev swp33 ingress protocol ip pref 10195 flower src_mac 02:58:7c:37:67:8f dst_mac 02:ab:40:85:96:e6 src_ip 122.22.139.224 dst_ip 70.127.204.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10196 flower src_mac 02:fa:68:07:97:d6 dst_mac 02:4a:15:86:3e:52 src_ip 89.20.244.56 dst_ip 84.25.191.24 ip_proto icmp code 208 type 8 action trap && tc filter add dev swp33 ingress protocol ip pref 10197 flower src_mac 02:46:04:b0:f2:9b dst_mac 02:b1:2c:4e:bb:65 src_ip 40.31.202.91 dst_ip 94.29.133.83 ip_proto udp src_port 59844 dst_port 38186 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10198 flower src_mac 02:de:4e:1b:f1:d6 dst_mac 02:7c:39:90:c1:cb src_ip 77.82.196.36 dst_ip 55.166.5.228 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10199 flower src_mac 02:e4:be:e3:69:89 dst_mac 02:59:62:1b:1e:c1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10200 flower src_mac 02:66:63:ad:7a:3a dst_mac 02:df:e4:60:5f:0a vlan_id 2012 vlan_ethtype ip src_ip 46.101.110.190 dst_ip 73.128.46.196 ip_proto tcp src_port 54297 dst_port 54061 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10201 flower src_mac 02:56:5a:ee:e2:6d dst_mac 02:fe:a0:80:c2:70 vlan_id 3024 vlan_ethtype ipv4 src_ip 59.197.15.63 dst_ip 84.177.222.73 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10202 flower src_mac 02:76:ef:19:35:6e dst_mac 02:a1:48:43:c6:ac src_ip 12.92.174.232 dst_ip 50.0.85.242 ip_proto tcp src_port 58540 dst_port 20867 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:28:ce:03:9b:bf dst_mac 02:43:3c:00:9a:90 vlan_id 1620 vlan_ethtype ipv4 src_ip 12.232.15.166 dst_ip 89.87.57.28 ip_proto udp src_port 32529 dst_port 30784 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10204 flower src_mac 02:98:bc:68:1c:de dst_mac 02:c7:8f:a3:ee:e2 vlan_id 3581 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10205 flower src_mac 02:5f:1e:75:06:df dst_mac 02:f9:c8:61:90:0d vlan_id 3215 vlan_ethtype ip src_ip 56.144.120.188 dst_ip 51.130.54.216 ip_proto udp src_port 6936 dst_port 61465 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10206 flower src_mac 02:51:b1:d4:3c:29 dst_mac 02:4f:b2:2f:2d:3d vlan_id 2882 vlan_ethtype 0x0800 src_ip 26.79.145.117 dst_ip 49.32.184.141 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10207 flower src_mac 02:d3:be:7b:f9:ef dst_mac 02:bf:4c:a6:48:e7 vlan_id 1357 vlan_ethtype 0x0800 src_ip 100.20.128.174 dst_ip 111.227.139.53 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10208 flower src_mac 02:9f:2f:ea:aa:74 dst_mac 02:e5:83:ec:73:88 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10209 flower src_mac 02:52:a4:f0:d5:8d dst_mac 02:07:0c:7f:bc:ed vlan_id 1806 vlan_ethtype ipv4 src_ip 23.90.246.170 dst_ip 89.160.160.183 ip_proto udp src_port 28192 dst_port 35555 action pass && tc filter add dev swp33 ingress protocol ip pref 10210 flower src_mac 02:88:7e:ea:48:af dst_mac 02:64:3f:36:80:d4 src_ip 57.101.49.77 dst_ip 77.224.212.28 ip_proto tcp src_port 1940 dst_port 18292 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10211 flower src_mac 02:3f:02:ba:40:df dst_mac 02:77:9c:9f:d7:64 src_ip 56.190.84.183 dst_ip 86.5.232.185 ip_proto icmp code 168 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10212 flower src_mac 02:fa:f2:9e:e6:01 dst_mac 02:a5:57:6b:02:20 vlan_id 802 vlan_ethtype 0x0800 src_ip 109.89.79.23 dst_ip 19.131.195.68 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10213 flower src_mac 02:b7:6d:2f:61:5e dst_mac 02:7e:4b:89:0b:ac action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10214 flower src_mac 02:2d:a6:71:c0:30 dst_mac 02:ea:a8:74:f7:89 vlan_id 2124 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10215 flower src_mac 02:f6:d8:ab:75:8e dst_mac 02:70:6c:ca:fb:0e vlan_id 2470 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10216 flower src_mac 02:11:dd:b7:27:91 dst_mac 02:27:9f:2c:6d:f4 vlan_id 1931 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10217 flower src_mac 02:29:80:c9:cd:18 dst_mac 02:17:08:be:cb:32 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10218 flower src_mac 02:cc:15:0c:8b:f3 dst_mac 02:9b:94:a1:a8:4c src_ip 57.95.217.82 dst_ip 110.29.222.1 ip_proto udp src_port 55331 dst_port 11814 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10219 flower src_mac 02:0e:73:5d:1d:13 dst_mac 02:e2:bf:85:dc:b7 vlan_id 3583 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:29:b1:d6:76:5a dst_mac 02:6e:05:b1:9c:2a vlan_id 970 vlan_ethtype 0x0800 src_ip 104.80.63.156 dst_ip 119.155.122.208 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10221 flower src_mac 02:7a:3b:68:ca:f8 dst_mac 02:9d:98:e0:f3:59 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10222 flower src_mac 02:09:36:f6:07:47 dst_mac 02:2f:60:9b:90:36 src_ip 89.162.23.213 dst_ip 42.240.125.110 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10223 flower src_mac 02:b9:9e:31:c8:f9 dst_mac 02:41:34:2b:49:65 src_ip 62.247.109.215 dst_ip 103.78.249.103 ip_proto udp src_port 19719 dst_port 42172 action drop && tc filter add dev swp33 ingress protocol ip pref 10224 flower src_mac 02:ee:e3:42:5b:80 dst_mac 02:25:a9:21:a0:3f src_ip 108.120.224.120 dst_ip 111.229.22.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:95:24:fc:95:dd dst_mac 02:a7:ab:a4:85:d8 vlan_id 3562 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10226 flower src_mac 02:ee:ff:6e:0a:26 dst_mac 02:85:ce:1a:42:c9 action trap && tc filter add dev swp33 ingress protocol ip pref 10227 flower src_mac 02:d2:5a:fd:53:a1 dst_mac 02:d3:0d:1b:11:46 src_ip 90.6.94.118 dst_ip 37.139.202.29 action trap && tc filter add dev swp33 ingress protocol ip pref 10228 flower src_mac 02:5d:22:5a:13:d7 dst_mac 02:09:22:fd:23:8c src_ip 91.242.70.213 dst_ip 87.251.126.174 ip_proto tcp src_port 29114 dst_port 2743 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10229 flower src_mac 02:de:18:26:f4:ba dst_mac 02:23:2f:7b:f7:8a vlan_id 1487 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10230 flower src_mac 02:ef:8b:49:2c:3b dst_mac 02:a3:b7:84:90:92 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10231 flower src_mac 02:56:c8:dc:57:ff dst_mac 02:57:65:48:bd:99 src_ip 74.83.121.213 dst_ip 125.219.85.131 ip_proto icmp code 62 type 11 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10232 flower src_mac 02:21:05:77:bc:99 dst_mac 02:91:a1:6f:d7:39 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10233 flower src_mac 02:51:d2:72:66:4d dst_mac 02:e9:eb:4e:9b:63 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10234 flower src_mac 02:c7:7e:e2:b8:00 dst_mac 02:a7:8a:da:4d:94 vlan_id 1090 vlan_ethtype ip src_ip 23.181.45.10 dst_ip 68.210.52.125 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10235 flower src_mac 02:5b:11:d7:b4:5f dst_mac 02:4d:fe:04:2e:aa src_ip 71.152.144.89 dst_ip 38.171.88.183 ip_proto tcp src_port 43627 dst_port 61836 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10236 flower src_mac 02:95:f9:31:0b:bd dst_mac 02:2f:f8:2b:b9:aa vlan_id 3669 vlan_ethtype ipv4 src_ip 121.160.26.195 dst_ip 59.43.83.178 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10237 flower src_mac 02:de:4e:47:31:f2 dst_mac 02:fd:95:34:f3:0b action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10238 flower src_mac 02:4b:e3:38:05:4e dst_mac 02:62:17:ca:c5:53 src_ip 86.95.158.238 dst_ip 73.90.3.243 ip_proto udp src_port 11374 dst_port 1832 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10239 flower src_mac 02:31:28:a6:7a:cd dst_mac 02:c2:6e:68:ab:7d src_ip 123.57.83.29 dst_ip 93.150.60.81 ip_proto icmp code 186 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:94:24:ee:e4:c6 dst_mac 02:dc:96:99:fc:67 src_ip 119.42.102.220 dst_ip 42.114.190.39 ip_proto icmp code 240 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10241 flower src_mac 02:2e:f1:64:56:78 dst_mac 02:2d:a0:f6:8b:4c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10242 flower src_mac 02:29:d5:44:3e:78 dst_mac 02:b6:25:3d:a8:7b vlan_id 63 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10243 flower src_mac 02:19:2b:54:55:ac dst_mac 02:b5:23:a6:5c:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:45:9e:70:ab:57 dst_mac 02:bb:34:4d:b8:e4 vlan_id 1291 vlan_ethtype ipv4 src_ip 50.97.197.11 dst_ip 52.197.120.42 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10245 flower src_mac 02:0f:ca:df:23:1d dst_mac 02:39:8a:65:00:c7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10246 flower src_mac 02:95:5b:5d:71:b0 dst_mac 02:3a:5a:d4:b2:54 vlan_id 2358 vlan_ethtype ip src_ip 11.179.121.247 dst_ip 16.125.28.163 ip_proto udp src_port 21248 dst_port 33436 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:48:32:05:4d:4d dst_mac 02:2e:1e:c0:7a:5b vlan_id 1226 vlan_ethtype ipv4 src_ip 52.235.66.229 dst_ip 23.0.239.225 ip_proto udp src_port 5116 dst_port 57541 action pass && tc filter add dev swp33 ingress protocol ip pref 10248 flower src_mac 02:73:7c:37:04:04 dst_mac 02:7f:62:8b:e2:9e src_ip 101.61.199.175 dst_ip 81.161.119.129 ip_proto icmp code 102 type 15 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10249 flower src_mac 02:23:f1:f4:8a:f2 dst_mac 02:79:80:fd:66:3b vlan_id 1635 vlan_ethtype ip src_ip 50.55.193.75 dst_ip 102.244.27.175 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10250 flower src_mac 02:a7:e6:48:62:15 dst_mac 02:aa:8f:64:59:d8 vlan_id 887 vlan_ethtype ipv4 src_ip 50.123.214.117 dst_ip 46.44.147.75 ip_proto udp src_port 56453 dst_port 15058 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10251 flower src_mac 02:88:e0:56:14:9e dst_mac 02:af:e6:06:7b:a6 vlan_id 3815 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10252 flower src_mac 02:37:27:c7:60:3c dst_mac 02:7d:dd:68:66:89 vlan_id 3710 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10253 flower src_mac 02:a3:cd:93:2c:02 dst_mac 02:23:79:d9:5e:70 vlan_id 1641 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10254 flower src_mac 02:3e:e5:37:8c:25 dst_mac 02:98:b9:d0:6d:8a vlan_id 588 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10255 flower src_mac 02:65:67:ce:08:21 dst_mac 02:d3:36:ba:d7:c5 src_ip 64.106.123.209 dst_ip 27.154.184.164 ip_proto udp src_port 8894 dst_port 36030 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10256 flower src_mac 02:61:50:d8:25:5b dst_mac 02:9d:a5:18:5f:76 vlan_id 2405 vlan_ethtype ip src_ip 72.216.250.79 dst_ip 99.72.160.2 ip_proto tcp src_port 9917 dst_port 51999 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10257 flower src_mac 02:6b:45:d4:63:ea dst_mac 02:f8:d4:0f:bb:2d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10258 flower src_mac 02:e2:6a:e6:3e:ed dst_mac 02:aa:f1:84:c9:df vlan_id 2817 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10259 flower src_mac 02:6f:b0:55:71:37 dst_mac 02:cc:d4:c8:9d:6c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10260 flower src_mac 02:ef:b5:8e:ae:95 dst_mac 02:f4:fa:c5:98:bd action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10261 flower src_mac 02:30:79:fa:d4:39 dst_mac 02:5c:a9:95:52:bb vlan_id 1362 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10262 flower src_mac 02:dc:62:3e:c9:50 dst_mac 02:d1:ee:2b:c0:75 vlan_id 1898 vlan_ethtype ipv4 src_ip 123.88.64.34 dst_ip 35.85.166.56 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10263 flower src_mac 02:14:73:09:f8:2c dst_mac 02:9a:6a:5d:da:b0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10264 flower src_mac 02:23:fb:4b:cd:c6 dst_mac 02:7b:e4:10:ce:9b vlan_id 231 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10265 flower src_mac 02:f4:52:9d:d5:3c dst_mac 02:76:26:70:c7:57 src_ip 43.121.34.113 dst_ip 53.70.29.237 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10266 flower src_mac 02:fc:b9:08:1d:20 dst_mac 02:86:b5:e9:a7:8e vlan_id 2556 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10267 flower src_mac 02:ee:8b:f6:4a:00 dst_mac 02:db:a9:09:d4:4f src_ip 39.233.126.52 dst_ip 11.213.15.6 ip_proto udp src_port 59035 dst_port 38245 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10268 flower src_mac 02:a7:57:b4:34:43 dst_mac 02:2d:b6:e6:d0:ca vlan_id 13 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10269 flower src_mac 02:03:dc:07:aa:80 dst_mac 02:24:28:7e:c5:1c src_ip 40.178.237.112 dst_ip 37.140.21.83 ip_proto udp src_port 13227 dst_port 53238 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10270 flower src_mac 02:f5:f0:53:47:2b dst_mac 02:67:06:05:56:f0 src_ip 74.99.42.231 dst_ip 56.1.42.118 ip_proto tcp src_port 11125 dst_port 51732 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10271 flower src_mac 02:74:3f:2c:17:50 dst_mac 02:c7:e4:4c:3f:19 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10272 flower src_mac 02:52:3f:47:e3:c1 dst_mac 02:f1:f0:5e:98:f3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:33:e3:49:d7:32 dst_mac 02:bf:e1:d4:61:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10274 flower src_mac 02:12:19:f2:e2:a9 dst_mac 02:9b:e4:a4:7b:b2 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10275 flower src_mac 02:70:bc:f1:d3:d4 dst_mac 02:9e:84:70:bf:3f action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10276 flower src_mac 02:5c:67:87:fc:be dst_mac 02:a6:ae:db:48:8d action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10277 flower src_mac 02:26:53:e5:16:34 dst_mac 02:75:83:13:e0:8b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10278 flower src_mac 02:30:81:6e:95:6e dst_mac 02:35:ab:69:31:40 action trap && tc filter add dev swp33 ingress protocol ip pref 10279 flower src_mac 02:db:05:01:24:dd dst_mac 02:85:56:92:df:54 src_ip 29.248.95.184 dst_ip 26.135.134.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10280 flower src_mac 02:7d:33:f5:eb:d6 dst_mac 02:28:05:e8:a7:1c vlan_id 2042 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10281 flower src_mac 02:95:59:30:4c:de dst_mac 02:b6:01:84:f6:53 src_ip 97.75.235.104 dst_ip 15.148.201.136 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10282 flower src_mac 02:4f:57:c9:f3:ec dst_mac 02:c5:18:bb:6a:f1 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10283 flower src_mac 02:7f:e5:45:8b:42 dst_mac 02:cd:6e:5b:e1:09 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10284 flower src_mac 02:68:c6:2d:c9:31 dst_mac 02:81:4e:b3:89:33 vlan_id 2495 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10285 flower src_mac 02:c2:68:09:35:31 dst_mac 02:20:a4:8c:6b:d3 vlan_id 3163 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10286 flower src_mac 02:47:e6:89:38:ba dst_mac 02:95:ae:3c:a4:58 vlan_id 3523 vlan_ethtype ip src_ip 86.95.190.4 dst_ip 101.171.177.170 ip_proto udp src_port 11339 dst_port 28247 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10287 flower src_mac 02:c7:27:d0:85:ac dst_mac 02:c1:0f:e7:4d:ad action trap && tc filter add dev swp33 ingress protocol ip pref 10288 flower src_mac 02:f4:2b:27:68:26 dst_mac 02:49:29:a8:ca:4a src_ip 44.184.23.35 dst_ip 63.154.228.159 ip_proto tcp src_port 51079 dst_port 19255 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10289 flower src_mac 02:3b:c4:51:37:9d dst_mac 02:d7:89:22:20:dc vlan_id 1804 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10290 flower src_mac 02:e3:66:8e:5a:c9 dst_mac 02:f5:a4:63:98:1a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10291 flower src_mac 02:35:84:c1:2e:dd dst_mac 02:29:0f:55:4e:ca vlan_id 1444 vlan_ethtype ip src_ip 87.112.209.110 dst_ip 18.223.51.90 ip_proto tcp src_port 56810 dst_port 33521 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:1a:ae:9f:e6:d9 dst_mac 02:26:dc:f4:cd:6e vlan_id 523 vlan_ethtype 0x0800 src_ip 79.247.241.61 dst_ip 101.2.232.60 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10293 flower src_mac 02:e3:a4:40:c2:45 dst_mac 02:de:0d:73:5f:87 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10294 flower src_mac 02:4f:e3:96:16:47 dst_mac 02:b5:70:12:9c:d1 vlan_id 2692 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10295 flower src_mac 02:5d:85:cb:6d:16 dst_mac 02:a1:a7:a1:be:64 src_ip 91.121.139.135 dst_ip 72.244.142.204 ip_proto icmp code 50 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10296 flower src_mac 02:b0:16:2d:93:79 dst_mac 02:73:17:0f:b9:22 src_ip 19.114.135.250 dst_ip 111.2.218.127 ip_proto tcp src_port 26062 dst_port 13425 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10297 flower src_mac 02:af:1d:74:94:c5 dst_mac 02:43:ec:31:d8:5e vlan_id 755 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10298 flower src_mac 02:c0:d4:6a:fe:f4 dst_mac 02:4e:07:e7:16:2e vlan_id 896 vlan_ethtype ip src_ip 110.117.52.246 dst_ip 34.108.214.4 ip_proto tcp src_port 45013 dst_port 10116 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10299 flower src_mac 02:b5:9a:df:1f:73 dst_mac 02:00:27:05:bc:8e vlan_id 2301 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10300 flower src_mac 02:c4:e8:fe:7b:e2 dst_mac 02:55:f5:13:64:86 vlan_id 2566 vlan_ethtype ipv4 src_ip 72.115.184.244 dst_ip 41.245.79.87 ip_proto tcp src_port 10155 dst_port 60697 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10301 flower src_mac 02:c5:b3:23:0f:67 dst_mac 02:cd:6f:21:e0:cf src_ip 87.49.171.211 dst_ip 11.113.84.70 ip_proto icmp code 123 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10302 flower src_mac 02:5b:65:25:4e:e6 dst_mac 02:c5:de:73:2d:8d src_ip 67.148.166.247 dst_ip 77.141.46.145 ip_proto icmp code 233 type 13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10303 flower src_mac 02:0a:1b:1f:9b:f7 dst_mac 02:40:3c:46:f8:cf vlan_id 2615 vlan_ethtype ipv4 src_ip 56.137.100.174 dst_ip 79.124.132.173 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10304 flower src_mac 02:a8:a7:91:05:30 dst_mac 02:ff:fa:22:08:85 vlan_id 788 vlan_ethtype ipv4 src_ip 71.30.161.30 dst_ip 13.117.10.206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10305 flower src_mac 02:9b:00:45:56:f8 dst_mac 02:d3:e7:78:88:d4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10306 flower src_mac 02:07:dc:99:a8:8b dst_mac 02:08:fb:2e:f3:f1 vlan_id 3297 vlan_ethtype ip src_ip 16.49.124.218 dst_ip 38.145.187.78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10307 flower src_mac 02:4f:5a:f2:49:1d dst_mac 02:30:7f:07:c6:6f vlan_id 188 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10308 flower src_mac 02:ae:a5:b6:62:aa dst_mac 02:04:fc:72:b6:d9 src_ip 35.8.43.131 dst_ip 21.58.132.196 ip_proto tcp src_port 30905 dst_port 30900 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10309 flower src_mac 02:7e:61:b9:54:cf dst_mac 02:40:15:34:5b:6c vlan_id 1175 vlan_ethtype 0x0800 src_ip 57.105.48.147 dst_ip 107.155.226.213 ip_proto udp src_port 36400 dst_port 10390 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10310 flower src_mac 02:85:e6:65:53:14 dst_mac 02:31:b1:d1:09:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10311 flower src_mac 02:96:f0:fa:e2:ad dst_mac 02:ff:e7:32:34:9d vlan_id 1659 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10312 flower src_mac 02:61:fe:37:24:07 dst_mac 02:66:21:6b:fe:4f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10313 flower src_mac 02:37:0d:0a:3a:55 dst_mac 02:96:8e:8c:83:c2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:36:21:1f:eb:72 dst_mac 02:fa:22:ba:bf:73 vlan_id 1399 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10315 flower src_mac 02:dc:fd:42:c0:ce dst_mac 02:18:27:cf:af:d9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10316 flower src_mac 02:f0:6e:6e:68:16 dst_mac 02:e9:f6:e8:ba:8c vlan_id 3639 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10317 flower src_mac 02:0f:a0:4d:cb:1e dst_mac 02:bd:1c:1c:12:79 vlan_id 1715 vlan_ethtype ipv4 src_ip 63.14.44.175 dst_ip 114.133.238.216 ip_proto udp src_port 42174 dst_port 27776 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10318 flower src_mac 02:e5:f6:66:3e:32 dst_mac 02:b8:49:3e:22:b7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10319 flower src_mac 02:83:00:ae:30:61 dst_mac 02:c6:4f:fa:23:54 vlan_id 1119 vlan_ethtype 0x0800 src_ip 86.48.80.237 dst_ip 18.102.32.27 ip_proto tcp src_port 61599 dst_port 51595 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:11:12:02:62:47 dst_mac 02:f4:bb:67:c9:85 vlan_id 3378 vlan_ethtype ip src_ip 52.73.81.100 dst_ip 116.39.205.134 ip_proto udp src_port 57526 dst_port 29667 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10321 flower src_mac 02:1c:84:c4:4b:1c dst_mac 02:1b:3a:73:89:b4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10322 flower src_mac 02:76:23:e9:f0:45 dst_mac 02:5a:57:68:c2:89 vlan_id 1008 vlan_ethtype ip src_ip 31.239.228.116 dst_ip 39.28.239.224 ip_proto tcp src_port 42770 dst_port 41209 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10323 flower src_mac 02:0d:a3:35:5a:77 dst_mac 02:71:d9:75:47:65 vlan_id 3841 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10324 flower src_mac 02:0b:e0:8d:b1:d0 dst_mac 02:47:42:40:55:af src_ip 62.209.71.93 dst_ip 82.96.166.200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10325 flower src_mac 02:49:8c:ef:05:ff dst_mac 02:29:0a:f7:4f:1d src_ip 94.233.63.126 dst_ip 22.141.229.207 ip_proto icmp code 182 type 12 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10326 flower src_mac 02:71:84:7c:1e:4f dst_mac 02:56:ba:41:ba:ce src_ip 72.28.35.148 dst_ip 78.223.27.225 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10327 flower src_mac 02:0a:14:0a:62:34 dst_mac 02:f7:3e:6b:99:cc vlan_id 942 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10328 flower src_mac 02:9c:ad:07:d9:fb dst_mac 02:4e:a1:37:f8:93 vlan_id 2098 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10329 flower src_mac 02:46:ad:d5:aa:85 dst_mac 02:b5:92:8d:71:1c vlan_id 142 vlan_ethtype ipv4 src_ip 61.2.238.153 dst_ip 107.122.147.241 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10330 flower src_mac 02:28:4d:57:df:2c dst_mac 02:0f:d3:8e:7e:36 vlan_id 1493 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10331 flower src_mac 02:75:06:aa:e5:aa dst_mac 02:bf:ea:9f:31:bd vlan_id 1158 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10332 flower src_mac 02:9c:98:7c:81:74 dst_mac 02:9d:f6:3a:27:a5 vlan_id 3455 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10333 flower src_mac 02:9d:c5:c9:74:54 dst_mac 02:eb:e2:52:27:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10334 flower src_mac 02:1a:7a:a6:3b:88 dst_mac 02:59:ac:04:4d:74 vlan_id 3224 vlan_ethtype 0x0800 src_ip 26.239.158.50 dst_ip 110.57.197.53 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10335 flower src_mac 02:7d:f7:ac:56:a6 dst_mac 02:29:a7:d6:9c:e4 src_ip 108.217.253.145 dst_ip 37.56.107.244 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10336 flower src_mac 02:78:08:49:7e:f2 dst_mac 02:8d:fe:37:6c:85 vlan_id 1270 vlan_ethtype 0x0800 src_ip 17.156.228.181 dst_ip 75.253.252.250 ip_proto udp src_port 37763 dst_port 54217 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10337 flower src_mac 02:3f:4a:b9:c3:4c dst_mac 02:09:fa:38:e6:96 vlan_id 812 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10338 flower src_mac 02:2d:ae:24:c1:d7 dst_mac 02:d0:5b:40:a1:0e src_ip 25.66.228.192 dst_ip 107.88.236.230 ip_proto udp src_port 4765 dst_port 5652 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10339 flower src_mac 02:86:f0:f5:68:36 dst_mac 02:f6:6d:a7:dc:5e vlan_id 48 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10340 flower src_mac 02:e6:49:3c:dd:4d dst_mac 02:59:0c:ff:e7:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10341 flower src_mac 02:2c:92:76:7f:d6 dst_mac 02:78:3f:57:73:08 vlan_id 327 vlan_ethtype 0x0800 src_ip 112.164.51.33 dst_ip 115.122.78.173 ip_proto udp src_port 33671 dst_port 50088 action trap && tc filter add dev swp33 ingress protocol ip pref 10342 flower src_mac 02:b9:45:0f:31:45 dst_mac 02:df:50:8d:6c:85 src_ip 118.82.33.212 dst_ip 51.61.107.220 ip_proto udp src_port 48690 dst_port 2371 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10343 flower src_mac 02:fa:af:ed:de:af dst_mac 02:89:fc:fc:ca:7f vlan_id 2682 vlan_ethtype 0x0800 src_ip 92.246.166.212 dst_ip 126.26.121.216 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10344 flower src_mac 02:98:9a:c9:6f:dc dst_mac 02:6b:17:53:a3:c8 vlan_id 3384 vlan_ethtype ipv4 src_ip 50.99.106.83 dst_ip 29.147.169.152 ip_proto udp src_port 26716 dst_port 37842 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10345 flower src_mac 02:00:ef:58:36:84 dst_mac 02:3f:f8:fd:02:af vlan_id 2591 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10346 flower src_mac 02:a1:35:eb:0a:d2 dst_mac 02:01:53:60:da:87 src_ip 71.98.71.144 dst_ip 20.100.208.135 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10347 flower src_mac 02:0c:31:b0:b4:71 dst_mac 02:2d:dc:e8:51:88 vlan_id 2863 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10348 flower src_mac 02:b1:86:66:5b:37 dst_mac 02:65:56:23:a6:02 vlan_id 387 vlan_ethtype 0x0800 src_ip 111.26.25.228 dst_ip 34.165.242.105 ip_proto tcp src_port 407 dst_port 1231 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10349 flower src_mac 02:d5:4e:15:a5:de dst_mac 02:88:b6:a6:b4:3d vlan_id 1448 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10350 flower src_mac 02:20:9d:24:a0:cb dst_mac 02:2f:32:fe:90:d3 src_ip 69.233.246.133 dst_ip 113.54.55.93 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10351 flower src_mac 02:25:3f:ad:b4:0b dst_mac 02:a1:f7:4f:cb:fc vlan_id 2190 vlan_ethtype 0x0800 src_ip 111.193.76.85 dst_ip 20.228.124.191 ip_proto udp src_port 39372 dst_port 10274 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10352 flower src_mac 02:21:3b:6c:e6:af dst_mac 02:f1:69:2d:98:a2 vlan_id 2332 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10353 flower src_mac 02:f0:e6:8b:a7:07 dst_mac 02:95:59:3d:71:67 src_ip 124.242.66.38 dst_ip 21.31.225.47 ip_proto udp src_port 9737 dst_port 27626 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10354 flower src_mac 02:9b:60:26:79:45 dst_mac 02:a1:17:96:20:45 vlan_id 394 vlan_ethtype 0x0800 src_ip 71.193.132.9 dst_ip 83.85.205.238 ip_proto udp src_port 42114 dst_port 6501 action drop && tc filter add dev swp33 ingress protocol ip pref 10355 flower src_mac 02:ca:da:fa:9e:bb dst_mac 02:e2:21:d9:5e:39 src_ip 54.206.176.119 dst_ip 120.250.89.167 ip_proto tcp src_port 24281 dst_port 30961 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10356 flower src_mac 02:6a:7c:5d:80:e8 dst_mac 02:10:7f:38:e1:15 src_ip 80.140.149.78 dst_ip 94.179.221.241 ip_proto icmp code 200 type 18 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10357 flower src_mac 02:d6:3a:06:ea:1b dst_mac 02:92:26:22:75:20 src_ip 94.92.16.92 dst_ip 112.244.4.96 ip_proto udp src_port 25833 dst_port 43698 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10358 flower src_mac 02:15:44:26:05:4d dst_mac 02:ee:53:ac:24:9b vlan_id 1716 vlan_ethtype ip src_ip 99.181.245.59 dst_ip 82.228.177.119 ip_proto udp src_port 25815 dst_port 27965 action drop && tc filter add dev swp33 ingress protocol ip pref 10359 flower src_mac 02:16:9b:0f:86:4e dst_mac 02:2a:ad:40:e7:3a src_ip 98.194.64.6 dst_ip 64.158.142.169 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10360 flower src_mac 02:6d:80:0f:81:55 dst_mac 02:cb:36:ff:df:07 src_ip 51.247.227.203 dst_ip 123.132.250.139 ip_proto tcp src_port 3811 dst_port 3983 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10361 flower src_mac 02:75:e2:b6:73:24 dst_mac 02:a0:f9:27:34:f6 vlan_id 214 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10362 flower src_mac 02:91:d1:cf:fa:50 dst_mac 02:5d:75:9a:ab:58 vlan_id 205 vlan_ethtype ipv4 src_ip 27.21.242.67 dst_ip 70.152.174.157 ip_proto tcp src_port 28473 dst_port 30329 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10363 flower src_mac 02:cc:a8:32:7d:e6 dst_mac 02:96:68:93:18:08 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10364 flower src_mac 02:fc:d8:ae:90:3d dst_mac 02:e3:a3:db:77:92 src_ip 104.170.209.99 dst_ip 28.168.54.13 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10365 flower src_mac 02:a2:33:c1:4d:77 dst_mac 02:8d:40:59:22:fc vlan_id 4082 vlan_ethtype 0x0800 src_ip 36.52.144.223 dst_ip 46.189.214.120 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10366 flower src_mac 02:28:79:f8:79:8b dst_mac 02:70:0e:ae:81:6b src_ip 117.97.198.107 dst_ip 35.12.34.135 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10367 flower src_mac 02:b6:f9:81:80:3b dst_mac 02:e4:30:32:b3:1d vlan_id 725 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10368 flower src_mac 02:04:ed:79:1f:59 dst_mac 02:e5:26:54:2c:64 vlan_id 3343 vlan_ethtype ip src_ip 82.112.151.44 dst_ip 35.116.10.209 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10369 flower src_mac 02:3f:d2:2c:0d:59 dst_mac 02:0b:59:ac:e2:18 vlan_id 2810 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10370 flower src_mac 02:f3:5d:40:7b:e6 dst_mac 02:1d:aa:d6:54:f5 vlan_id 1700 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10371 flower src_mac 02:61:a7:8e:03:79 dst_mac 02:84:f1:6f:27:ed src_ip 86.54.132.43 dst_ip 122.237.201.248 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10372 flower src_mac 02:7e:09:b1:d2:cf dst_mac 02:99:50:bc:2b:97 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10373 flower src_mac 02:92:d3:68:e6:97 dst_mac 02:07:f5:86:17:85 vlan_id 1751 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10374 flower src_mac 02:fa:9d:2f:cd:84 dst_mac 02:a8:a0:c2:c6:d5 vlan_id 3533 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:40:f2:c2:50:69 dst_mac 02:b3:54:f7:94:f1 vlan_id 1626 vlan_ethtype ipv4 src_ip 46.224.114.247 dst_ip 23.244.249.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10376 flower src_mac 02:14:d5:75:8c:d4 dst_mac 02:7e:92:f1:52:be vlan_id 1917 vlan_ethtype ipv4 src_ip 28.68.251.50 dst_ip 18.216.91.221 ip_proto udp src_port 18449 dst_port 5651 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10377 flower src_mac 02:43:55:14:be:56 dst_mac 02:c6:b2:5a:23:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:9e:5b:75:29:d1 dst_mac 02:30:3d:05:32:bb vlan_id 1221 vlan_ethtype 0x0800 src_ip 67.17.85.235 dst_ip 34.37.11.211 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10379 flower src_mac 02:89:d4:25:ff:55 dst_mac 02:e0:45:0f:0e:9d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10380 flower src_mac 02:89:c8:00:cd:74 dst_mac 02:88:92:e8:a9:28 vlan_id 462 vlan_ethtype 0x0800 src_ip 21.138.121.182 dst_ip 56.104.171.177 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:53:71:32:97:7b dst_mac 02:41:61:cd:9d:c7 vlan_id 611 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10382 flower src_mac 02:83:ea:e2:70:de dst_mac 02:e9:33:94:31:dd vlan_id 1442 vlan_ethtype ip src_ip 124.131.108.219 dst_ip 108.218.54.1 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10383 flower src_mac 02:93:cc:c0:ba:58 dst_mac 02:68:db:d9:1f:34 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:e0:48:ca:8e:af dst_mac 02:25:ec:a2:c8:c0 vlan_id 196 vlan_ethtype 0x0800 src_ip 85.166.195.110 dst_ip 123.70.208.188 ip_proto tcp src_port 45636 dst_port 401 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10385 flower src_mac 02:b8:e4:2e:b5:6b dst_mac 02:1b:c3:58:77:a6 src_ip 102.73.203.165 dst_ip 112.252.163.102 ip_proto tcp src_port 2702 dst_port 41072 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:9f:6a:ed:d6:11 dst_mac 02:bb:7f:58:81:c8 vlan_id 1132 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10387 flower src_mac 02:00:7f:95:5c:a5 dst_mac 02:9d:b2:2e:05:2c vlan_id 3396 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10388 flower src_mac 02:b3:8d:08:4a:ea dst_mac 02:83:b5:75:36:10 vlan_id 1798 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10389 flower src_mac 02:18:66:b8:59:bc dst_mac 02:d5:e7:1b:2d:03 vlan_id 2700 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10390 flower src_mac 02:83:66:4d:fe:51 dst_mac 02:af:75:8e:d2:c2 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10391 flower src_mac 02:f3:2d:b9:b8:30 dst_mac 02:04:c3:d5:97:8a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10392 flower src_mac 02:0a:d1:80:b0:df dst_mac 02:17:91:f0:88:b7 vlan_id 1867 vlan_ethtype ip src_ip 40.108.117.78 dst_ip 83.111.246.65 ip_proto udp src_port 37240 dst_port 41079 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10393 flower src_mac 02:82:7c:53:d7:14 dst_mac 02:7e:43:27:bd:f6 src_ip 115.182.89.120 dst_ip 38.147.159.188 ip_proto icmp code 96 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10394 flower src_mac 02:85:85:af:bf:d0 dst_mac 02:31:1a:82:53:fd vlan_id 59 vlan_ethtype ipv4 src_ip 77.197.216.146 dst_ip 73.95.19.99 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10395 flower src_mac 02:a6:cb:0e:fa:3a dst_mac 02:31:35:3b:c0:d9 vlan_id 106 vlan_ethtype ip src_ip 126.93.112.242 dst_ip 44.168.180.50 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10396 flower src_mac 02:87:fb:10:fd:5f dst_mac 02:08:86:cb:0e:89 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10397 flower src_mac 02:a4:df:2f:51:bc dst_mac 02:eb:4b:c1:34:9a vlan_id 1980 vlan_ethtype ip src_ip 85.175.168.165 dst_ip 69.212.244.89 ip_proto tcp src_port 7638 dst_port 17766 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10398 flower src_mac 02:39:a4:0e:d5:35 dst_mac 02:6a:5c:b3:b1:ec src_ip 99.228.221.164 dst_ip 80.175.203.80 ip_proto udp src_port 10609 dst_port 35649 action trap && tc filter add dev swp33 ingress protocol ip pref 10399 flower src_mac 02:4d:1d:2d:0a:b4 dst_mac 02:11:a9:b7:1a:5a src_ip 27.95.0.123 dst_ip 97.40.9.151 ip_proto udp src_port 49803 dst_port 65523 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10400 flower src_mac 02:de:b0:f4:10:fb dst_mac 02:2f:05:68:ea:a8 vlan_id 1936 vlan_ethtype ipv4 src_ip 108.80.156.222 dst_ip 50.164.57.190 ip_proto udp src_port 4250 dst_port 51846 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10401 flower src_mac 02:e1:f4:c2:81:d9 dst_mac 02:2e:6d:b8:5e:6c src_ip 47.148.25.64 dst_ip 32.107.71.87 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10402 flower src_mac 02:b2:dc:09:2b:8a dst_mac 02:3b:7d:2e:4d:ab action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10403 flower src_mac 02:27:0d:39:97:1e dst_mac 02:49:02:28:67:8c src_ip 24.70.25.162 dst_ip 109.73.239.134 ip_proto icmp code 143 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10404 flower src_mac 02:5e:ed:bd:5d:99 dst_mac 02:3b:f4:9d:21:5f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10405 flower src_mac 02:9f:e0:ec:96:45 dst_mac 02:8f:87:50:b7:57 vlan_id 1734 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10406 flower src_mac 02:87:d8:38:86:c2 dst_mac 02:d8:3d:20:f0:43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:bb:25:bd:e2:b4 dst_mac 02:dc:3a:f5:3a:f5 vlan_id 1263 vlan_ethtype 0x0800 src_ip 16.241.10.163 dst_ip 97.201.230.233 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:eb:ed:64:41:de dst_mac 02:05:63:59:3c:6f vlan_id 1239 vlan_ethtype ipv4 src_ip 73.126.218.161 dst_ip 50.225.189.203 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10409 flower src_mac 02:33:e5:7f:3c:ac dst_mac 02:7c:7f:c0:6d:ec action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10410 flower src_mac 02:67:97:ae:ad:03 dst_mac 02:49:44:3d:75:81 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10411 flower src_mac 02:96:31:45:bf:ae dst_mac 02:d0:ee:19:6c:5b src_ip 67.32.39.2 dst_ip 16.97.58.103 ip_proto tcp src_port 55389 dst_port 20641 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10412 flower src_mac 02:c6:0d:ba:50:03 dst_mac 02:b0:f4:52:e9:aa vlan_id 849 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10413 flower src_mac 02:a2:77:dc:e3:73 dst_mac 02:29:22:4b:6c:90 src_ip 91.250.152.249 dst_ip 92.191.250.165 ip_proto udp src_port 41851 dst_port 64915 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:f0:09:2e:c6:2a dst_mac 02:a7:69:ce:3a:72 vlan_id 3783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10415 flower src_mac 02:8a:2e:a6:4c:a1 dst_mac 02:d5:53:f2:42:c5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10416 flower src_mac 02:7d:2b:02:22:31 dst_mac 02:c3:ad:fb:1d:d8 vlan_id 2230 vlan_ethtype 0x0800 src_ip 61.177.93.175 dst_ip 43.99.192.65 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10417 flower src_mac 02:3e:4f:4b:b8:0d dst_mac 02:db:0c:00:26:ec src_ip 59.108.135.171 dst_ip 121.210.164.249 ip_proto udp src_port 52826 dst_port 24362 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10418 flower src_mac 02:f0:cc:09:8d:be dst_mac 02:0c:32:4c:ff:2a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10419 flower src_mac 02:38:30:c0:26:34 dst_mac 02:ac:46:22:a4:4c vlan_id 1079 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10420 flower src_mac 02:10:e3:07:a4:f6 dst_mac 02:ac:19:57:5f:4b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10421 flower src_mac 02:51:d7:57:a3:4f dst_mac 02:73:67:f4:b5:03 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10422 flower src_mac 02:1a:e4:10:5d:11 dst_mac 02:b1:3f:20:89:61 src_ip 21.69.152.85 dst_ip 97.181.10.227 ip_proto tcp src_port 44407 dst_port 63180 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:b0:9b:65:00:ed dst_mac 02:0d:b0:f0:6b:0e vlan_id 1913 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10424 flower src_mac 02:66:79:3c:bd:4f dst_mac 02:5b:0b:ae:88:59 src_ip 110.121.26.46 dst_ip 108.194.192.114 ip_proto tcp src_port 7902 dst_port 18732 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10425 flower src_mac 02:24:f7:80:4b:04 dst_mac 02:36:dc:1b:90:c7 src_ip 26.172.0.165 dst_ip 106.165.165.31 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10426 flower src_mac 02:95:86:78:b8:79 dst_mac 02:3e:05:04:36:99 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10427 flower src_mac 02:51:70:54:0f:c9 dst_mac 02:f0:cc:e9:c2:bd src_ip 93.13.121.248 dst_ip 84.207.210.65 ip_proto tcp src_port 21596 dst_port 22112 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:86:87:2f:97:42 dst_mac 02:b9:60:0a:bf:45 vlan_id 154 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10429 flower src_mac 02:6c:0c:6b:84:75 dst_mac 02:ad:7e:ac:4d:f3 src_ip 47.192.62.181 dst_ip 69.80.141.247 ip_proto udp src_port 61510 dst_port 46828 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10430 flower src_mac 02:21:f7:24:44:57 dst_mac 02:11:1b:95:16:ba src_ip 48.235.0.166 dst_ip 38.0.214.205 ip_proto udp src_port 52394 dst_port 49349 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10431 flower src_mac 02:08:e9:22:2a:2a dst_mac 02:62:fc:ec:b8:d9 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10432 flower src_mac 02:fe:9b:45:dd:5c dst_mac 02:e6:3a:99:f2:ce action pass && tc filter add dev swp33 ingress protocol ip pref 10433 flower src_mac 02:46:2d:84:a8:20 dst_mac 02:5e:1f:99:d5:1d src_ip 60.225.8.39 dst_ip 64.51.139.220 ip_proto udp src_port 55679 dst_port 3047 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10434 flower src_mac 02:bc:1a:06:dc:36 dst_mac 02:2f:b3:cf:fc:62 vlan_id 221 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10435 flower src_mac 02:29:0b:17:57:9c dst_mac 02:99:9f:53:6f:58 src_ip 116.98.107.63 dst_ip 48.73.50.64 ip_proto udp src_port 57630 dst_port 19486 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10436 flower src_mac 02:d3:26:ca:48:0f dst_mac 02:16:a0:64:99:5f vlan_id 3928 vlan_ethtype 0x0800 src_ip 72.47.203.218 dst_ip 113.171.172.63 ip_proto tcp src_port 3483 dst_port 27847 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10437 flower src_mac 02:ff:46:10:c5:5b dst_mac 02:fd:09:0e:e9:8d vlan_id 3531 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10438 flower src_mac 02:7e:a4:cf:4f:12 dst_mac 02:ec:ac:25:59:63 vlan_id 345 vlan_ethtype ip src_ip 21.58.83.141 dst_ip 92.143.176.237 ip_proto tcp src_port 65344 dst_port 13499 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10439 flower src_mac 02:05:73:d6:be:93 dst_mac 02:2d:f9:c0:fa:cf src_ip 113.126.72.3 dst_ip 75.126.35.79 ip_proto icmp code 28 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:8a:a8:cd:7b:df dst_mac 02:16:19:38:92:b3 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10441 flower src_mac 02:38:f7:de:b0:bc dst_mac 02:09:ec:cf:f8:b6 src_ip 123.49.98.191 dst_ip 19.68.224.100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10442 flower src_mac 02:2f:37:78:d5:04 dst_mac 02:21:e9:c2:d2:e1 vlan_id 1375 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10443 flower src_mac 02:59:79:4b:30:71 dst_mac 02:90:4a:c6:bc:2b src_ip 104.61.87.92 dst_ip 64.28.80.241 ip_proto tcp src_port 44183 dst_port 6552 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10444 flower src_mac 02:6e:15:1c:7f:a8 dst_mac 02:46:35:cf:67:ef action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:ee:7e:4c:2a:21 dst_mac 02:eb:35:ee:a0:34 vlan_id 3772 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10446 flower src_mac 02:6b:10:fc:c3:f0 dst_mac 02:41:9a:93:01:d5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10447 flower src_mac 02:2d:6a:ed:e2:ef dst_mac 02:a8:ab:17:29:dd vlan_id 3972 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10448 flower src_mac 02:e3:53:d8:96:e0 dst_mac 02:68:6e:68:06:c6 vlan_id 3257 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10449 flower src_mac 02:a4:43:43:b9:30 dst_mac 02:d2:03:c8:95:2b src_ip 41.143.216.209 dst_ip 83.194.165.195 ip_proto icmp code 196 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10450 flower src_mac 02:ac:f7:12:cf:3c dst_mac 02:72:67:fc:1a:67 vlan_id 2799 vlan_ethtype ip src_ip 98.252.140.76 dst_ip 96.180.99.16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10451 flower src_mac 02:f6:4a:02:25:12 dst_mac 02:3b:18:db:08:ca vlan_id 1476 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10452 flower src_mac 02:c6:8e:1f:9d:ec dst_mac 02:3a:b9:fc:00:d7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:09:fc:f3:8b:db dst_mac 02:dd:b3:62:36:50 vlan_id 403 vlan_ethtype 0x0800 src_ip 106.64.178.145 dst_ip 38.109.188.228 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10454 flower src_mac 02:a0:21:8b:bc:21 dst_mac 02:b2:ba:49:12:80 src_ip 83.219.6.101 dst_ip 86.71.25.167 ip_proto icmp code 118 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10455 flower src_mac 02:3d:1f:ad:29:05 dst_mac 02:8a:a3:3c:57:99 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10456 flower src_mac 02:df:58:c6:f3:e3 dst_mac 02:c7:6f:e8:18:0c action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10457 flower src_mac 02:08:07:e4:06:22 dst_mac 02:46:0e:3c:95:98 src_ip 66.98.249.149 dst_ip 55.119.148.246 ip_proto tcp src_port 9547 dst_port 51560 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10458 flower src_mac 02:21:ba:0c:83:27 dst_mac 02:7b:21:c6:6d:e2 vlan_id 1342 vlan_ethtype ip src_ip 114.202.232.31 dst_ip 22.14.221.2 ip_proto udp src_port 26504 dst_port 44790 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10459 flower src_mac 02:31:49:89:e3:b7 dst_mac 02:dc:10:36:a9:9d vlan_id 3640 vlan_ethtype ipv4 src_ip 60.236.184.95 dst_ip 54.244.98.70 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10460 flower src_mac 02:d6:d6:97:5a:a0 dst_mac 02:5e:05:51:6c:47 vlan_id 1138 vlan_ethtype 0x0800 src_ip 68.69.208.128 dst_ip 36.125.14.104 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10461 flower src_mac 02:64:98:93:47:2b dst_mac 02:7a:5e:43:2b:60 vlan_id 175 vlan_ethtype ip src_ip 60.184.55.26 dst_ip 105.252.110.193 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:90:ee:1b:2c:e6 dst_mac 02:b4:19:5a:78:45 vlan_id 395 vlan_ethtype ip src_ip 90.50.128.117 dst_ip 107.131.67.49 action trap && tc filter add dev swp33 ingress protocol ip pref 10463 flower src_mac 02:b0:6c:d7:4b:77 dst_mac 02:e4:dd:9a:8e:bd src_ip 69.2.40.122 dst_ip 78.199.160.19 ip_proto tcp src_port 35852 dst_port 6082 action trap && tc filter add dev swp33 ingress protocol ip pref 10464 flower src_mac 02:72:dd:c9:e2:26 dst_mac 02:8f:12:52:c7:fa src_ip 111.30.2.24 dst_ip 109.125.199.55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10465 flower src_mac 02:da:df:26:22:94 dst_mac 02:9e:d3:d0:77:bb vlan_id 3058 vlan_ethtype ip src_ip 105.232.97.174 dst_ip 94.201.10.196 ip_proto tcp src_port 63792 dst_port 50262 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10466 flower src_mac 02:fb:22:4f:a5:b9 dst_mac 02:87:82:3b:50:98 vlan_id 762 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10467 flower src_mac 02:a4:0a:d7:c1:c6 dst_mac 02:ee:79:4a:4b:b1 action drop && tc filter add dev swp33 ingress protocol ip pref 10468 flower src_mac 02:bb:be:cd:04:ac dst_mac 02:3e:65:f0:30:ac src_ip 76.228.156.151 dst_ip 12.138.10.206 ip_proto tcp src_port 37314 dst_port 55480 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10469 flower src_mac 02:50:a7:7a:4c:95 dst_mac 02:08:6b:c4:a3:f4 vlan_id 4001 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:da:47:bc:7b:d7 dst_mac 02:e4:b8:a3:3d:1e vlan_id 949 vlan_ethtype ip src_ip 97.195.228.133 dst_ip 65.130.71.52 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10471 flower src_mac 02:f2:60:1a:ce:50 dst_mac 02:e2:5a:55:c1:33 vlan_id 1607 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10472 flower src_mac 02:4d:07:ed:42:4c dst_mac 02:7f:af:53:f3:3f src_ip 71.117.122.80 dst_ip 69.88.44.66 ip_proto tcp src_port 12289 dst_port 40327 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10473 flower src_mac 02:d9:bd:79:fd:b7 dst_mac 02:76:e4:d9:78:70 vlan_id 2192 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10474 flower src_mac 02:f4:86:38:ff:30 dst_mac 02:5b:69:56:78:dc vlan_id 3574 vlan_ethtype 0x0800 src_ip 23.133.227.60 dst_ip 28.42.69.103 ip_proto udp src_port 14863 dst_port 38498 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10475 flower src_mac 02:93:5c:5c:ad:2f dst_mac 02:f6:ea:07:3a:8f src_ip 112.241.155.2 dst_ip 39.200.208.9 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10476 flower src_mac 02:88:7f:16:bf:37 dst_mac 02:03:f2:4b:fa:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:37:49:c8:0f:62 dst_mac 02:bc:f0:99:29:6b vlan_id 3827 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10478 flower src_mac 02:c7:b4:07:8c:98 dst_mac 02:99:5e:01:90:82 src_ip 72.254.24.83 dst_ip 60.222.25.151 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10479 flower src_mac 02:4c:57:ec:54:04 dst_mac 02:97:a2:05:5b:c3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10480 flower src_mac 02:55:c1:10:c0:c6 dst_mac 02:e3:97:9f:dc:74 vlan_id 337 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10481 flower src_mac 02:33:4c:45:ce:26 dst_mac 02:42:93:cd:97:d3 vlan_id 299 vlan_ethtype 0x0800 src_ip 103.112.17.132 dst_ip 100.204.151.48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10482 flower src_mac 02:ba:4a:42:8c:ea dst_mac 02:9b:f7:b6:83:cd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10483 flower src_mac 02:02:3e:0d:29:cc dst_mac 02:88:a3:10:d6:cf action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10484 flower src_mac 02:4f:49:89:57:1c dst_mac 02:36:93:0f:83:2a vlan_id 1957 vlan_ethtype ip src_ip 110.221.93.61 dst_ip 34.153.130.98 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10485 flower src_mac 02:ac:d4:f4:82:9e dst_mac 02:77:ad:fa:4d:f1 vlan_id 3207 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10486 flower src_mac 02:9e:86:b4:f3:cb dst_mac 02:1c:1a:6a:4c:af vlan_id 826 vlan_ethtype ipv4 src_ip 78.119.19.225 dst_ip 91.126.75.68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10487 flower src_mac 02:65:f3:c6:52:40 dst_mac 02:2f:38:3e:2d:40 vlan_id 3378 vlan_ethtype 0x0800 src_ip 83.105.238.72 dst_ip 15.109.204.199 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10488 flower src_mac 02:c3:77:4f:85:c0 dst_mac 02:3b:85:08:8e:5a vlan_id 2396 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10489 flower src_mac 02:c6:06:e7:03:ce dst_mac 02:6b:8d:cd:7c:08 action trap && tc filter add dev swp33 ingress protocol ip pref 10490 flower src_mac 02:00:fc:b1:0a:97 dst_mac 02:1e:83:9d:38:ab src_ip 30.215.163.237 dst_ip 40.116.209.177 ip_proto tcp src_port 26518 dst_port 42206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:b1:9f:3e:7a:f7 dst_mac 02:2b:07:b2:d3:4e vlan_id 1335 vlan_ethtype 0x0800 src_ip 28.3.250.243 dst_ip 38.72.84.238 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10492 flower src_mac 02:24:01:3d:1a:93 dst_mac 02:cc:4c:42:31:e9 src_ip 29.224.31.194 dst_ip 100.225.166.71 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10493 flower src_mac 02:90:f9:38:48:a2 dst_mac 02:02:11:40:c7:2d src_ip 57.55.221.224 dst_ip 89.237.26.197 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10494 flower src_mac 02:50:ae:1c:96:a4 dst_mac 02:36:d0:90:df:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10495 flower src_mac 02:6b:ac:50:6c:ad dst_mac 02:7b:56:a2:08:d7 vlan_id 2335 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10496 flower src_mac 02:ca:9f:57:dc:6e dst_mac 02:8e:4f:fc:42:a3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10497 flower src_mac 02:d6:06:8a:93:0c dst_mac 02:f0:76:f6:b8:98 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10498 flower src_mac 02:34:d5:58:34:bb dst_mac 02:ac:f1:e3:dd:c4 vlan_id 2302 vlan_ethtype ipv4 src_ip 78.61.159.51 dst_ip 54.35.44.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:70:75:60:b0:38 dst_mac 02:b4:5d:2a:61:b2 vlan_id 2633 vlan_ethtype ipv4 src_ip 38.3.71.22 dst_ip 76.242.254.49 ip_proto tcp src_port 14953 dst_port 41101 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10500 flower src_mac 02:75:30:75:a0:a8 dst_mac 02:af:c1:72:be:f7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10501 flower src_mac 02:37:4f:a0:f8:3f dst_mac 02:a5:1a:6d:a5:31 vlan_id 2744 vlan_ethtype ipv4 src_ip 40.84.249.25 dst_ip 42.137.216.34 action drop && tc filter add dev swp33 ingress protocol ip pref 10502 flower src_mac 02:dc:b2:c8:e5:15 dst_mac 02:ba:b3:cc:8a:f4 src_ip 51.232.133.181 dst_ip 93.136.186.232 ip_proto icmp code 237 type 5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10503 flower src_mac 02:d9:9e:07:f2:c8 dst_mac 02:a3:ac:b2:05:df vlan_id 2139 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10504 flower src_mac 02:30:41:b8:f4:8f dst_mac 02:34:73:c8:70:ab src_ip 66.37.173.157 dst_ip 91.70.182.125 ip_proto icmp code 37 type 3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10505 flower src_mac 02:08:19:21:e9:c4 dst_mac 02:8f:12:71:86:a2 src_ip 111.125.71.57 dst_ip 111.24.252.13 ip_proto icmp code 207 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10506 flower src_mac 02:38:f1:73:70:27 dst_mac 02:c9:f0:d9:8e:f5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10507 flower src_mac 02:ec:66:dc:44:6e dst_mac 02:76:e8:72:65:d3 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10508 flower src_mac 02:a5:f0:f1:34:93 dst_mac 02:43:98:e9:03:0b src_ip 23.129.72.245 dst_ip 38.62.86.12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10509 flower src_mac 02:c8:1a:3a:62:36 dst_mac 02:38:65:07:02:ba vlan_id 1852 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10510 flower src_mac 02:99:77:8c:7b:2a dst_mac 02:0f:4d:27:b4:ea src_ip 61.172.163.191 dst_ip 98.199.226.234 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10511 flower src_mac 02:07:6f:96:da:4a dst_mac 02:b4:49:f1:0f:f1 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10512 flower src_mac 02:2a:12:9d:44:6b dst_mac 02:16:d9:c6:ea:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:da:c1:e7:11:4b dst_mac 02:6c:c5:71:7b:3f vlan_id 3726 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10514 flower src_mac 02:93:06:25:52:2f dst_mac 02:31:17:0f:a7:98 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10515 flower src_mac 02:60:66:44:66:b0 dst_mac 02:73:ca:5f:fe:79 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10516 flower src_mac 02:41:92:a5:39:ce dst_mac 02:90:a9:d0:3e:39 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10517 flower src_mac 02:07:c2:d1:da:e2 dst_mac 02:16:88:21:bd:f8 vlan_id 477 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10518 flower src_mac 02:c6:0d:af:91:a8 dst_mac 02:9c:ee:3c:57:2c action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10519 flower src_mac 02:e3:87:0e:5d:1f dst_mac 02:0b:a3:51:47:f1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10520 flower src_mac 02:bf:7d:b2:3c:35 dst_mac 02:2b:94:c5:20:29 vlan_id 816 vlan_ethtype 0x0800 src_ip 42.224.85.191 dst_ip 113.153.138.178 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10521 flower src_mac 02:b1:f2:36:a7:aa dst_mac 02:38:90:3f:a7:ef vlan_id 2877 vlan_ethtype ipv4 src_ip 23.63.191.153 dst_ip 110.122.132.75 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10522 flower src_mac 02:ee:65:06:88:1d dst_mac 02:7b:40:41:ef:05 vlan_id 2373 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10523 flower src_mac 02:49:3a:89:e0:93 dst_mac 02:98:81:81:13:47 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10524 flower src_mac 02:9d:11:0d:0d:c1 dst_mac 02:80:d4:93:7e:c4 vlan_id 2841 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10525 flower src_mac 02:51:37:eb:a7:9b dst_mac 02:d9:3f:99:ff:8e vlan_id 2791 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10526 flower src_mac 02:22:10:59:55:d4 dst_mac 02:80:22:ff:8e:72 vlan_id 2941 vlan_ethtype ipv4 src_ip 114.205.79.244 dst_ip 41.120.181.8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10527 flower src_mac 02:7d:62:8d:1e:32 dst_mac 02:30:3b:8d:96:57 vlan_id 3681 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10528 flower src_mac 02:74:10:63:7d:2c dst_mac 02:ea:37:f9:b3:23 vlan_id 3092 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10529 flower src_mac 02:39:b3:da:2c:55 dst_mac 02:35:b1:8c:ae:24 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10530 flower src_mac 02:39:51:cc:a5:df dst_mac 02:d7:d7:fa:2b:f1 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10531 flower src_mac 02:53:a2:12:d2:23 dst_mac 02:d8:2e:78:b1:bc action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10532 flower src_mac 02:a4:54:ba:32:73 dst_mac 02:00:69:4c:f5:fa action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10533 flower src_mac 02:18:fd:36:f0:7d dst_mac 02:d5:87:b6:25:94 vlan_id 694 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:06:bf:8a:6c:a4 dst_mac 02:d3:ee:ae:1c:60 vlan_id 3972 vlan_ethtype ipv4 src_ip 107.1.132.235 dst_ip 50.175.104.28 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10535 flower src_mac 02:08:ab:ff:de:8b dst_mac 02:0d:62:09:19:eb src_ip 57.103.159.111 dst_ip 54.59.28.198 ip_proto tcp src_port 47005 dst_port 21622 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10536 flower src_mac 02:eb:62:16:c7:64 dst_mac 02:c1:f6:90:d6:08 vlan_id 457 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:7e:d3:f9:04:42 dst_mac 02:29:ce:3b:d4:01 vlan_id 1247 vlan_ethtype 0x0800 src_ip 33.110.92.230 dst_ip 91.1.219.171 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10538 flower src_mac 02:24:08:38:91:fb dst_mac 02:90:46:d1:34:e7 src_ip 13.229.46.237 dst_ip 120.162.242.60 ip_proto tcp src_port 2206 dst_port 12344 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10539 flower src_mac 02:9f:3e:59:59:67 dst_mac 02:20:6b:b4:b7:a7 vlan_id 3634 vlan_ethtype ipv4 src_ip 81.181.27.90 dst_ip 80.33.20.24 ip_proto udp src_port 62178 dst_port 5730 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10540 flower src_mac 02:c7:20:0c:be:73 dst_mac 02:85:6a:84:de:54 vlan_id 2558 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10541 flower src_mac 02:1d:a8:ca:d5:d5 dst_mac 02:90:09:60:e1:14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10542 flower src_mac 02:c3:88:0c:4d:b1 dst_mac 02:ff:ea:5a:c5:36 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10543 flower src_mac 02:ca:c1:38:fc:54 dst_mac 02:30:b4:f0:ed:c7 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10544 flower src_mac 02:1f:0f:aa:5f:df dst_mac 02:e5:22:73:4c:d7 src_ip 45.228.129.26 dst_ip 60.25.83.6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:26:68:47:5f:14 dst_mac 02:15:cc:9b:53:e4 vlan_id 1862 vlan_ethtype ipv4 src_ip 125.240.43.78 dst_ip 89.105.80.58 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:f2:ec:ad:88:ae dst_mac 02:45:20:19:e3:c8 vlan_id 2520 vlan_ethtype ip src_ip 91.145.116.140 dst_ip 15.223.183.43 ip_proto tcp src_port 61434 dst_port 178 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10547 flower src_mac 02:a1:7a:53:cb:15 dst_mac 02:7c:72:23:0d:33 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:a1:7f:b6:e9:e1 dst_mac 02:10:84:1f:bb:04 vlan_id 406 vlan_ethtype 0x0800 src_ip 11.95.236.181 dst_ip 65.164.57.2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10549 flower src_mac 02:95:91:76:c7:9e dst_mac 02:7d:f9:20:c1:45 vlan_id 1875 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:c9:65:19:6f:b9 dst_mac 02:54:71:aa:f4:91 vlan_id 2658 vlan_ethtype ipv4 src_ip 50.236.158.195 dst_ip 114.168.140.165 ip_proto tcp src_port 63316 dst_port 44196 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:c2:fe:be:d0:9e dst_mac 02:7f:46:82:e5:5b vlan_id 1055 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10552 flower src_mac 02:c7:24:a0:b8:07 dst_mac 02:a9:5f:dd:05:b9 vlan_id 1958 vlan_ethtype 0x0800 src_ip 39.171.209.52 dst_ip 20.140.240.30 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10553 flower src_mac 02:11:27:78:10:1a dst_mac 02:6f:c5:d1:39:ea vlan_id 2140 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10554 flower src_mac 02:01:b7:5d:a6:00 dst_mac 02:1a:63:c9:70:6b vlan_id 1010 vlan_ethtype ipv4 src_ip 72.177.64.56 dst_ip 99.138.3.233 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10555 flower src_mac 02:b7:3f:d4:22:10 dst_mac 02:ea:f7:d8:8a:96 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10556 flower src_mac 02:f0:29:fa:8f:3a dst_mac 02:17:80:16:43:25 src_ip 65.208.145.71 dst_ip 63.38.182.142 ip_proto tcp src_port 44639 dst_port 39870 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:c4:be:5f:0f:a1 dst_mac 02:31:35:14:c7:72 vlan_id 3483 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10558 flower src_mac 02:4b:ab:76:ca:fa dst_mac 02:fc:e2:f4:44:0d src_ip 64.197.48.6 dst_ip 91.189.111.99 ip_proto icmp code 138 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:54:2a:6f:c0:45 dst_mac 02:24:31:62:29:b6 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10560 flower src_mac 02:dd:95:9f:40:0f dst_mac 02:01:4c:8e:54:bc src_ip 84.253.70.85 dst_ip 99.133.222.58 ip_proto tcp src_port 32431 dst_port 58684 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10561 flower src_mac 02:82:9f:2f:77:73 dst_mac 02:df:87:0b:78:cd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10562 flower src_mac 02:f6:b2:46:ce:09 dst_mac 02:fd:c6:d5:57:a2 vlan_id 1391 vlan_ethtype 0x0800 src_ip 79.2.80.171 dst_ip 109.216.249.45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10563 flower src_mac 02:3d:50:82:ad:22 dst_mac 02:b7:d6:a9:89:8b vlan_id 2594 vlan_ethtype ip src_ip 15.152.217.81 dst_ip 37.238.61.129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10564 flower src_mac 02:f7:19:1f:70:9d dst_mac 02:a8:f7:ea:ff:23 vlan_id 559 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10565 flower src_mac 02:fa:89:24:41:1c dst_mac 02:f9:72:f0:8b:92 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10566 flower src_mac 02:b4:5f:25:30:1c dst_mac 02:3f:4b:e3:d5:60 src_ip 11.86.112.29 dst_ip 83.220.87.33 ip_proto udp src_port 2546 dst_port 23004 action pass && tc filter add dev swp33 ingress protocol ip pref 10567 flower src_mac 02:32:36:c1:53:78 dst_mac 02:c4:8a:98:1d:ac src_ip 83.54.131.28 dst_ip 94.136.205.23 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10568 flower src_mac 02:19:ed:16:32:46 dst_mac 02:fa:06:a4:ac:8b src_ip 27.168.61.135 dst_ip 123.87.161.209 ip_proto icmp code 176 type 14 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10569 flower src_mac 02:68:93:82:19:68 dst_mac 02:7c:9e:c8:79:00 vlan_id 2943 vlan_ethtype ip src_ip 122.245.236.80 dst_ip 52.70.96.139 ip_proto udp src_port 55579 dst_port 60495 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:49:46:c1:de:f8 dst_mac 02:ee:33:c4:25:36 vlan_id 2939 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10571 flower src_mac 02:05:a9:1b:4e:8f dst_mac 02:0e:54:16:20:c6 vlan_id 3898 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10572 flower src_mac 02:b3:cc:81:41:29 dst_mac 02:86:b7:34:e5:f1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10573 flower src_mac 02:a8:b3:63:1c:ef dst_mac 02:8a:11:1b:cf:62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10574 flower src_mac 02:8c:04:e4:16:73 dst_mac 02:d5:ff:f1:fb:f2 vlan_id 1043 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10575 flower src_mac 02:bd:2a:29:71:40 dst_mac 02:1b:7b:e1:67:0b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10576 flower src_mac 02:6b:3a:bd:cc:f6 dst_mac 02:b4:2d:41:a6:3b src_ip 60.89.43.226 dst_ip 40.88.202.120 ip_proto tcp src_port 6372 dst_port 28651 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10577 flower src_mac 02:b8:ce:e8:7d:d4 dst_mac 02:f5:20:cb:58:40 vlan_id 1138 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10578 flower src_mac 02:34:76:9a:11:42 dst_mac 02:fe:16:b5:d8:63 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10579 flower src_mac 02:8d:1e:eb:8c:c5 dst_mac 02:57:7f:10:bf:06 vlan_id 2449 vlan_ethtype 0x0800 src_ip 39.33.100.78 dst_ip 101.33.113.96 ip_proto tcp src_port 59551 dst_port 58720 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10580 flower src_mac 02:b5:fc:11:44:58 dst_mac 02:08:c5:28:16:73 vlan_id 3779 vlan_ethtype ipv4 src_ip 85.197.50.66 dst_ip 104.138.104.199 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10581 flower src_mac 02:94:cc:a3:70:ab dst_mac 02:50:3d:26:e4:b2 vlan_id 1035 vlan_ethtype ip src_ip 74.17.44.145 dst_ip 95.10.45.58 ip_proto tcp src_port 12187 dst_port 1097 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10582 flower src_mac 02:25:7f:f6:d6:b8 dst_mac 02:41:a6:c9:b5:09 vlan_id 1584 vlan_ethtype ipv4 src_ip 73.187.222.3 dst_ip 35.18.41.224 ip_proto udp src_port 27534 dst_port 55468 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:7e:e2:e9:0d:25 dst_mac 02:cf:ed:f8:59:f1 vlan_id 3038 vlan_ethtype 0x0800 src_ip 125.120.133.233 dst_ip 70.200.86.196 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10584 flower src_mac 02:f3:b5:52:3d:de dst_mac 02:8f:a5:3c:b6:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10585 flower src_mac 02:0f:cb:e3:10:54 dst_mac 02:cd:b9:c6:23:a7 vlan_id 3062 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10586 flower src_mac 02:28:b9:5d:ba:8e dst_mac 02:fa:88:32:f8:14 vlan_id 3446 vlan_ethtype ipv4 src_ip 66.78.234.154 dst_ip 109.38.189.227 ip_proto udp src_port 54218 dst_port 18426 action pass && tc filter add dev swp33 ingress protocol ip pref 10587 flower src_mac 02:26:f2:65:60:72 dst_mac 02:a1:7e:43:a8:0d src_ip 84.193.172.116 dst_ip 115.240.183.26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10588 flower src_mac 02:f1:57:8a:8c:88 dst_mac 02:14:4a:bb:6f:33 vlan_id 849 vlan_ethtype ip src_ip 92.141.110.39 dst_ip 34.70.132.204 ip_proto tcp src_port 55663 dst_port 64509 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10589 flower src_mac 02:03:f2:a7:d5:f7 dst_mac 02:57:5e:21:5b:d9 vlan_id 272 vlan_ethtype ipv4 src_ip 119.8.143.247 dst_ip 88.211.21.232 ip_proto udp src_port 60288 dst_port 52106 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10590 flower src_mac 02:d9:0e:4c:fc:76 dst_mac 02:f4:00:30:60:62 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10591 flower src_mac 02:f1:f0:65:43:a1 dst_mac 02:aa:ba:60:89:c2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10592 flower src_mac 02:ff:61:bb:1e:b3 dst_mac 02:e2:62:0e:5d:9d vlan_id 2733 vlan_ethtype 0x0800 src_ip 89.135.235.207 dst_ip 83.199.197.249 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10593 flower src_mac 02:2f:a6:34:42:1e dst_mac 02:68:cf:b5:22:68 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10594 flower src_mac 02:4b:16:13:01:29 dst_mac 02:93:43:fc:c3:06 src_ip 110.89.83.91 dst_ip 20.151.240.210 ip_proto tcp src_port 44083 dst_port 54629 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10595 flower src_mac 02:b5:e2:89:0f:dc dst_mac 02:a5:9e:ad:38:b7 vlan_id 1453 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10596 flower src_mac 02:bc:59:44:a4:d8 dst_mac 02:27:f0:0c:36:96 src_ip 58.78.148.166 dst_ip 109.141.237.13 ip_proto tcp src_port 2882 dst_port 3008 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10597 flower src_mac 02:35:a7:37:d5:0e dst_mac 02:c5:7e:0d:62:f7 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10598 flower src_mac 02:a7:9e:f2:8c:72 dst_mac 02:3c:77:ff:f0:18 src_ip 21.174.139.127 dst_ip 87.96.99.123 ip_proto udp src_port 23982 dst_port 24942 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10599 flower src_mac 02:74:ad:bd:fb:a3 dst_mac 02:84:c1:d2:1d:01 src_ip 27.104.155.47 dst_ip 44.13.179.78 ip_proto icmp code 47 type 13 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10600 flower src_mac 02:cb:f1:d3:82:86 dst_mac 02:85:58:15:23:3e src_ip 42.191.209.19 dst_ip 24.82.21.236 ip_proto icmp code 51 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:03:c2:09:b4:07 dst_mac 02:69:fd:c7:07:fe vlan_id 945 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10602 flower src_mac 02:4a:a5:d2:ba:f8 dst_mac 02:a8:06:4c:6c:4e vlan_id 1129 vlan_ethtype 0x0800 src_ip 93.221.234.60 dst_ip 44.213.229.189 ip_proto tcp src_port 16887 dst_port 50736 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10603 flower src_mac 02:ff:2d:e7:b2:55 dst_mac 02:38:00:9a:7f:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:86:7c:3c:88:ef dst_mac 02:eb:ba:a1:f4:8b vlan_id 3023 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10605 flower src_mac 02:78:c6:77:c9:e4 dst_mac 02:17:8c:92:c6:8f vlan_id 61 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10606 flower src_mac 02:54:2a:50:98:44 dst_mac 02:ec:ae:e4:d7:84 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10607 flower src_mac 02:a0:1f:37:92:cf dst_mac 02:a4:21:8e:2f:50 vlan_id 1339 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10608 flower src_mac 02:d0:fe:1a:68:c6 dst_mac 02:33:cd:49:a4:bc action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10609 flower src_mac 02:16:8f:04:80:2a dst_mac 02:77:75:57:53:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:b8:e4:8b:9c:20 dst_mac 02:d6:01:6b:9e:9a vlan_id 3283 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10611 flower src_mac 02:28:8b:44:11:2c dst_mac 02:21:a1:7b:7b:4d vlan_id 3790 vlan_ethtype ip src_ip 59.203.235.39 dst_ip 41.70.123.68 ip_proto udp src_port 20339 dst_port 1453 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10612 flower src_mac 02:f2:26:26:19:d8 dst_mac 02:4a:63:be:8b:fa src_ip 14.8.66.24 dst_ip 80.101.123.123 ip_proto icmp code 197 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10613 flower src_mac 02:40:03:f5:de:0b dst_mac 02:c7:76:eb:dc:49 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10614 flower src_mac 02:e7:dc:4e:5c:87 dst_mac 02:06:45:35:2e:f8 src_ip 79.77.13.158 dst_ip 109.115.205.40 ip_proto udp src_port 27522 dst_port 60691 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10615 flower src_mac 02:3a:0d:9c:81:a0 dst_mac 02:55:8a:52:7c:e4 src_ip 27.245.26.164 dst_ip 49.55.69.115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:6e:14:e6:19:58 dst_mac 02:73:a0:7c:fc:16 vlan_id 1924 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10617 flower src_mac 02:1c:fb:4e:42:33 dst_mac 02:73:1e:dd:20:1c action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10618 flower src_mac 02:79:76:af:61:e6 dst_mac 02:6f:58:95:9c:3e src_ip 33.170.138.134 dst_ip 123.190.43.182 ip_proto udp src_port 7328 dst_port 28949 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10619 flower src_mac 02:a9:e2:a3:ee:e5 dst_mac 02:1c:cb:3d:3a:04 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10620 flower src_mac 02:71:2a:98:9b:f3 dst_mac 02:8e:ab:1d:2f:76 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10621 flower src_mac 02:bd:ad:f8:52:9a dst_mac 02:5b:f4:ef:3b:e5 src_ip 90.197.53.47 dst_ip 109.224.133.71 ip_proto icmp code 42 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10622 flower src_mac 02:7a:a2:1b:33:0e dst_mac 02:4f:d7:c4:95:0e vlan_id 2660 vlan_ethtype 0x0800 src_ip 96.66.202.44 dst_ip 119.147.13.47 ip_proto udp src_port 45257 dst_port 55296 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10623 flower src_mac 02:dd:27:ef:a8:46 dst_mac 02:d4:e7:e0:ae:2f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10624 flower src_mac 02:71:83:c4:5c:d3 dst_mac 02:16:be:be:91:34 vlan_id 2987 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10625 flower src_mac 02:10:d7:16:bd:e6 dst_mac 02:49:a2:fc:40:77 src_ip 87.232.223.92 dst_ip 52.198.140.48 ip_proto icmp code 247 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:e3:6b:c3:2f:95 dst_mac 02:88:b9:2a:c0:8a vlan_id 3112 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10627 flower src_mac 02:49:84:d8:3e:fb dst_mac 02:56:fa:f1:10:21 src_ip 42.219.51.4 dst_ip 49.53.77.229 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10628 flower src_mac 02:e9:e1:b2:7f:79 dst_mac 02:c7:07:4b:81:a1 vlan_id 840 vlan_ethtype ip src_ip 121.181.34.236 dst_ip 48.167.134.73 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a8:99:44:57:19 dst_mac 02:70:19:d9:c3:94 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10630 flower src_mac 02:1a:69:41:49:97 dst_mac 02:a3:68:50:a5:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10631 flower src_mac 02:6f:05:8d:99:dc dst_mac 02:79:fc:0a:5f:aa vlan_id 1172 vlan_ethtype ip src_ip 93.113.238.94 dst_ip 71.193.170.86 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10632 flower src_mac 02:81:bc:da:f1:8f dst_mac 02:ef:99:01:d0:49 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:5f:09:72:2d:36 dst_mac 02:87:b9:f4:6f:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10634 flower src_mac 02:3d:c1:07:e9:02 dst_mac 02:cb:4d:48:c4:66 vlan_id 3783 vlan_ethtype ipv4 src_ip 118.121.236.63 dst_ip 98.24.109.30 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10635 flower src_mac 02:d4:f1:1c:23:8a dst_mac 02:0e:9b:bd:9d:6a vlan_id 2951 vlan_ethtype ip src_ip 79.213.46.90 dst_ip 104.146.40.126 ip_proto tcp src_port 30673 dst_port 59933 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10636 flower src_mac 02:d4:d5:46:31:fc dst_mac 02:6a:fc:b0:b0:65 src_ip 83.103.110.46 dst_ip 115.100.231.97 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10637 flower src_mac 02:71:88:0d:ec:ba dst_mac 02:98:b6:12:b9:1d vlan_id 1875 vlan_ethtype ip src_ip 85.73.194.81 dst_ip 55.177.240.92 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10638 flower src_mac 02:a6:46:9a:12:8f dst_mac 02:fb:d2:11:1e:02 vlan_id 597 vlan_ethtype 0x0800 src_ip 100.161.92.67 dst_ip 84.86.242.95 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10639 flower src_mac 02:f4:7e:ad:13:7d dst_mac 02:8f:7e:6b:b0:5c vlan_id 1937 vlan_ethtype ip src_ip 29.113.87.29 dst_ip 103.230.85.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:70:57:bc:ec:2b dst_mac 02:75:b3:06:96:85 vlan_id 2784 vlan_ethtype ip src_ip 55.103.221.38 dst_ip 20.207.181.3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10641 flower src_mac 02:22:31:62:dd:95 dst_mac 02:0a:50:79:4a:ce action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10642 flower src_mac 02:d7:15:eb:56:1b dst_mac 02:05:02:24:e8:fd vlan_id 976 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10643 flower src_mac 02:33:5c:21:66:82 dst_mac 02:0d:d6:a5:4a:c2 vlan_id 3350 vlan_ethtype 0x0800 src_ip 63.167.91.24 dst_ip 46.34.6.83 action pass && tc filter add dev swp33 ingress protocol ip pref 10644 flower src_mac 02:30:fd:96:3c:0f dst_mac 02:f6:a1:13:d0:cd src_ip 39.27.68.63 dst_ip 31.134.36.130 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10645 flower src_mac 02:0e:94:91:16:27 dst_mac 02:76:84:40:78:83 vlan_id 1369 vlan_ethtype 0x0800 src_ip 39.36.48.200 dst_ip 23.100.168.143 ip_proto tcp src_port 48290 dst_port 15309 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10646 flower src_mac 02:c8:13:c1:c5:ce dst_mac 02:0c:c9:4a:7a:8a src_ip 111.95.94.183 dst_ip 67.18.42.232 ip_proto icmp code 9 type 0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10647 flower src_mac 02:3b:37:bf:b1:c4 dst_mac 02:54:f1:93:dd:19 src_ip 51.53.204.215 dst_ip 60.21.98.43 ip_proto icmp code 120 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10648 flower src_mac 02:71:30:71:40:ec dst_mac 02:d1:70:c8:47:44 src_ip 121.9.150.140 dst_ip 113.152.7.177 ip_proto icmp code 32 type 15 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10649 flower src_mac 02:38:d7:3a:b8:90 dst_mac 02:66:32:d0:7f:cc src_ip 74.128.72.215 dst_ip 110.82.222.45 ip_proto udp src_port 58589 dst_port 55659 action pass && tc filter add dev swp33 ingress protocol ip pref 10650 flower src_mac 02:8c:31:1e:0f:1b dst_mac 02:a6:2c:d2:dd:3b src_ip 54.14.250.172 dst_ip 40.62.236.187 ip_proto icmp code 208 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10651 flower src_mac 02:80:0a:d4:18:14 dst_mac 02:af:29:9a:6f:05 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10652 flower src_mac 02:4f:4e:94:48:28 dst_mac 02:ec:96:42:cb:9b src_ip 96.108.179.58 dst_ip 94.87.181.155 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:dc:c3:17:93:19 dst_mac 02:bf:95:d7:d1:ae vlan_id 2344 vlan_ethtype 0x0800 src_ip 36.133.55.185 dst_ip 90.204.144.35 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:38:48:7c:33:fc dst_mac 02:8a:be:e8:23:0d vlan_id 2947 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10655 flower src_mac 02:e6:ac:d4:fb:1f dst_mac 02:41:51:c7:df:46 vlan_id 540 vlan_ethtype ip src_ip 68.76.51.100 dst_ip 113.120.182.212 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10656 flower src_mac 02:cd:91:93:2a:36 dst_mac 02:a4:36:af:09:5c src_ip 32.220.195.95 dst_ip 14.112.224.56 ip_proto udp src_port 59799 dst_port 43158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10657 flower src_mac 02:99:49:61:a6:e5 dst_mac 02:af:36:23:f5:40 vlan_id 2739 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10658 flower src_mac 02:52:2c:5c:0e:c2 dst_mac 02:f6:4a:1a:9d:8e vlan_id 2171 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10659 flower src_mac 02:37:55:0e:9b:28 dst_mac 02:4c:bb:95:7a:03 src_ip 82.253.79.148 dst_ip 47.254.130.168 ip_proto udp src_port 47386 dst_port 22794 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10660 flower src_mac 02:ee:a1:1f:be:2f dst_mac 02:8d:74:01:f2:4e vlan_id 2529 vlan_ethtype ipv4 src_ip 105.48.208.44 dst_ip 43.255.121.215 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10661 flower src_mac 02:74:25:7a:80:39 dst_mac 02:4d:29:7d:3b:fb vlan_id 420 vlan_ethtype ip src_ip 80.144.164.54 dst_ip 50.87.76.173 ip_proto tcp src_port 9890 dst_port 48807 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10662 flower src_mac 02:cd:8a:f3:67:93 dst_mac 02:07:e6:47:26:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10663 flower src_mac 02:db:c4:28:be:04 dst_mac 02:73:b2:59:17:eb vlan_id 357 vlan_ethtype 0x0800 src_ip 28.188.46.197 dst_ip 111.124.159.72 ip_proto tcp src_port 15414 dst_port 62055 action drop && tc filter add dev swp33 ingress protocol ip pref 10664 flower src_mac 02:8f:bc:77:12:fc dst_mac 02:4a:74:d1:29:e6 src_ip 48.97.159.123 dst_ip 56.176.156.179 ip_proto udp src_port 36352 dst_port 3920 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10665 flower src_mac 02:df:50:ce:b9:8f dst_mac 02:39:f3:5e:79:06 vlan_id 3373 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10666 flower src_mac 02:69:80:30:3a:34 dst_mac 02:9c:67:ea:73:b8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10667 flower src_mac 02:a4:6e:2d:23:8a dst_mac 02:9c:82:79:54:02 vlan_id 2394 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10668 flower src_mac 02:3e:b8:81:ce:e5 dst_mac 02:4f:da:5e:87:b2 vlan_id 2767 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10669 flower src_mac 02:d1:de:ba:4a:c1 dst_mac 02:c9:f0:65:a2:3e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10670 flower src_mac 02:9c:71:16:5a:00 dst_mac 02:e4:d0:52:a3:90 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10671 flower src_mac 02:b0:7a:67:ea:b6 dst_mac 02:67:4a:b3:3e:6d src_ip 17.100.87.105 dst_ip 17.205.226.78 ip_proto udp src_port 51081 dst_port 34477 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10672 flower src_mac 02:9e:85:f0:35:f0 dst_mac 02:f8:f8:38:52:b2 vlan_id 2797 vlan_ethtype ip src_ip 54.95.27.192 dst_ip 118.128.109.69 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10673 flower src_mac 02:58:d2:e9:d2:77 dst_mac 02:6e:c1:cb:70:d1 src_ip 31.227.150.60 dst_ip 100.3.97.207 action trap && tc filter add dev swp33 ingress protocol ip pref 10674 flower src_mac 02:9d:90:2a:28:55 dst_mac 02:64:35:35:10:fd src_ip 107.33.158.134 dst_ip 76.188.130.56 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10675 flower src_mac 02:16:72:c2:f4:98 dst_mac 02:00:fc:92:50:e5 src_ip 72.184.193.247 dst_ip 80.144.31.228 ip_proto udp src_port 24940 dst_port 9671 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10676 flower src_mac 02:eb:09:b5:e5:75 dst_mac 02:2b:7d:cf:97:52 vlan_id 693 vlan_ethtype ip src_ip 55.119.165.73 dst_ip 54.120.246.126 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10677 flower src_mac 02:31:05:34:1e:0c dst_mac 02:9f:6e:79:e9:cf src_ip 23.75.95.140 dst_ip 22.151.87.94 ip_proto tcp src_port 46881 dst_port 1467 action drop && tc filter add dev swp33 ingress protocol ip pref 10678 flower src_mac 02:a5:fb:f1:ce:c4 dst_mac 02:9c:85:1c:92:15 src_ip 17.106.179.126 dst_ip 55.94.226.206 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10679 flower src_mac 02:21:0a:54:2f:55 dst_mac 02:5c:dc:e0:e0:4c vlan_id 448 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10680 flower src_mac 02:40:32:15:65:b6 dst_mac 02:dc:b4:36:77:63 vlan_id 2481 vlan_ethtype ip src_ip 59.63.244.60 dst_ip 125.118.115.104 ip_proto tcp src_port 63822 dst_port 1115 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10681 flower src_mac 02:71:f5:4f:7c:5f dst_mac 02:c0:25:03:ae:79 vlan_id 3927 vlan_ethtype ipv4 src_ip 26.245.142.182 dst_ip 119.179.99.179 ip_proto udp src_port 1323 dst_port 22367 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10682 flower src_mac 02:fd:f4:d7:70:91 dst_mac 02:59:85:fb:b0:27 src_ip 49.70.13.207 dst_ip 31.10.239.26 ip_proto udp src_port 61967 dst_port 41562 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10683 flower src_mac 02:1e:45:2a:e3:ad dst_mac 02:8f:c9:a6:42:5f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10684 flower src_mac 02:53:7d:14:ae:20 dst_mac 02:20:66:ca:d5:4b vlan_id 962 vlan_ethtype ipv4 src_ip 100.5.202.106 dst_ip 81.4.27.194 ip_proto tcp src_port 33474 dst_port 2407 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10685 flower src_mac 02:c4:2e:99:dd:11 dst_mac 02:91:b9:ee:64:cd vlan_id 534 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10686 flower src_mac 02:5e:47:70:56:f3 dst_mac 02:76:21:6d:5d:6d src_ip 118.145.83.94 dst_ip 42.109.78.74 ip_proto udp src_port 54011 dst_port 57019 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10687 flower src_mac 02:7a:1d:c9:b6:7e dst_mac 02:4c:c3:9e:38:7c vlan_id 731 vlan_ethtype ip src_ip 116.60.200.234 dst_ip 85.139.214.105 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10688 flower src_mac 02:d4:a1:a8:72:af dst_mac 02:16:1b:b8:1b:47 vlan_id 105 vlan_ethtype ip src_ip 119.239.48.125 dst_ip 122.160.128.144 ip_proto tcp src_port 22357 dst_port 54867 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10689 flower src_mac 02:f2:e3:33:52:71 dst_mac 02:4c:3e:41:8a:e5 vlan_id 1717 vlan_ethtype ip src_ip 41.8.94.77 dst_ip 75.191.154.21 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10690 flower src_mac 02:fa:32:55:d8:c5 dst_mac 02:2a:48:ac:5e:2b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:3a:ee:c0:90:f9 dst_mac 02:f8:8a:2c:d3:a4 vlan_id 3559 vlan_ethtype 0x0800 src_ip 103.218.227.204 dst_ip 98.41.209.206 ip_proto tcp src_port 56646 dst_port 38545 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10692 flower src_mac 02:e8:f4:c9:d5:55 dst_mac 02:9c:b3:a9:5a:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10693 flower src_mac 02:92:19:bd:1b:55 dst_mac 02:51:c4:9f:f6:4f vlan_id 2555 vlan_ethtype ipv4 src_ip 107.122.104.42 dst_ip 118.190.56.9 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10694 flower src_mac 02:dc:ce:c2:58:8a dst_mac 02:c2:87:5a:69:d0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10695 flower src_mac 02:f3:67:07:50:53 dst_mac 02:00:a9:52:56:75 vlan_id 3131 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10696 flower src_mac 02:f8:7e:21:6f:24 dst_mac 02:ed:01:a4:57:cf src_ip 69.47.47.172 dst_ip 45.222.253.17 ip_proto tcp src_port 12513 dst_port 28187 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10697 flower src_mac 02:a6:f5:c6:bb:81 dst_mac 02:b8:a6:fb:96:c8 vlan_id 3619 vlan_ethtype ip src_ip 21.5.107.19 dst_ip 95.234.80.102 ip_proto udp src_port 31188 dst_port 110 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10698 flower src_mac 02:c4:af:94:e7:ca dst_mac 02:a9:4c:09:ac:f9 vlan_id 3599 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:c3:2a:54:b9:be dst_mac 02:b9:63:8c:83:35 vlan_id 2318 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10700 flower src_mac 02:7f:7e:7d:d5:2d dst_mac 02:6e:6b:7a:ca:0d src_ip 39.238.205.155 dst_ip 112.72.28.239 ip_proto icmp code 17 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10701 flower src_mac 02:7a:86:c8:b2:c9 dst_mac 02:36:c4:9f:1b:f5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10702 flower src_mac 02:29:ca:91:61:7d dst_mac 02:31:3d:4b:48:83 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10703 flower src_mac 02:18:ab:0c:b4:2e dst_mac 02:7c:27:51:8e:40 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10704 flower src_mac 02:30:c0:1c:c2:9b dst_mac 02:30:b5:96:a8:7a vlan_id 1658 vlan_ethtype 0x0800 src_ip 50.76.91.249 dst_ip 37.160.94.73 ip_proto tcp src_port 33241 dst_port 22312 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10705 flower src_mac 02:0c:8c:f3:8f:ea dst_mac 02:35:c9:4a:57:bd vlan_id 3482 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10706 flower src_mac 02:cd:68:22:5e:6e dst_mac 02:8d:88:6b:04:e2 vlan_id 3424 vlan_ethtype 0x0800 src_ip 42.13.10.2 dst_ip 18.116.53.197 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10707 flower src_mac 02:70:83:52:65:ef dst_mac 02:c1:0c:e9:53:91 src_ip 92.247.138.60 dst_ip 77.210.214.8 ip_proto udp src_port 39899 dst_port 22407 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10708 flower src_mac 02:43:ec:fa:5a:32 dst_mac 02:4c:f8:5f:4d:61 vlan_id 3900 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10709 flower src_mac 02:e7:85:48:f0:e3 dst_mac 02:44:26:86:a1:1d action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10710 flower src_mac 02:7b:49:f8:04:7c dst_mac 02:81:96:d8:15:68 src_ip 46.205.166.137 dst_ip 53.99.67.6 ip_proto icmp code 152 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10711 flower src_mac 02:1a:c1:74:16:0d dst_mac 02:dc:8c:09:84:09 vlan_id 2349 vlan_ethtype ipv4 src_ip 103.13.132.2 dst_ip 57.22.154.71 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10712 flower src_mac 02:91:13:6c:fc:86 dst_mac 02:45:93:70:55:c8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10713 flower src_mac 02:8d:2e:a2:10:3e dst_mac 02:93:76:7a:11:3e vlan_id 814 vlan_ethtype 0x0800 src_ip 12.88.109.107 dst_ip 53.179.205.202 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10714 flower src_mac 02:e2:77:2b:07:3b dst_mac 02:b6:a9:6b:b5:f0 vlan_id 888 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10715 flower src_mac 02:f5:8f:4b:3b:9a dst_mac 02:b9:7e:44:93:32 src_ip 60.253.12.152 dst_ip 53.18.98.19 ip_proto tcp src_port 37910 dst_port 40679 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10716 flower src_mac 02:b4:b9:bc:28:fe dst_mac 02:c5:bd:9d:2d:ec action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10717 flower src_mac 02:82:47:9f:b7:66 dst_mac 02:86:71:cb:ee:06 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10718 flower src_mac 02:33:b3:a0:6d:b0 dst_mac 02:7b:48:95:32:dc vlan_id 2971 vlan_ethtype 0x0800 src_ip 119.16.48.151 dst_ip 58.163.173.93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10719 flower src_mac 02:5a:65:5d:d7:fc dst_mac 02:3f:99:86:9e:cb vlan_id 2892 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10720 flower src_mac 02:89:61:dd:bb:83 dst_mac 02:8e:1e:7f:2e:05 src_ip 34.22.159.188 dst_ip 49.106.178.175 ip_proto udp src_port 28374 dst_port 59987 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10721 flower src_mac 02:08:fa:9a:e5:e6 dst_mac 02:47:7e:82:c5:c5 src_ip 56.252.253.157 dst_ip 11.233.158.133 ip_proto tcp src_port 43869 dst_port 37286 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10722 flower src_mac 02:f0:98:dd:28:35 dst_mac 02:90:b4:3f:e6:06 vlan_id 196 vlan_ethtype ip src_ip 76.241.211.33 dst_ip 106.14.235.98 ip_proto tcp src_port 5805 dst_port 49001 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10723 flower src_mac 02:13:f4:2e:74:31 dst_mac 02:ba:a8:6a:58:23 vlan_id 1129 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10724 flower src_mac 02:25:c0:33:03:3a dst_mac 02:39:2f:09:ac:53 src_ip 15.24.0.60 dst_ip 36.38.168.118 ip_proto icmp code 184 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10725 flower src_mac 02:12:ba:e3:1f:aa dst_mac 02:8a:d8:dc:05:04 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10726 flower src_mac 02:98:3d:89:ce:a1 dst_mac 02:e5:9d:fb:11:e4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10727 flower src_mac 02:41:aa:99:9f:21 dst_mac 02:d6:47:9d:8c:79 vlan_id 354 vlan_ethtype ip src_ip 50.25.103.167 dst_ip 30.179.2.35 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10728 flower src_mac 02:d7:8f:88:db:f1 dst_mac 02:27:a7:39:28:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:bf:3d:fe:70:ec dst_mac 02:d1:33:30:1f:14 vlan_id 1270 vlan_ethtype 0x0800 src_ip 55.205.69.180 dst_ip 124.8.235.167 ip_proto tcp src_port 49341 dst_port 15332 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10730 flower src_mac 02:e8:f0:c9:e8:21 dst_mac 02:41:c8:a4:00:67 vlan_id 106 vlan_ethtype ipv4 src_ip 16.140.91.53 dst_ip 63.183.39.144 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10731 flower src_mac 02:87:75:ec:55:39 dst_mac 02:a1:5d:95:f2:99 vlan_id 2606 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10732 flower src_mac 02:a0:ce:12:df:4f dst_mac 02:87:a4:d8:a7:3a src_ip 48.122.127.193 dst_ip 36.141.200.90 ip_proto icmp code 211 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10733 flower src_mac 02:2f:fc:83:e9:4c dst_mac 02:23:0f:e6:bf:fd vlan_id 2620 vlan_ethtype ipv4 src_ip 77.43.45.110 dst_ip 24.165.197.157 ip_proto udp src_port 33489 dst_port 40871 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10734 flower src_mac 02:10:d2:82:33:39 dst_mac 02:ef:40:67:01:ad src_ip 108.217.244.229 dst_ip 125.207.193.95 ip_proto icmp code 123 type 8 action pass && tc filter add dev swp33 ingress protocol ip pref 10735 flower src_mac 02:a5:55:53:85:fd dst_mac 02:9b:55:89:ce:f0 src_ip 44.99.2.24 dst_ip 70.47.214.111 ip_proto udp src_port 53035 dst_port 17778 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10736 flower src_mac 02:64:79:c5:07:4b dst_mac 02:b6:d0:10:2f:02 vlan_id 1143 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10737 flower src_mac 02:c1:f0:33:e7:d0 dst_mac 02:f2:a0:39:9d:3c action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:ab:80:74:f6:bc dst_mac 02:86:a8:38:a3:86 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10739 flower src_mac 02:f9:e9:46:79:aa dst_mac 02:ef:b3:7e:c6:f7 src_ip 27.140.49.78 dst_ip 35.113.110.42 ip_proto udp src_port 51107 dst_port 60409 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10740 flower src_mac 02:32:aa:dd:03:a6 dst_mac 02:9c:60:42:e8:04 vlan_id 560 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10741 flower src_mac 02:a9:be:7f:83:42 dst_mac 02:7d:3a:34:9a:b0 vlan_id 3577 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10742 flower src_mac 02:5b:8b:0f:96:50 dst_mac 02:27:a0:12:e4:c2 vlan_id 2056 vlan_ethtype 0x0800 src_ip 19.9.75.45 dst_ip 84.84.55.24 ip_proto tcp src_port 18494 dst_port 51926 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:d5:e4:89:c1:d8 dst_mac 02:9c:64:66:12:45 vlan_id 906 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10744 flower src_mac 02:ac:59:90:e0:82 dst_mac 02:44:d0:ae:b1:3b src_ip 16.159.145.59 dst_ip 88.150.107.30 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10745 flower src_mac 02:29:33:41:fe:ef dst_mac 02:71:08:8d:89:d4 vlan_id 1823 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:da:ad:66:ff:a6 dst_mac 02:3f:96:ac:35:f5 vlan_id 1906 vlan_ethtype 0x0800 src_ip 25.207.47.188 dst_ip 89.109.206.90 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10747 flower src_mac 02:0b:ac:db:82:7a dst_mac 02:2c:39:8a:41:b2 src_ip 44.66.9.223 dst_ip 18.149.149.49 ip_proto icmp code 105 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10748 flower src_mac 02:a7:54:d5:ed:a7 dst_mac 02:80:c8:fa:15:18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10749 flower src_mac 02:00:77:ce:9b:bd dst_mac 02:d5:2e:68:b3:3b vlan_id 632 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:9d:f6:07:73:a8 dst_mac 02:6d:01:db:1b:6d vlan_id 2721 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10751 flower src_mac 02:30:18:e8:0c:b5 dst_mac 02:84:c2:3d:0f:a5 src_ip 101.128.182.69 dst_ip 24.178.188.47 ip_proto tcp src_port 16734 dst_port 64508 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10752 flower src_mac 02:d5:96:4b:58:be dst_mac 02:af:0b:4a:57:2b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10753 flower src_mac 02:fd:cb:59:c8:3c dst_mac 02:f8:cb:e1:d1:be action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:7a:83:2c:2a:23 dst_mac 02:7d:74:9a:03:22 vlan_id 784 vlan_ethtype ip src_ip 22.91.202.86 dst_ip 79.124.164.68 ip_proto udp src_port 59238 dst_port 21198 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10755 flower src_mac 02:01:e8:72:7a:f4 dst_mac 02:97:5a:f0:2c:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10756 flower src_mac 02:c9:81:27:7f:5d dst_mac 02:cd:4b:64:cb:0b vlan_id 3908 vlan_ethtype ip src_ip 67.133.25.84 dst_ip 84.54.71.12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10757 flower src_mac 02:f2:b5:8e:3a:b1 dst_mac 02:f4:9c:d3:a5:55 vlan_id 1837 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10758 flower src_mac 02:28:75:c2:55:97 dst_mac 02:e8:65:02:48:22 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10759 flower src_mac 02:ce:ad:29:f0:ba dst_mac 02:85:22:ce:5b:82 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10760 flower src_mac 02:1d:39:3f:89:66 dst_mac 02:3b:49:06:c2:93 src_ip 112.101.140.170 dst_ip 126.37.7.221 ip_proto udp src_port 54504 dst_port 43236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10761 flower src_mac 02:ce:56:5a:99:a2 dst_mac 02:15:d3:c9:64:63 vlan_id 202 vlan_ethtype ip src_ip 61.106.235.13 dst_ip 82.144.6.52 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10762 flower src_mac 02:c0:fb:0d:ce:59 dst_mac 02:0e:23:ff:14:55 vlan_id 2759 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10763 flower src_mac 02:5e:0a:fd:e4:e5 dst_mac 02:80:97:56:fd:4a action trap && tc filter add dev swp33 ingress protocol ip pref 10764 flower src_mac 02:5b:1b:6b:8d:78 dst_mac 02:c2:53:7a:64:07 src_ip 52.231.55.229 dst_ip 31.248.214.174 ip_proto udp src_port 5787 dst_port 41193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:10:13:96:f8:f2 dst_mac 02:65:ff:37:25:04 vlan_id 2817 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10766 flower src_mac 02:76:b6:ef:ab:a9 dst_mac 02:02:d6:ae:a7:2d vlan_id 878 vlan_ethtype ipv4 src_ip 22.174.95.24 dst_ip 121.202.218.145 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10767 flower src_mac 02:43:3f:aa:f2:57 dst_mac 02:4e:e2:ba:64:08 vlan_id 3981 vlan_ethtype ipv4 src_ip 39.65.134.10 dst_ip 14.250.95.78 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10768 flower src_mac 02:35:68:50:53:55 dst_mac 02:3a:25:12:09:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10769 flower src_mac 02:63:6a:1b:f1:8a dst_mac 02:42:59:43:54:a5 vlan_id 3577 vlan_ethtype ip src_ip 93.177.201.165 dst_ip 102.235.24.162 ip_proto tcp src_port 1155 dst_port 18032 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10770 flower src_mac 02:d0:bd:08:d9:2e dst_mac 02:33:11:39:e3:d7 vlan_id 2906 vlan_ethtype 0x0800 src_ip 106.139.167.130 dst_ip 66.39.154.239 ip_proto tcp src_port 6556 dst_port 63992 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10771 flower src_mac 02:b7:95:ea:b4:d4 dst_mac 02:8f:fc:ee:42:ea vlan_id 805 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10772 flower src_mac 02:a2:fb:5f:ac:ab dst_mac 02:7b:65:ba:b4:8d src_ip 95.147.114.211 dst_ip 78.205.41.85 ip_proto tcp src_port 57810 dst_port 43968 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:d1:49:df:e5:29 dst_mac 02:f9:c2:22:94:8c vlan_id 3087 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10774 flower src_mac 02:92:95:e6:bd:9c dst_mac 02:e3:1a:12:89:46 vlan_id 3484 vlan_ethtype ipv4 src_ip 66.243.5.222 dst_ip 60.65.188.194 ip_proto udp src_port 47525 dst_port 65257 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10775 flower src_mac 02:a2:24:52:94:1d dst_mac 02:3c:aa:2b:3c:31 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10776 flower src_mac 02:64:ca:83:3d:c9 dst_mac 02:f9:48:9a:6a:f0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:36:ba:38:5b:de dst_mac 02:38:93:ae:27:6e vlan_id 2120 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10778 flower src_mac 02:72:38:fd:28:0f dst_mac 02:fa:6a:a6:a2:4b vlan_id 1837 vlan_ethtype ip src_ip 18.126.79.68 dst_ip 90.79.48.110 ip_proto tcp src_port 18598 dst_port 17582 action trap && tc filter add dev swp33 ingress protocol ip pref 10779 flower src_mac 02:85:5c:3e:87:44 dst_mac 02:c8:63:e8:bb:39 src_ip 61.163.136.239 dst_ip 66.189.165.32 ip_proto tcp src_port 2202 dst_port 10324 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10780 flower src_mac 02:0e:0c:69:71:07 dst_mac 02:4d:f2:27:03:27 vlan_id 3311 vlan_ethtype ip src_ip 20.54.93.24 dst_ip 11.236.86.162 ip_proto udp src_port 51762 dst_port 1830 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10781 flower src_mac 02:77:34:2a:ac:0e dst_mac 02:25:75:bc:f6:94 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10782 flower src_mac 02:ab:57:0e:2c:1f dst_mac 02:0d:84:8e:ac:cd src_ip 91.159.141.247 dst_ip 42.100.114.13 ip_proto udp src_port 63868 dst_port 12205 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10783 flower src_mac 02:59:ef:b5:a0:e4 dst_mac 02:44:70:5f:d5:2d action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10784 flower src_mac 02:70:67:fb:50:1f dst_mac 02:ee:1b:61:1d:d1 src_ip 44.60.89.84 dst_ip 87.150.202.175 ip_proto udp src_port 52678 dst_port 27760 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10785 flower src_mac 02:3b:cb:78:e2:1e dst_mac 02:49:b4:77:25:c7 src_ip 63.2.44.55 dst_ip 44.81.207.57 ip_proto icmp code 247 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:f1:36:d2:e3:2e dst_mac 02:63:24:b8:56:e3 vlan_id 20 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10787 flower src_mac 02:00:85:39:5c:ed dst_mac 02:c3:e6:91:02:16 vlan_id 2170 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:ae:9b:9d:a3:ed dst_mac 02:23:d3:4c:3a:fe vlan_id 3656 vlan_ethtype 0x0800 src_ip 108.35.161.138 dst_ip 92.137.156.173 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10789 flower src_mac 02:4b:33:26:54:03 dst_mac 02:65:5b:fb:bd:17 vlan_id 1662 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10790 flower src_mac 02:2b:54:21:84:af dst_mac 02:04:f3:ff:25:58 src_ip 59.240.212.195 dst_ip 119.20.30.177 ip_proto tcp src_port 1353 dst_port 60844 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:c6:c9:24:01:89 dst_mac 02:b4:02:9e:f3:f0 vlan_id 3108 vlan_ethtype ipv4 src_ip 29.29.21.117 dst_ip 75.68.212.212 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10792 flower src_mac 02:51:7b:08:76:99 dst_mac 02:bd:f2:5d:47:47 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10793 flower src_mac 02:ae:47:bb:e7:63 dst_mac 02:1b:d4:55:87:87 src_ip 52.10.93.101 dst_ip 57.55.82.160 ip_proto icmp code 214 type 11 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10794 flower src_mac 02:34:31:a5:62:2f dst_mac 02:1a:3f:68:fe:2c vlan_id 859 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10795 flower src_mac 02:ce:5e:9e:84:11 dst_mac 02:7e:7d:b0:89:69 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10796 flower src_mac 02:64:0d:96:f6:39 dst_mac 02:41:41:30:12:53 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10797 flower src_mac 02:ba:b7:76:1d:c2 dst_mac 02:99:a6:22:90:8c src_ip 124.89.172.191 dst_ip 38.61.38.133 ip_proto icmp code 198 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10798 flower src_mac 02:78:08:6c:37:c8 dst_mac 02:4e:36:fe:93:7a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10799 flower src_mac 02:dd:5b:0c:02:bc dst_mac 02:78:36:84:f1:82 vlan_id 661 vlan_ethtype ipv4 src_ip 35.237.154.37 dst_ip 16.119.4.87 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10400 flower src_mac 02:de:b0:f4:10:fb dst_mac 02:2f:05:68:ea:a8 vlan_id 1936 vlan_ethtype ipv4 src_ip 108.80.156.222 dst_ip 50.164.57.190 ip_proto udp src_port 4250 dst_port 51846 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10401 flower src_mac 02:e1:f4:c2:81:d9 dst_mac 02:2e:6d:b8:5e:6c src_ip 47.148.25.64 dst_ip 32.107.71.87 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10402 flower src_mac 02:b2:dc:09:2b:8a dst_mac 02:3b:7d:2e:4d:ab action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10403 flower src_mac 02:27:0d:39:97:1e dst_mac 02:49:02:28:67:8c src_ip 24.70.25.162 dst_ip 109.73.239.134 ip_proto icmp code 143 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10404 flower src_mac 02:5e:ed:bd:5d:99 dst_mac 02:3b:f4:9d:21:5f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10405 flower src_mac 02:9f:e0:ec:96:45 dst_mac 02:8f:87:50:b7:57 vlan_id 1734 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10406 flower src_mac 02:87:d8:38:86:c2 dst_mac 02:d8:3d:20:f0:43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10407 flower src_mac 02:bb:25:bd:e2:b4 dst_mac 02:dc:3a:f5:3a:f5 vlan_id 1263 vlan_ethtype 0x0800 src_ip 16.241.10.163 dst_ip 97.201.230.233 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10408 flower src_mac 02:eb:ed:64:41:de dst_mac 02:05:63:59:3c:6f vlan_id 1239 vlan_ethtype ipv4 src_ip 73.126.218.161 dst_ip 50.225.189.203 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10409 flower src_mac 02:33:e5:7f:3c:ac dst_mac 02:7c:7f:c0:6d:ec action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10410 flower src_mac 02:67:97:ae:ad:03 dst_mac 02:49:44:3d:75:81 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10411 flower src_mac 02:96:31:45:bf:ae dst_mac 02:d0:ee:19:6c:5b src_ip 67.32.39.2 dst_ip 16.97.58.103 ip_proto tcp src_port 55389 dst_port 20641 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10412 flower src_mac 02:c6:0d:ba:50:03 dst_mac 02:b0:f4:52:e9:aa vlan_id 849 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10413 flower src_mac 02:a2:77:dc:e3:73 dst_mac 02:29:22:4b:6c:90 src_ip 91.250.152.249 dst_ip 92.191.250.165 ip_proto udp src_port 41851 dst_port 64915 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10414 flower src_mac 02:f0:09:2e:c6:2a dst_mac 02:a7:69:ce:3a:72 vlan_id 3783 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10415 flower src_mac 02:8a:2e:a6:4c:a1 dst_mac 02:d5:53:f2:42:c5 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10416 flower src_mac 02:7d:2b:02:22:31 dst_mac 02:c3:ad:fb:1d:d8 vlan_id 2230 vlan_ethtype 0x0800 src_ip 61.177.93.175 dst_ip 43.99.192.65 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10417 flower src_mac 02:3e:4f:4b:b8:0d dst_mac 02:db:0c:00:26:ec src_ip 59.108.135.171 dst_ip 121.210.164.249 ip_proto udp src_port 52826 dst_port 24362 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10418 flower src_mac 02:f0:cc:09:8d:be dst_mac 02:0c:32:4c:ff:2a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10419 flower src_mac 02:38:30:c0:26:34 dst_mac 02:ac:46:22:a4:4c vlan_id 1079 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10420 flower src_mac 02:10:e3:07:a4:f6 dst_mac 02:ac:19:57:5f:4b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10421 flower src_mac 02:51:d7:57:a3:4f dst_mac 02:73:67:f4:b5:03 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10422 flower src_mac 02:1a:e4:10:5d:11 dst_mac 02:b1:3f:20:89:61 src_ip 21.69.152.85 dst_ip 97.181.10.227 ip_proto tcp src_port 44407 dst_port 63180 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:b0:9b:65:00:ed dst_mac 02:0d:b0:f0:6b:0e vlan_id 1913 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10424 flower src_mac 02:66:79:3c:bd:4f dst_mac 02:5b:0b:ae:88:59 src_ip 110.121.26.46 dst_ip 108.194.192.114 ip_proto tcp src_port 7902 dst_port 18732 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10425 flower src_mac 02:24:f7:80:4b:04 dst_mac 02:36:dc:1b:90:c7 src_ip 26.172.0.165 dst_ip 106.165.165.31 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10426 flower src_mac 02:95:86:78:b8:79 dst_mac 02:3e:05:04:36:99 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10427 flower src_mac 02:51:70:54:0f:c9 dst_mac 02:f0:cc:e9:c2:bd src_ip 93.13.121.248 dst_ip 84.207.210.65 ip_proto tcp src_port 21596 dst_port 22112 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10428 flower src_mac 02:86:87:2f:97:42 dst_mac 02:b9:60:0a:bf:45 vlan_id 154 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10429 flower src_mac 02:6c:0c:6b:84:75 dst_mac 02:ad:7e:ac:4d:f3 src_ip 47.192.62.181 dst_ip 69.80.141.247 ip_proto udp src_port 61510 dst_port 46828 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10430 flower src_mac 02:21:f7:24:44:57 dst_mac 02:11:1b:95:16:ba src_ip 48.235.0.166 dst_ip 38.0.214.205 ip_proto udp src_port 52394 dst_port 49349 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10431 flower src_mac 02:08:e9:22:2a:2a dst_mac 02:62:fc:ec:b8:d9 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10432 flower src_mac 02:fe:9b:45:dd:5c dst_mac 02:e6:3a:99:f2:ce action pass && tc filter add dev swp33 ingress protocol ip pref 10433 flower src_mac 02:46:2d:84:a8:20 dst_mac 02:5e:1f:99:d5:1d src_ip 60.225.8.39 dst_ip 64.51.139.220 ip_proto udp src_port 55679 dst_port 3047 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10434 flower src_mac 02:bc:1a:06:dc:36 dst_mac 02:2f:b3:cf:fc:62 vlan_id 221 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10435 flower src_mac 02:29:0b:17:57:9c dst_mac 02:99:9f:53:6f:58 src_ip 116.98.107.63 dst_ip 48.73.50.64 ip_proto udp src_port 57630 dst_port 19486 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10436 flower src_mac 02:d3:26:ca:48:0f dst_mac 02:16:a0:64:99:5f vlan_id 3928 vlan_ethtype 0x0800 src_ip 72.47.203.218 dst_ip 113.171.172.63 ip_proto tcp src_port 3483 dst_port 27847 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10437 flower src_mac 02:ff:46:10:c5:5b dst_mac 02:fd:09:0e:e9:8d vlan_id 3531 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10438 flower src_mac 02:7e:a4:cf:4f:12 dst_mac 02:ec:ac:25:59:63 vlan_id 345 vlan_ethtype ip src_ip 21.58.83.141 dst_ip 92.143.176.237 ip_proto tcp src_port 65344 dst_port 13499 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10439 flower src_mac 02:05:73:d6:be:93 dst_mac 02:2d:f9:c0:fa:cf src_ip 113.126.72.3 dst_ip 75.126.35.79 ip_proto icmp code 28 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10440 flower src_mac 02:8a:a8:cd:7b:df dst_mac 02:16:19:38:92:b3 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10441 flower src_mac 02:38:f7:de:b0:bc dst_mac 02:09:ec:cf:f8:b6 src_ip 123.49.98.191 dst_ip 19.68.224.100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10442 flower src_mac 02:2f:37:78:d5:04 dst_mac 02:21:e9:c2:d2:e1 vlan_id 1375 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10443 flower src_mac 02:59:79:4b:30:71 dst_mac 02:90:4a:c6:bc:2b src_ip 104.61.87.92 dst_ip 64.28.80.241 ip_proto tcp src_port 44183 dst_port 6552 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10444 flower src_mac 02:6e:15:1c:7f:a8 dst_mac 02:46:35:cf:67:ef action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10445 flower src_mac 02:ee:7e:4c:2a:21 dst_mac 02:eb:35:ee:a0:34 vlan_id 3772 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10446 flower src_mac 02:6b:10:fc:c3:f0 dst_mac 02:41:9a:93:01:d5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10447 flower src_mac 02:2d:6a:ed:e2:ef dst_mac 02:a8:ab:17:29:dd vlan_id 3972 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10448 flower src_mac 02:e3:53:d8:96:e0 dst_mac 02:68:6e:68:06:c6 vlan_id 3257 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10449 flower src_mac 02:a4:43:43:b9:30 dst_mac 02:d2:03:c8:95:2b src_ip 41.143.216.209 dst_ip 83.194.165.195 ip_proto icmp code 196 type 0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10450 flower src_mac 02:ac:f7:12:cf:3c dst_mac 02:72:67:fc:1a:67 vlan_id 2799 vlan_ethtype ip src_ip 98.252.140.76 dst_ip 96.180.99.16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10451 flower src_mac 02:f6:4a:02:25:12 dst_mac 02:3b:18:db:08:ca vlan_id 1476 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10452 flower src_mac 02:c6:8e:1f:9d:ec dst_mac 02:3a:b9:fc:00:d7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:09:fc:f3:8b:db dst_mac 02:dd:b3:62:36:50 vlan_id 403 vlan_ethtype 0x0800 src_ip 106.64.178.145 dst_ip 38.109.188.228 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10454 flower src_mac 02:a0:21:8b:bc:21 dst_mac 02:b2:ba:49:12:80 src_ip 83.219.6.101 dst_ip 86.71.25.167 ip_proto icmp code 118 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10455 flower src_mac 02:3d:1f:ad:29:05 dst_mac 02:8a:a3:3c:57:99 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10456 flower src_mac 02:df:58:c6:f3:e3 dst_mac 02:c7:6f:e8:18:0c action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10457 flower src_mac 02:08:07:e4:06:22 dst_mac 02:46:0e:3c:95:98 src_ip 66.98.249.149 dst_ip 55.119.148.246 ip_proto tcp src_port 9547 dst_port 51560 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10458 flower src_mac 02:21:ba:0c:83:27 dst_mac 02:7b:21:c6:6d:e2 vlan_id 1342 vlan_ethtype ip src_ip 114.202.232.31 dst_ip 22.14.221.2 ip_proto udp src_port 26504 dst_port 44790 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10459 flower src_mac 02:31:49:89:e3:b7 dst_mac 02:dc:10:36:a9:9d vlan_id 3640 vlan_ethtype ipv4 src_ip 60.236.184.95 dst_ip 54.244.98.70 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10460 flower src_mac 02:d6:d6:97:5a:a0 dst_mac 02:5e:05:51:6c:47 vlan_id 1138 vlan_ethtype 0x0800 src_ip 68.69.208.128 dst_ip 36.125.14.104 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10461 flower src_mac 02:64:98:93:47:2b dst_mac 02:7a:5e:43:2b:60 vlan_id 175 vlan_ethtype ip src_ip 60.184.55.26 dst_ip 105.252.110.193 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:90:ee:1b:2c:e6 dst_mac 02:b4:19:5a:78:45 vlan_id 395 vlan_ethtype ip src_ip 90.50.128.117 dst_ip 107.131.67.49 action trap && tc filter add dev swp33 ingress protocol ip pref 10463 flower src_mac 02:b0:6c:d7:4b:77 dst_mac 02:e4:dd:9a:8e:bd src_ip 69.2.40.122 dst_ip 78.199.160.19 ip_proto tcp src_port 35852 dst_port 6082 action trap && tc filter add dev swp33 ingress protocol ip pref 10464 flower src_mac 02:72:dd:c9:e2:26 dst_mac 02:8f:12:52:c7:fa src_ip 111.30.2.24 dst_ip 109.125.199.55 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10465 flower src_mac 02:da:df:26:22:94 dst_mac 02:9e:d3:d0:77:bb vlan_id 3058 vlan_ethtype ip src_ip 105.232.97.174 dst_ip 94.201.10.196 ip_proto tcp src_port 63792 dst_port 50262 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10466 flower src_mac 02:fb:22:4f:a5:b9 dst_mac 02:87:82:3b:50:98 vlan_id 762 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10467 flower src_mac 02:a4:0a:d7:c1:c6 dst_mac 02:ee:79:4a:4b:b1 action drop && tc filter add dev swp33 ingress protocol ip pref 10468 flower src_mac 02:bb:be:cd:04:ac dst_mac 02:3e:65:f0:30:ac src_ip 76.228.156.151 dst_ip 12.138.10.206 ip_proto tcp src_port 37314 dst_port 55480 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10469 flower src_mac 02:50:a7:7a:4c:95 dst_mac 02:08:6b:c4:a3:f4 vlan_id 4001 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:da:47:bc:7b:d7 dst_mac 02:e4:b8:a3:3d:1e vlan_id 949 vlan_ethtype ip src_ip 97.195.228.133 dst_ip 65.130.71.52 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10471 flower src_mac 02:f2:60:1a:ce:50 dst_mac 02:e2:5a:55:c1:33 vlan_id 1607 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10472 flower src_mac 02:4d:07:ed:42:4c dst_mac 02:7f:af:53:f3:3f src_ip 71.117.122.80 dst_ip 69.88.44.66 ip_proto tcp src_port 12289 dst_port 40327 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10473 flower src_mac 02:d9:bd:79:fd:b7 dst_mac 02:76:e4:d9:78:70 vlan_id 2192 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10474 flower src_mac 02:f4:86:38:ff:30 dst_mac 02:5b:69:56:78:dc vlan_id 3574 vlan_ethtype 0x0800 src_ip 23.133.227.60 dst_ip 28.42.69.103 ip_proto udp src_port 14863 dst_port 38498 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10475 flower src_mac 02:93:5c:5c:ad:2f dst_mac 02:f6:ea:07:3a:8f src_ip 112.241.155.2 dst_ip 39.200.208.9 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10476 flower src_mac 02:88:7f:16:bf:37 dst_mac 02:03:f2:4b:fa:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10477 flower src_mac 02:37:49:c8:0f:62 dst_mac 02:bc:f0:99:29:6b vlan_id 3827 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10478 flower src_mac 02:c7:b4:07:8c:98 dst_mac 02:99:5e:01:90:82 src_ip 72.254.24.83 dst_ip 60.222.25.151 ip_proto icmp code 97 type 3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10479 flower src_mac 02:4c:57:ec:54:04 dst_mac 02:97:a2:05:5b:c3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10480 flower src_mac 02:55:c1:10:c0:c6 dst_mac 02:e3:97:9f:dc:74 vlan_id 337 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10481 flower src_mac 02:33:4c:45:ce:26 dst_mac 02:42:93:cd:97:d3 vlan_id 299 vlan_ethtype 0x0800 src_ip 103.112.17.132 dst_ip 100.204.151.48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10482 flower src_mac 02:ba:4a:42:8c:ea dst_mac 02:9b:f7:b6:83:cd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10483 flower src_mac 02:02:3e:0d:29:cc dst_mac 02:88:a3:10:d6:cf action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10484 flower src_mac 02:4f:49:89:57:1c dst_mac 02:36:93:0f:83:2a vlan_id 1957 vlan_ethtype ip src_ip 110.221.93.61 dst_ip 34.153.130.98 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10485 flower src_mac 02:ac:d4:f4:82:9e dst_mac 02:77:ad:fa:4d:f1 vlan_id 3207 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10486 flower src_mac 02:9e:86:b4:f3:cb dst_mac 02:1c:1a:6a:4c:af vlan_id 826 vlan_ethtype ipv4 src_ip 78.119.19.225 dst_ip 91.126.75.68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10487 flower src_mac 02:65:f3:c6:52:40 dst_mac 02:2f:38:3e:2d:40 vlan_id 3378 vlan_ethtype 0x0800 src_ip 83.105.238.72 dst_ip 15.109.204.199 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10488 flower src_mac 02:c3:77:4f:85:c0 dst_mac 02:3b:85:08:8e:5a vlan_id 2396 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10489 flower src_mac 02:c6:06:e7:03:ce dst_mac 02:6b:8d:cd:7c:08 action trap && tc filter add dev swp33 ingress protocol ip pref 10490 flower src_mac 02:00:fc:b1:0a:97 dst_mac 02:1e:83:9d:38:ab src_ip 30.215.163.237 dst_ip 40.116.209.177 ip_proto tcp src_port 26518 dst_port 42206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:b1:9f:3e:7a:f7 dst_mac 02:2b:07:b2:d3:4e vlan_id 1335 vlan_ethtype 0x0800 src_ip 28.3.250.243 dst_ip 38.72.84.238 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10492 flower src_mac 02:24:01:3d:1a:93 dst_mac 02:cc:4c:42:31:e9 src_ip 29.224.31.194 dst_ip 100.225.166.71 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10493 flower src_mac 02:90:f9:38:48:a2 dst_mac 02:02:11:40:c7:2d src_ip 57.55.221.224 dst_ip 89.237.26.197 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10494 flower src_mac 02:50:ae:1c:96:a4 dst_mac 02:36:d0:90:df:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10495 flower src_mac 02:6b:ac:50:6c:ad dst_mac 02:7b:56:a2:08:d7 vlan_id 2335 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10496 flower src_mac 02:ca:9f:57:dc:6e dst_mac 02:8e:4f:fc:42:a3 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10497 flower src_mac 02:d6:06:8a:93:0c dst_mac 02:f0:76:f6:b8:98 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10498 flower src_mac 02:34:d5:58:34:bb dst_mac 02:ac:f1:e3:dd:c4 vlan_id 2302 vlan_ethtype ipv4 src_ip 78.61.159.51 dst_ip 54.35.44.176 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:70:75:60:b0:38 dst_mac 02:b4:5d:2a:61:b2 vlan_id 2633 vlan_ethtype ipv4 src_ip 38.3.71.22 dst_ip 76.242.254.49 ip_proto tcp src_port 14953 dst_port 41101 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10500 flower src_mac 02:75:30:75:a0:a8 dst_mac 02:af:c1:72:be:f7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10501 flower src_mac 02:37:4f:a0:f8:3f dst_mac 02:a5:1a:6d:a5:31 vlan_id 2744 vlan_ethtype ipv4 src_ip 40.84.249.25 dst_ip 42.137.216.34 action drop && tc filter add dev swp33 ingress protocol ip pref 10502 flower src_mac 02:dc:b2:c8:e5:15 dst_mac 02:ba:b3:cc:8a:f4 src_ip 51.232.133.181 dst_ip 93.136.186.232 ip_proto icmp code 237 type 5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10503 flower src_mac 02:d9:9e:07:f2:c8 dst_mac 02:a3:ac:b2:05:df vlan_id 2139 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10504 flower src_mac 02:30:41:b8:f4:8f dst_mac 02:34:73:c8:70:ab src_ip 66.37.173.157 dst_ip 91.70.182.125 ip_proto icmp code 37 type 3 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10505 flower src_mac 02:08:19:21:e9:c4 dst_mac 02:8f:12:71:86:a2 src_ip 111.125.71.57 dst_ip 111.24.252.13 ip_proto icmp code 207 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10506 flower src_mac 02:38:f1:73:70:27 dst_mac 02:c9:f0:d9:8e:f5 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10507 flower src_mac 02:ec:66:dc:44:6e dst_mac 02:76:e8:72:65:d3 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10508 flower src_mac 02:a5:f0:f1:34:93 dst_mac 02:43:98:e9:03:0b src_ip 23.129.72.245 dst_ip 38.62.86.12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10509 flower src_mac 02:c8:1a:3a:62:36 dst_mac 02:38:65:07:02:ba vlan_id 1852 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10510 flower src_mac 02:99:77:8c:7b:2a dst_mac 02:0f:4d:27:b4:ea src_ip 61.172.163.191 dst_ip 98.199.226.234 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10511 flower src_mac 02:07:6f:96:da:4a dst_mac 02:b4:49:f1:0f:f1 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10512 flower src_mac 02:2a:12:9d:44:6b dst_mac 02:16:d9:c6:ea:59 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10513 flower src_mac 02:da:c1:e7:11:4b dst_mac 02:6c:c5:71:7b:3f vlan_id 3726 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10514 flower src_mac 02:93:06:25:52:2f dst_mac 02:31:17:0f:a7:98 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10515 flower src_mac 02:60:66:44:66:b0 dst_mac 02:73:ca:5f:fe:79 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10516 flower src_mac 02:41:92:a5:39:ce dst_mac 02:90:a9:d0:3e:39 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10517 flower src_mac 02:07:c2:d1:da:e2 dst_mac 02:16:88:21:bd:f8 vlan_id 477 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10518 flower src_mac 02:c6:0d:af:91:a8 dst_mac 02:9c:ee:3c:57:2c action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10519 flower src_mac 02:e3:87:0e:5d:1f dst_mac 02:0b:a3:51:47:f1 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10520 flower src_mac 02:bf:7d:b2:3c:35 dst_mac 02:2b:94:c5:20:29 vlan_id 816 vlan_ethtype 0x0800 src_ip 42.224.85.191 dst_ip 113.153.138.178 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10521 flower src_mac 02:b1:f2:36:a7:aa dst_mac 02:38:90:3f:a7:ef vlan_id 2877 vlan_ethtype ipv4 src_ip 23.63.191.153 dst_ip 110.122.132.75 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10522 flower src_mac 02:ee:65:06:88:1d dst_mac 02:7b:40:41:ef:05 vlan_id 2373 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10523 flower src_mac 02:49:3a:89:e0:93 dst_mac 02:98:81:81:13:47 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10524 flower src_mac 02:9d:11:0d:0d:c1 dst_mac 02:80:d4:93:7e:c4 vlan_id 2841 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10525 flower src_mac 02:51:37:eb:a7:9b dst_mac 02:d9:3f:99:ff:8e vlan_id 2791 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10526 flower src_mac 02:22:10:59:55:d4 dst_mac 02:80:22:ff:8e:72 vlan_id 2941 vlan_ethtype ipv4 src_ip 114.205.79.244 dst_ip 41.120.181.8 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10527 flower src_mac 02:7d:62:8d:1e:32 dst_mac 02:30:3b:8d:96:57 vlan_id 3681 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10528 flower src_mac 02:74:10:63:7d:2c dst_mac 02:ea:37:f9:b3:23 vlan_id 3092 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10529 flower src_mac 02:39:b3:da:2c:55 dst_mac 02:35:b1:8c:ae:24 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10530 flower src_mac 02:39:51:cc:a5:df dst_mac 02:d7:d7:fa:2b:f1 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10531 flower src_mac 02:53:a2:12:d2:23 dst_mac 02:d8:2e:78:b1:bc action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10532 flower src_mac 02:a4:54:ba:32:73 dst_mac 02:00:69:4c:f5:fa action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10533 flower src_mac 02:18:fd:36:f0:7d dst_mac 02:d5:87:b6:25:94 vlan_id 694 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:06:bf:8a:6c:a4 dst_mac 02:d3:ee:ae:1c:60 vlan_id 3972 vlan_ethtype ipv4 src_ip 107.1.132.235 dst_ip 50.175.104.28 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10535 flower src_mac 02:08:ab:ff:de:8b dst_mac 02:0d:62:09:19:eb src_ip 57.103.159.111 dst_ip 54.59.28.198 ip_proto tcp src_port 47005 dst_port 21622 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10536 flower src_mac 02:eb:62:16:c7:64 dst_mac 02:c1:f6:90:d6:08 vlan_id 457 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10537 flower src_mac 02:7e:d3:f9:04:42 dst_mac 02:29:ce:3b:d4:01 vlan_id 1247 vlan_ethtype 0x0800 src_ip 33.110.92.230 dst_ip 91.1.219.171 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10538 flower src_mac 02:24:08:38:91:fb dst_mac 02:90:46:d1:34:e7 src_ip 13.229.46.237 dst_ip 120.162.242.60 ip_proto tcp src_port 2206 dst_port 12344 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10539 flower src_mac 02:9f:3e:59:59:67 dst_mac 02:20:6b:b4:b7:a7 vlan_id 3634 vlan_ethtype ipv4 src_ip 81.181.27.90 dst_ip 80.33.20.24 ip_proto udp src_port 62178 dst_port 5730 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10540 flower src_mac 02:c7:20:0c:be:73 dst_mac 02:85:6a:84:de:54 vlan_id 2558 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10541 flower src_mac 02:1d:a8:ca:d5:d5 dst_mac 02:90:09:60:e1:14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10542 flower src_mac 02:c3:88:0c:4d:b1 dst_mac 02:ff:ea:5a:c5:36 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10543 flower src_mac 02:ca:c1:38:fc:54 dst_mac 02:30:b4:f0:ed:c7 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10544 flower src_mac 02:1f:0f:aa:5f:df dst_mac 02:e5:22:73:4c:d7 src_ip 45.228.129.26 dst_ip 60.25.83.6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10545 flower src_mac 02:26:68:47:5f:14 dst_mac 02:15:cc:9b:53:e4 vlan_id 1862 vlan_ethtype ipv4 src_ip 125.240.43.78 dst_ip 89.105.80.58 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:f2:ec:ad:88:ae dst_mac 02:45:20:19:e3:c8 vlan_id 2520 vlan_ethtype ip src_ip 91.145.116.140 dst_ip 15.223.183.43 ip_proto tcp src_port 61434 dst_port 178 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10547 flower src_mac 02:a1:7a:53:cb:15 dst_mac 02:7c:72:23:0d:33 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10548 flower src_mac 02:a1:7f:b6:e9:e1 dst_mac 02:10:84:1f:bb:04 vlan_id 406 vlan_ethtype 0x0800 src_ip 11.95.236.181 dst_ip 65.164.57.2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10549 flower src_mac 02:95:91:76:c7:9e dst_mac 02:7d:f9:20:c1:45 vlan_id 1875 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10550 flower src_mac 02:c9:65:19:6f:b9 dst_mac 02:54:71:aa:f4:91 vlan_id 2658 vlan_ethtype ipv4 src_ip 50.236.158.195 dst_ip 114.168.140.165 ip_proto tcp src_port 63316 dst_port 44196 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:c2:fe:be:d0:9e dst_mac 02:7f:46:82:e5:5b vlan_id 1055 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10552 flower src_mac 02:c7:24:a0:b8:07 dst_mac 02:a9:5f:dd:05:b9 vlan_id 1958 vlan_ethtype 0x0800 src_ip 39.171.209.52 dst_ip 20.140.240.30 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10553 flower src_mac 02:11:27:78:10:1a dst_mac 02:6f:c5:d1:39:ea vlan_id 2140 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10554 flower src_mac 02:01:b7:5d:a6:00 dst_mac 02:1a:63:c9:70:6b vlan_id 1010 vlan_ethtype ipv4 src_ip 72.177.64.56 dst_ip 99.138.3.233 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10555 flower src_mac 02:b7:3f:d4:22:10 dst_mac 02:ea:f7:d8:8a:96 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10556 flower src_mac 02:f0:29:fa:8f:3a dst_mac 02:17:80:16:43:25 src_ip 65.208.145.71 dst_ip 63.38.182.142 ip_proto tcp src_port 44639 dst_port 39870 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10557 flower src_mac 02:c4:be:5f:0f:a1 dst_mac 02:31:35:14:c7:72 vlan_id 3483 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10558 flower src_mac 02:4b:ab:76:ca:fa dst_mac 02:fc:e2:f4:44:0d src_ip 64.197.48.6 dst_ip 91.189.111.99 ip_proto icmp code 138 type 3 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:54:2a:6f:c0:45 dst_mac 02:24:31:62:29:b6 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10560 flower src_mac 02:dd:95:9f:40:0f dst_mac 02:01:4c:8e:54:bc src_ip 84.253.70.85 dst_ip 99.133.222.58 ip_proto tcp src_port 32431 dst_port 58684 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10561 flower src_mac 02:82:9f:2f:77:73 dst_mac 02:df:87:0b:78:cd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10562 flower src_mac 02:f6:b2:46:ce:09 dst_mac 02:fd:c6:d5:57:a2 vlan_id 1391 vlan_ethtype 0x0800 src_ip 79.2.80.171 dst_ip 109.216.249.45 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10563 flower src_mac 02:3d:50:82:ad:22 dst_mac 02:b7:d6:a9:89:8b vlan_id 2594 vlan_ethtype ip src_ip 15.152.217.81 dst_ip 37.238.61.129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10564 flower src_mac 02:f7:19:1f:70:9d dst_mac 02:a8:f7:ea:ff:23 vlan_id 559 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10565 flower src_mac 02:fa:89:24:41:1c dst_mac 02:f9:72:f0:8b:92 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10566 flower src_mac 02:b4:5f:25:30:1c dst_mac 02:3f:4b:e3:d5:60 src_ip 11.86.112.29 dst_ip 83.220.87.33 ip_proto udp src_port 2546 dst_port 23004 action pass && tc filter add dev swp33 ingress protocol ip pref 10567 flower src_mac 02:32:36:c1:53:78 dst_mac 02:c4:8a:98:1d:ac src_ip 83.54.131.28 dst_ip 94.136.205.23 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10568 flower src_mac 02:19:ed:16:32:46 dst_mac 02:fa:06:a4:ac:8b src_ip 27.168.61.135 dst_ip 123.87.161.209 ip_proto icmp code 176 type 14 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10569 flower src_mac 02:68:93:82:19:68 dst_mac 02:7c:9e:c8:79:00 vlan_id 2943 vlan_ethtype ip src_ip 122.245.236.80 dst_ip 52.70.96.139 ip_proto udp src_port 55579 dst_port 60495 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:49:46:c1:de:f8 dst_mac 02:ee:33:c4:25:36 vlan_id 2939 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10571 flower src_mac 02:05:a9:1b:4e:8f dst_mac 02:0e:54:16:20:c6 vlan_id 3898 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10572 flower src_mac 02:b3:cc:81:41:29 dst_mac 02:86:b7:34:e5:f1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10573 flower src_mac 02:a8:b3:63:1c:ef dst_mac 02:8a:11:1b:cf:62 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10574 flower src_mac 02:8c:04:e4:16:73 dst_mac 02:d5:ff:f1:fb:f2 vlan_id 1043 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10575 flower src_mac 02:bd:2a:29:71:40 dst_mac 02:1b:7b:e1:67:0b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10576 flower src_mac 02:6b:3a:bd:cc:f6 dst_mac 02:b4:2d:41:a6:3b src_ip 60.89.43.226 dst_ip 40.88.202.120 ip_proto tcp src_port 6372 dst_port 28651 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10577 flower src_mac 02:b8:ce:e8:7d:d4 dst_mac 02:f5:20:cb:58:40 vlan_id 1138 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10578 flower src_mac 02:34:76:9a:11:42 dst_mac 02:fe:16:b5:d8:63 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10579 flower src_mac 02:8d:1e:eb:8c:c5 dst_mac 02:57:7f:10:bf:06 vlan_id 2449 vlan_ethtype 0x0800 src_ip 39.33.100.78 dst_ip 101.33.113.96 ip_proto tcp src_port 59551 dst_port 58720 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10580 flower src_mac 02:b5:fc:11:44:58 dst_mac 02:08:c5:28:16:73 vlan_id 3779 vlan_ethtype ipv4 src_ip 85.197.50.66 dst_ip 104.138.104.199 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10581 flower src_mac 02:94:cc:a3:70:ab dst_mac 02:50:3d:26:e4:b2 vlan_id 1035 vlan_ethtype ip src_ip 74.17.44.145 dst_ip 95.10.45.58 ip_proto tcp src_port 12187 dst_port 1097 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10582 flower src_mac 02:25:7f:f6:d6:b8 dst_mac 02:41:a6:c9:b5:09 vlan_id 1584 vlan_ethtype ipv4 src_ip 73.187.222.3 dst_ip 35.18.41.224 ip_proto udp src_port 27534 dst_port 55468 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:7e:e2:e9:0d:25 dst_mac 02:cf:ed:f8:59:f1 vlan_id 3038 vlan_ethtype 0x0800 src_ip 125.120.133.233 dst_ip 70.200.86.196 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10584 flower src_mac 02:f3:b5:52:3d:de dst_mac 02:8f:a5:3c:b6:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10585 flower src_mac 02:0f:cb:e3:10:54 dst_mac 02:cd:b9:c6:23:a7 vlan_id 3062 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10586 flower src_mac 02:28:b9:5d:ba:8e dst_mac 02:fa:88:32:f8:14 vlan_id 3446 vlan_ethtype ipv4 src_ip 66.78.234.154 dst_ip 109.38.189.227 ip_proto udp src_port 54218 dst_port 18426 action pass && tc filter add dev swp33 ingress protocol ip pref 10587 flower src_mac 02:26:f2:65:60:72 dst_mac 02:a1:7e:43:a8:0d src_ip 84.193.172.116 dst_ip 115.240.183.26 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10588 flower src_mac 02:f1:57:8a:8c:88 dst_mac 02:14:4a:bb:6f:33 vlan_id 849 vlan_ethtype ip src_ip 92.141.110.39 dst_ip 34.70.132.204 ip_proto tcp src_port 55663 dst_port 64509 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10589 flower src_mac 02:03:f2:a7:d5:f7 dst_mac 02:57:5e:21:5b:d9 vlan_id 272 vlan_ethtype ipv4 src_ip 119.8.143.247 dst_ip 88.211.21.232 ip_proto udp src_port 60288 dst_port 52106 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10590 flower src_mac 02:d9:0e:4c:fc:76 dst_mac 02:f4:00:30:60:62 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10591 flower src_mac 02:f1:f0:65:43:a1 dst_mac 02:aa:ba:60:89:c2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10592 flower src_mac 02:ff:61:bb:1e:b3 dst_mac 02:e2:62:0e:5d:9d vlan_id 2733 vlan_ethtype 0x0800 src_ip 89.135.235.207 dst_ip 83.199.197.249 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10593 flower src_mac 02:2f:a6:34:42:1e dst_mac 02:68:cf:b5:22:68 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10594 flower src_mac 02:4b:16:13:01:29 dst_mac 02:93:43:fc:c3:06 src_ip 110.89.83.91 dst_ip 20.151.240.210 ip_proto tcp src_port 44083 dst_port 54629 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10595 flower src_mac 02:b5:e2:89:0f:dc dst_mac 02:a5:9e:ad:38:b7 vlan_id 1453 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10596 flower src_mac 02:bc:59:44:a4:d8 dst_mac 02:27:f0:0c:36:96 src_ip 58.78.148.166 dst_ip 109.141.237.13 ip_proto tcp src_port 2882 dst_port 3008 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10597 flower src_mac 02:35:a7:37:d5:0e dst_mac 02:c5:7e:0d:62:f7 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10598 flower src_mac 02:a7:9e:f2:8c:72 dst_mac 02:3c:77:ff:f0:18 src_ip 21.174.139.127 dst_ip 87.96.99.123 ip_proto udp src_port 23982 dst_port 24942 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10599 flower src_mac 02:74:ad:bd:fb:a3 dst_mac 02:84:c1:d2:1d:01 src_ip 27.104.155.47 dst_ip 44.13.179.78 ip_proto icmp code 47 type 13 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10600 flower src_mac 02:cb:f1:d3:82:86 dst_mac 02:85:58:15:23:3e src_ip 42.191.209.19 dst_ip 24.82.21.236 ip_proto icmp code 51 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10601 flower src_mac 02:03:c2:09:b4:07 dst_mac 02:69:fd:c7:07:fe vlan_id 945 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10602 flower src_mac 02:4a:a5:d2:ba:f8 dst_mac 02:a8:06:4c:6c:4e vlan_id 1129 vlan_ethtype 0x0800 src_ip 93.221.234.60 dst_ip 44.213.229.189 ip_proto tcp src_port 16887 dst_port 50736 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10603 flower src_mac 02:ff:2d:e7:b2:55 dst_mac 02:38:00:9a:7f:25 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10604 flower src_mac 02:86:7c:3c:88:ef dst_mac 02:eb:ba:a1:f4:8b vlan_id 3023 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10605 flower src_mac 02:78:c6:77:c9:e4 dst_mac 02:17:8c:92:c6:8f vlan_id 61 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10606 flower src_mac 02:54:2a:50:98:44 dst_mac 02:ec:ae:e4:d7:84 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10607 flower src_mac 02:a0:1f:37:92:cf dst_mac 02:a4:21:8e:2f:50 vlan_id 1339 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10608 flower src_mac 02:d0:fe:1a:68:c6 dst_mac 02:33:cd:49:a4:bc action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10609 flower src_mac 02:16:8f:04:80:2a dst_mac 02:77:75:57:53:f3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:b8:e4:8b:9c:20 dst_mac 02:d6:01:6b:9e:9a vlan_id 3283 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10611 flower src_mac 02:28:8b:44:11:2c dst_mac 02:21:a1:7b:7b:4d vlan_id 3790 vlan_ethtype ip src_ip 59.203.235.39 dst_ip 41.70.123.68 ip_proto udp src_port 20339 dst_port 1453 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10612 flower src_mac 02:f2:26:26:19:d8 dst_mac 02:4a:63:be:8b:fa src_ip 14.8.66.24 dst_ip 80.101.123.123 ip_proto icmp code 197 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10613 flower src_mac 02:40:03:f5:de:0b dst_mac 02:c7:76:eb:dc:49 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10614 flower src_mac 02:e7:dc:4e:5c:87 dst_mac 02:06:45:35:2e:f8 src_ip 79.77.13.158 dst_ip 109.115.205.40 ip_proto udp src_port 27522 dst_port 60691 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10615 flower src_mac 02:3a:0d:9c:81:a0 dst_mac 02:55:8a:52:7c:e4 src_ip 27.245.26.164 dst_ip 49.55.69.115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10616 flower src_mac 02:6e:14:e6:19:58 dst_mac 02:73:a0:7c:fc:16 vlan_id 1924 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10617 flower src_mac 02:1c:fb:4e:42:33 dst_mac 02:73:1e:dd:20:1c action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10618 flower src_mac 02:79:76:af:61:e6 dst_mac 02:6f:58:95:9c:3e src_ip 33.170.138.134 dst_ip 123.190.43.182 ip_proto udp src_port 7328 dst_port 28949 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10619 flower src_mac 02:a9:e2:a3:ee:e5 dst_mac 02:1c:cb:3d:3a:04 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10620 flower src_mac 02:71:2a:98:9b:f3 dst_mac 02:8e:ab:1d:2f:76 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10621 flower src_mac 02:bd:ad:f8:52:9a dst_mac 02:5b:f4:ef:3b:e5 src_ip 90.197.53.47 dst_ip 109.224.133.71 ip_proto icmp code 42 type 18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10622 flower src_mac 02:7a:a2:1b:33:0e dst_mac 02:4f:d7:c4:95:0e vlan_id 2660 vlan_ethtype 0x0800 src_ip 96.66.202.44 dst_ip 119.147.13.47 ip_proto udp src_port 45257 dst_port 55296 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10623 flower src_mac 02:dd:27:ef:a8:46 dst_mac 02:d4:e7:e0:ae:2f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10624 flower src_mac 02:71:83:c4:5c:d3 dst_mac 02:16:be:be:91:34 vlan_id 2987 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10625 flower src_mac 02:10:d7:16:bd:e6 dst_mac 02:49:a2:fc:40:77 src_ip 87.232.223.92 dst_ip 52.198.140.48 ip_proto icmp code 247 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:e3:6b:c3:2f:95 dst_mac 02:88:b9:2a:c0:8a vlan_id 3112 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10627 flower src_mac 02:49:84:d8:3e:fb dst_mac 02:56:fa:f1:10:21 src_ip 42.219.51.4 dst_ip 49.53.77.229 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10628 flower src_mac 02:e9:e1:b2:7f:79 dst_mac 02:c7:07:4b:81:a1 vlan_id 840 vlan_ethtype ip src_ip 121.181.34.236 dst_ip 48.167.134.73 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10629 flower src_mac 02:a8:99:44:57:19 dst_mac 02:70:19:d9:c3:94 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10630 flower src_mac 02:1a:69:41:49:97 dst_mac 02:a3:68:50:a5:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10631 flower src_mac 02:6f:05:8d:99:dc dst_mac 02:79:fc:0a:5f:aa vlan_id 1172 vlan_ethtype ip src_ip 93.113.238.94 dst_ip 71.193.170.86 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10632 flower src_mac 02:81:bc:da:f1:8f dst_mac 02:ef:99:01:d0:49 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10633 flower src_mac 02:5f:09:72:2d:36 dst_mac 02:87:b9:f4:6f:61 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10634 flower src_mac 02:3d:c1:07:e9:02 dst_mac 02:cb:4d:48:c4:66 vlan_id 3783 vlan_ethtype ipv4 src_ip 118.121.236.63 dst_ip 98.24.109.30 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10635 flower src_mac 02:d4:f1:1c:23:8a dst_mac 02:0e:9b:bd:9d:6a vlan_id 2951 vlan_ethtype ip src_ip 79.213.46.90 dst_ip 104.146.40.126 ip_proto tcp src_port 30673 dst_port 59933 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10636 flower src_mac 02:d4:d5:46:31:fc dst_mac 02:6a:fc:b0:b0:65 src_ip 83.103.110.46 dst_ip 115.100.231.97 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10637 flower src_mac 02:71:88:0d:ec:ba dst_mac 02:98:b6:12:b9:1d vlan_id 1875 vlan_ethtype ip src_ip 85.73.194.81 dst_ip 55.177.240.92 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10638 flower src_mac 02:a6:46:9a:12:8f dst_mac 02:fb:d2:11:1e:02 vlan_id 597 vlan_ethtype 0x0800 src_ip 100.161.92.67 dst_ip 84.86.242.95 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10639 flower src_mac 02:f4:7e:ad:13:7d dst_mac 02:8f:7e:6b:b0:5c vlan_id 1937 vlan_ethtype ip src_ip 29.113.87.29 dst_ip 103.230.85.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10640 flower src_mac 02:70:57:bc:ec:2b dst_mac 02:75:b3:06:96:85 vlan_id 2784 vlan_ethtype ip src_ip 55.103.221.38 dst_ip 20.207.181.3 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10641 flower src_mac 02:22:31:62:dd:95 dst_mac 02:0a:50:79:4a:ce action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10642 flower src_mac 02:d7:15:eb:56:1b dst_mac 02:05:02:24:e8:fd vlan_id 976 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10643 flower src_mac 02:33:5c:21:66:82 dst_mac 02:0d:d6:a5:4a:c2 vlan_id 3350 vlan_ethtype 0x0800 src_ip 63.167.91.24 dst_ip 46.34.6.83 action pass && tc filter add dev swp33 ingress protocol ip pref 10644 flower src_mac 02:30:fd:96:3c:0f dst_mac 02:f6:a1:13:d0:cd src_ip 39.27.68.63 dst_ip 31.134.36.130 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10645 flower src_mac 02:0e:94:91:16:27 dst_mac 02:76:84:40:78:83 vlan_id 1369 vlan_ethtype 0x0800 src_ip 39.36.48.200 dst_ip 23.100.168.143 ip_proto tcp src_port 48290 dst_port 15309 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10646 flower src_mac 02:c8:13:c1:c5:ce dst_mac 02:0c:c9:4a:7a:8a src_ip 111.95.94.183 dst_ip 67.18.42.232 ip_proto icmp code 9 type 0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10647 flower src_mac 02:3b:37:bf:b1:c4 dst_mac 02:54:f1:93:dd:19 src_ip 51.53.204.215 dst_ip 60.21.98.43 ip_proto icmp code 120 type 15 action pass && tc filter add dev swp33 ingress protocol ip pref 10648 flower src_mac 02:71:30:71:40:ec dst_mac 02:d1:70:c8:47:44 src_ip 121.9.150.140 dst_ip 113.152.7.177 ip_proto icmp code 32 type 15 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10649 flower src_mac 02:38:d7:3a:b8:90 dst_mac 02:66:32:d0:7f:cc src_ip 74.128.72.215 dst_ip 110.82.222.45 ip_proto udp src_port 58589 dst_port 55659 action pass && tc filter add dev swp33 ingress protocol ip pref 10650 flower src_mac 02:8c:31:1e:0f:1b dst_mac 02:a6:2c:d2:dd:3b src_ip 54.14.250.172 dst_ip 40.62.236.187 ip_proto icmp code 208 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10651 flower src_mac 02:80:0a:d4:18:14 dst_mac 02:af:29:9a:6f:05 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10652 flower src_mac 02:4f:4e:94:48:28 dst_mac 02:ec:96:42:cb:9b src_ip 96.108.179.58 dst_ip 94.87.181.155 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10653 flower src_mac 02:dc:c3:17:93:19 dst_mac 02:bf:95:d7:d1:ae vlan_id 2344 vlan_ethtype 0x0800 src_ip 36.133.55.185 dst_ip 90.204.144.35 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10654 flower src_mac 02:38:48:7c:33:fc dst_mac 02:8a:be:e8:23:0d vlan_id 2947 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10655 flower src_mac 02:e6:ac:d4:fb:1f dst_mac 02:41:51:c7:df:46 vlan_id 540 vlan_ethtype ip src_ip 68.76.51.100 dst_ip 113.120.182.212 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10656 flower src_mac 02:cd:91:93:2a:36 dst_mac 02:a4:36:af:09:5c src_ip 32.220.195.95 dst_ip 14.112.224.56 ip_proto udp src_port 59799 dst_port 43158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10657 flower src_mac 02:99:49:61:a6:e5 dst_mac 02:af:36:23:f5:40 vlan_id 2739 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10658 flower src_mac 02:52:2c:5c:0e:c2 dst_mac 02:f6:4a:1a:9d:8e vlan_id 2171 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10659 flower src_mac 02:37:55:0e:9b:28 dst_mac 02:4c:bb:95:7a:03 src_ip 82.253.79.148 dst_ip 47.254.130.168 ip_proto udp src_port 47386 dst_port 22794 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10660 flower src_mac 02:ee:a1:1f:be:2f dst_mac 02:8d:74:01:f2:4e vlan_id 2529 vlan_ethtype ipv4 src_ip 105.48.208.44 dst_ip 43.255.121.215 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10661 flower src_mac 02:74:25:7a:80:39 dst_mac 02:4d:29:7d:3b:fb vlan_id 420 vlan_ethtype ip src_ip 80.144.164.54 dst_ip 50.87.76.173 ip_proto tcp src_port 9890 dst_port 48807 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10662 flower src_mac 02:cd:8a:f3:67:93 dst_mac 02:07:e6:47:26:d1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10663 flower src_mac 02:db:c4:28:be:04 dst_mac 02:73:b2:59:17:eb vlan_id 357 vlan_ethtype 0x0800 src_ip 28.188.46.197 dst_ip 111.124.159.72 ip_proto tcp src_port 15414 dst_port 62055 action drop && tc filter add dev swp33 ingress protocol ip pref 10664 flower src_mac 02:8f:bc:77:12:fc dst_mac 02:4a:74:d1:29:e6 src_ip 48.97.159.123 dst_ip 56.176.156.179 ip_proto udp src_port 36352 dst_port 3920 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10665 flower src_mac 02:df:50:ce:b9:8f dst_mac 02:39:f3:5e:79:06 vlan_id 3373 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10666 flower src_mac 02:69:80:30:3a:34 dst_mac 02:9c:67:ea:73:b8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10667 flower src_mac 02:a4:6e:2d:23:8a dst_mac 02:9c:82:79:54:02 vlan_id 2394 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10668 flower src_mac 02:3e:b8:81:ce:e5 dst_mac 02:4f:da:5e:87:b2 vlan_id 2767 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10669 flower src_mac 02:d1:de:ba:4a:c1 dst_mac 02:c9:f0:65:a2:3e action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10670 flower src_mac 02:9c:71:16:5a:00 dst_mac 02:e4:d0:52:a3:90 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10671 flower src_mac 02:b0:7a:67:ea:b6 dst_mac 02:67:4a:b3:3e:6d src_ip 17.100.87.105 dst_ip 17.205.226.78 ip_proto udp src_port 51081 dst_port 34477 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10672 flower src_mac 02:9e:85:f0:35:f0 dst_mac 02:f8:f8:38:52:b2 vlan_id 2797 vlan_ethtype ip src_ip 54.95.27.192 dst_ip 118.128.109.69 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10673 flower src_mac 02:58:d2:e9:d2:77 dst_mac 02:6e:c1:cb:70:d1 src_ip 31.227.150.60 dst_ip 100.3.97.207 action trap && tc filter add dev swp33 ingress protocol ip pref 10674 flower src_mac 02:9d:90:2a:28:55 dst_mac 02:64:35:35:10:fd src_ip 107.33.158.134 dst_ip 76.188.130.56 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10675 flower src_mac 02:16:72:c2:f4:98 dst_mac 02:00:fc:92:50:e5 src_ip 72.184.193.247 dst_ip 80.144.31.228 ip_proto udp src_port 24940 dst_port 9671 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10676 flower src_mac 02:eb:09:b5:e5:75 dst_mac 02:2b:7d:cf:97:52 vlan_id 693 vlan_ethtype ip src_ip 55.119.165.73 dst_ip 54.120.246.126 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10677 flower src_mac 02:31:05:34:1e:0c dst_mac 02:9f:6e:79:e9:cf src_ip 23.75.95.140 dst_ip 22.151.87.94 ip_proto tcp src_port 46881 dst_port 1467 action drop && tc filter add dev swp33 ingress protocol ip pref 10678 flower src_mac 02:a5:fb:f1:ce:c4 dst_mac 02:9c:85:1c:92:15 src_ip 17.106.179.126 dst_ip 55.94.226.206 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10679 flower src_mac 02:21:0a:54:2f:55 dst_mac 02:5c:dc:e0:e0:4c vlan_id 448 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10680 flower src_mac 02:40:32:15:65:b6 dst_mac 02:dc:b4:36:77:63 vlan_id 2481 vlan_ethtype ip src_ip 59.63.244.60 dst_ip 125.118.115.104 ip_proto tcp src_port 63822 dst_port 1115 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10681 flower src_mac 02:71:f5:4f:7c:5f dst_mac 02:c0:25:03:ae:79 vlan_id 3927 vlan_ethtype ipv4 src_ip 26.245.142.182 dst_ip 119.179.99.179 ip_proto udp src_port 1323 dst_port 22367 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10682 flower src_mac 02:fd:f4:d7:70:91 dst_mac 02:59:85:fb:b0:27 src_ip 49.70.13.207 dst_ip 31.10.239.26 ip_proto udp src_port 61967 dst_port 41562 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10683 flower src_mac 02:1e:45:2a:e3:ad dst_mac 02:8f:c9:a6:42:5f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10684 flower src_mac 02:53:7d:14:ae:20 dst_mac 02:20:66:ca:d5:4b vlan_id 962 vlan_ethtype ipv4 src_ip 100.5.202.106 dst_ip 81.4.27.194 ip_proto tcp src_port 33474 dst_port 2407 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10685 flower src_mac 02:c4:2e:99:dd:11 dst_mac 02:91:b9:ee:64:cd vlan_id 534 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10686 flower src_mac 02:5e:47:70:56:f3 dst_mac 02:76:21:6d:5d:6d src_ip 118.145.83.94 dst_ip 42.109.78.74 ip_proto udp src_port 54011 dst_port 57019 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10687 flower src_mac 02:7a:1d:c9:b6:7e dst_mac 02:4c:c3:9e:38:7c vlan_id 731 vlan_ethtype ip src_ip 116.60.200.234 dst_ip 85.139.214.105 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10688 flower src_mac 02:d4:a1:a8:72:af dst_mac 02:16:1b:b8:1b:47 vlan_id 105 vlan_ethtype ip src_ip 119.239.48.125 dst_ip 122.160.128.144 ip_proto tcp src_port 22357 dst_port 54867 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10689 flower src_mac 02:f2:e3:33:52:71 dst_mac 02:4c:3e:41:8a:e5 vlan_id 1717 vlan_ethtype ip src_ip 41.8.94.77 dst_ip 75.191.154.21 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10690 flower src_mac 02:fa:32:55:d8:c5 dst_mac 02:2a:48:ac:5e:2b action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:3a:ee:c0:90:f9 dst_mac 02:f8:8a:2c:d3:a4 vlan_id 3559 vlan_ethtype 0x0800 src_ip 103.218.227.204 dst_ip 98.41.209.206 ip_proto tcp src_port 56646 dst_port 38545 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10692 flower src_mac 02:e8:f4:c9:d5:55 dst_mac 02:9c:b3:a9:5a:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10693 flower src_mac 02:92:19:bd:1b:55 dst_mac 02:51:c4:9f:f6:4f vlan_id 2555 vlan_ethtype ipv4 src_ip 107.122.104.42 dst_ip 118.190.56.9 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10694 flower src_mac 02:dc:ce:c2:58:8a dst_mac 02:c2:87:5a:69:d0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10695 flower src_mac 02:f3:67:07:50:53 dst_mac 02:00:a9:52:56:75 vlan_id 3131 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10696 flower src_mac 02:f8:7e:21:6f:24 dst_mac 02:ed:01:a4:57:cf src_ip 69.47.47.172 dst_ip 45.222.253.17 ip_proto tcp src_port 12513 dst_port 28187 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10697 flower src_mac 02:a6:f5:c6:bb:81 dst_mac 02:b8:a6:fb:96:c8 vlan_id 3619 vlan_ethtype ip src_ip 21.5.107.19 dst_ip 95.234.80.102 ip_proto udp src_port 31188 dst_port 110 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10698 flower src_mac 02:c4:af:94:e7:ca dst_mac 02:a9:4c:09:ac:f9 vlan_id 3599 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10699 flower src_mac 02:c3:2a:54:b9:be dst_mac 02:b9:63:8c:83:35 vlan_id 2318 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10700 flower src_mac 02:7f:7e:7d:d5:2d dst_mac 02:6e:6b:7a:ca:0d src_ip 39.238.205.155 dst_ip 112.72.28.239 ip_proto icmp code 17 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10701 flower src_mac 02:7a:86:c8:b2:c9 dst_mac 02:36:c4:9f:1b:f5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10702 flower src_mac 02:29:ca:91:61:7d dst_mac 02:31:3d:4b:48:83 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10703 flower src_mac 02:18:ab:0c:b4:2e dst_mac 02:7c:27:51:8e:40 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10704 flower src_mac 02:30:c0:1c:c2:9b dst_mac 02:30:b5:96:a8:7a vlan_id 1658 vlan_ethtype 0x0800 src_ip 50.76.91.249 dst_ip 37.160.94.73 ip_proto tcp src_port 33241 dst_port 22312 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10705 flower src_mac 02:0c:8c:f3:8f:ea dst_mac 02:35:c9:4a:57:bd vlan_id 3482 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10706 flower src_mac 02:cd:68:22:5e:6e dst_mac 02:8d:88:6b:04:e2 vlan_id 3424 vlan_ethtype 0x0800 src_ip 42.13.10.2 dst_ip 18.116.53.197 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10707 flower src_mac 02:70:83:52:65:ef dst_mac 02:c1:0c:e9:53:91 src_ip 92.247.138.60 dst_ip 77.210.214.8 ip_proto udp src_port 39899 dst_port 22407 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10708 flower src_mac 02:43:ec:fa:5a:32 dst_mac 02:4c:f8:5f:4d:61 vlan_id 3900 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10709 flower src_mac 02:e7:85:48:f0:e3 dst_mac 02:44:26:86:a1:1d action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10710 flower src_mac 02:7b:49:f8:04:7c dst_mac 02:81:96:d8:15:68 src_ip 46.205.166.137 dst_ip 53.99.67.6 ip_proto icmp code 152 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10711 flower src_mac 02:1a:c1:74:16:0d dst_mac 02:dc:8c:09:84:09 vlan_id 2349 vlan_ethtype ipv4 src_ip 103.13.132.2 dst_ip 57.22.154.71 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10712 flower src_mac 02:91:13:6c:fc:86 dst_mac 02:45:93:70:55:c8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10713 flower src_mac 02:8d:2e:a2:10:3e dst_mac 02:93:76:7a:11:3e vlan_id 814 vlan_ethtype 0x0800 src_ip 12.88.109.107 dst_ip 53.179.205.202 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10714 flower src_mac 02:e2:77:2b:07:3b dst_mac 02:b6:a9:6b:b5:f0 vlan_id 888 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10715 flower src_mac 02:f5:8f:4b:3b:9a dst_mac 02:b9:7e:44:93:32 src_ip 60.253.12.152 dst_ip 53.18.98.19 ip_proto tcp src_port 37910 dst_port 40679 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10716 flower src_mac 02:b4:b9:bc:28:fe dst_mac 02:c5:bd:9d:2d:ec action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10717 flower src_mac 02:82:47:9f:b7:66 dst_mac 02:86:71:cb:ee:06 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10718 flower src_mac 02:33:b3:a0:6d:b0 dst_mac 02:7b:48:95:32:dc vlan_id 2971 vlan_ethtype 0x0800 src_ip 119.16.48.151 dst_ip 58.163.173.93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10719 flower src_mac 02:5a:65:5d:d7:fc dst_mac 02:3f:99:86:9e:cb vlan_id 2892 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10720 flower src_mac 02:89:61:dd:bb:83 dst_mac 02:8e:1e:7f:2e:05 src_ip 34.22.159.188 dst_ip 49.106.178.175 ip_proto udp src_port 28374 dst_port 59987 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10721 flower src_mac 02:08:fa:9a:e5:e6 dst_mac 02:47:7e:82:c5:c5 src_ip 56.252.253.157 dst_ip 11.233.158.133 ip_proto tcp src_port 43869 dst_port 37286 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10722 flower src_mac 02:f0:98:dd:28:35 dst_mac 02:90:b4:3f:e6:06 vlan_id 196 vlan_ethtype ip src_ip 76.241.211.33 dst_ip 106.14.235.98 ip_proto tcp src_port 5805 dst_port 49001 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10723 flower src_mac 02:13:f4:2e:74:31 dst_mac 02:ba:a8:6a:58:23 vlan_id 1129 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10724 flower src_mac 02:25:c0:33:03:3a dst_mac 02:39:2f:09:ac:53 src_ip 15.24.0.60 dst_ip 36.38.168.118 ip_proto icmp code 184 type 5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10725 flower src_mac 02:12:ba:e3:1f:aa dst_mac 02:8a:d8:dc:05:04 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10726 flower src_mac 02:98:3d:89:ce:a1 dst_mac 02:e5:9d:fb:11:e4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10727 flower src_mac 02:41:aa:99:9f:21 dst_mac 02:d6:47:9d:8c:79 vlan_id 354 vlan_ethtype ip src_ip 50.25.103.167 dst_ip 30.179.2.35 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10728 flower src_mac 02:d7:8f:88:db:f1 dst_mac 02:27:a7:39:28:67 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:bf:3d:fe:70:ec dst_mac 02:d1:33:30:1f:14 vlan_id 1270 vlan_ethtype 0x0800 src_ip 55.205.69.180 dst_ip 124.8.235.167 ip_proto tcp src_port 49341 dst_port 15332 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10730 flower src_mac 02:e8:f0:c9:e8:21 dst_mac 02:41:c8:a4:00:67 vlan_id 106 vlan_ethtype ipv4 src_ip 16.140.91.53 dst_ip 63.183.39.144 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10731 flower src_mac 02:87:75:ec:55:39 dst_mac 02:a1:5d:95:f2:99 vlan_id 2606 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10732 flower src_mac 02:a0:ce:12:df:4f dst_mac 02:87:a4:d8:a7:3a src_ip 48.122.127.193 dst_ip 36.141.200.90 ip_proto icmp code 211 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10733 flower src_mac 02:2f:fc:83:e9:4c dst_mac 02:23:0f:e6:bf:fd vlan_id 2620 vlan_ethtype ipv4 src_ip 77.43.45.110 dst_ip 24.165.197.157 ip_proto udp src_port 33489 dst_port 40871 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10734 flower src_mac 02:10:d2:82:33:39 dst_mac 02:ef:40:67:01:ad src_ip 108.217.244.229 dst_ip 125.207.193.95 ip_proto icmp code 123 type 8 action pass && tc filter add dev swp33 ingress protocol ip pref 10735 flower src_mac 02:a5:55:53:85:fd dst_mac 02:9b:55:89:ce:f0 src_ip 44.99.2.24 dst_ip 70.47.214.111 ip_proto udp src_port 53035 dst_port 17778 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10736 flower src_mac 02:64:79:c5:07:4b dst_mac 02:b6:d0:10:2f:02 vlan_id 1143 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10737 flower src_mac 02:c1:f0:33:e7:d0 dst_mac 02:f2:a0:39:9d:3c action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10738 flower src_mac 02:ab:80:74:f6:bc dst_mac 02:86:a8:38:a3:86 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10739 flower src_mac 02:f9:e9:46:79:aa dst_mac 02:ef:b3:7e:c6:f7 src_ip 27.140.49.78 dst_ip 35.113.110.42 ip_proto udp src_port 51107 dst_port 60409 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10740 flower src_mac 02:32:aa:dd:03:a6 dst_mac 02:9c:60:42:e8:04 vlan_id 560 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10741 flower src_mac 02:a9:be:7f:83:42 dst_mac 02:7d:3a:34:9a:b0 vlan_id 3577 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10742 flower src_mac 02:5b:8b:0f:96:50 dst_mac 02:27:a0:12:e4:c2 vlan_id 2056 vlan_ethtype 0x0800 src_ip 19.9.75.45 dst_ip 84.84.55.24 ip_proto tcp src_port 18494 dst_port 51926 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:d5:e4:89:c1:d8 dst_mac 02:9c:64:66:12:45 vlan_id 906 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10744 flower src_mac 02:ac:59:90:e0:82 dst_mac 02:44:d0:ae:b1:3b src_ip 16.159.145.59 dst_ip 88.150.107.30 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10745 flower src_mac 02:29:33:41:fe:ef dst_mac 02:71:08:8d:89:d4 vlan_id 1823 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10746 flower src_mac 02:da:ad:66:ff:a6 dst_mac 02:3f:96:ac:35:f5 vlan_id 1906 vlan_ethtype 0x0800 src_ip 25.207.47.188 dst_ip 89.109.206.90 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10747 flower src_mac 02:0b:ac:db:82:7a dst_mac 02:2c:39:8a:41:b2 src_ip 44.66.9.223 dst_ip 18.149.149.49 ip_proto icmp code 105 type 12 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10748 flower src_mac 02:a7:54:d5:ed:a7 dst_mac 02:80:c8:fa:15:18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10749 flower src_mac 02:00:77:ce:9b:bd dst_mac 02:d5:2e:68:b3:3b vlan_id 632 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:9d:f6:07:73:a8 dst_mac 02:6d:01:db:1b:6d vlan_id 2721 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10751 flower src_mac 02:30:18:e8:0c:b5 dst_mac 02:84:c2:3d:0f:a5 src_ip 101.128.182.69 dst_ip 24.178.188.47 ip_proto tcp src_port 16734 dst_port 64508 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10752 flower src_mac 02:d5:96:4b:58:be dst_mac 02:af:0b:4a:57:2b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10753 flower src_mac 02:fd:cb:59:c8:3c dst_mac 02:f8:cb:e1:d1:be action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10754 flower src_mac 02:7a:83:2c:2a:23 dst_mac 02:7d:74:9a:03:22 vlan_id 784 vlan_ethtype ip src_ip 22.91.202.86 dst_ip 79.124.164.68 ip_proto udp src_port 59238 dst_port 21198 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10755 flower src_mac 02:01:e8:72:7a:f4 dst_mac 02:97:5a:f0:2c:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10756 flower src_mac 02:c9:81:27:7f:5d dst_mac 02:cd:4b:64:cb:0b vlan_id 3908 vlan_ethtype ip src_ip 67.133.25.84 dst_ip 84.54.71.12 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10757 flower src_mac 02:f2:b5:8e:3a:b1 dst_mac 02:f4:9c:d3:a5:55 vlan_id 1837 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10758 flower src_mac 02:28:75:c2:55:97 dst_mac 02:e8:65:02:48:22 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10759 flower src_mac 02:ce:ad:29:f0:ba dst_mac 02:85:22:ce:5b:82 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10760 flower src_mac 02:1d:39:3f:89:66 dst_mac 02:3b:49:06:c2:93 src_ip 112.101.140.170 dst_ip 126.37.7.221 ip_proto udp src_port 54504 dst_port 43236 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10761 flower src_mac 02:ce:56:5a:99:a2 dst_mac 02:15:d3:c9:64:63 vlan_id 202 vlan_ethtype ip src_ip 61.106.235.13 dst_ip 82.144.6.52 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10762 flower src_mac 02:c0:fb:0d:ce:59 dst_mac 02:0e:23:ff:14:55 vlan_id 2759 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10763 flower src_mac 02:5e:0a:fd:e4:e5 dst_mac 02:80:97:56:fd:4a action trap && tc filter add dev swp33 ingress protocol ip pref 10764 flower src_mac 02:5b:1b:6b:8d:78 dst_mac 02:c2:53:7a:64:07 src_ip 52.231.55.229 dst_ip 31.248.214.174 ip_proto udp src_port 5787 dst_port 41193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10765 flower src_mac 02:10:13:96:f8:f2 dst_mac 02:65:ff:37:25:04 vlan_id 2817 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10766 flower src_mac 02:76:b6:ef:ab:a9 dst_mac 02:02:d6:ae:a7:2d vlan_id 878 vlan_ethtype ipv4 src_ip 22.174.95.24 dst_ip 121.202.218.145 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10767 flower src_mac 02:43:3f:aa:f2:57 dst_mac 02:4e:e2:ba:64:08 vlan_id 3981 vlan_ethtype ipv4 src_ip 39.65.134.10 dst_ip 14.250.95.78 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10768 flower src_mac 02:35:68:50:53:55 dst_mac 02:3a:25:12:09:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10769 flower src_mac 02:63:6a:1b:f1:8a dst_mac 02:42:59:43:54:a5 vlan_id 3577 vlan_ethtype ip src_ip 93.177.201.165 dst_ip 102.235.24.162 ip_proto tcp src_port 1155 dst_port 18032 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10770 flower src_mac 02:d0:bd:08:d9:2e dst_mac 02:33:11:39:e3:d7 vlan_id 2906 vlan_ethtype 0x0800 src_ip 106.139.167.130 dst_ip 66.39.154.239 ip_proto tcp src_port 6556 dst_port 63992 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10771 flower src_mac 02:b7:95:ea:b4:d4 dst_mac 02:8f:fc:ee:42:ea vlan_id 805 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10772 flower src_mac 02:a2:fb:5f:ac:ab dst_mac 02:7b:65:ba:b4:8d src_ip 95.147.114.211 dst_ip 78.205.41.85 ip_proto tcp src_port 57810 dst_port 43968 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10773 flower src_mac 02:d1:49:df:e5:29 dst_mac 02:f9:c2:22:94:8c vlan_id 3087 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10774 flower src_mac 02:92:95:e6:bd:9c dst_mac 02:e3:1a:12:89:46 vlan_id 3484 vlan_ethtype ipv4 src_ip 66.243.5.222 dst_ip 60.65.188.194 ip_proto udp src_port 47525 dst_port 65257 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10775 flower src_mac 02:a2:24:52:94:1d dst_mac 02:3c:aa:2b:3c:31 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10776 flower src_mac 02:64:ca:83:3d:c9 dst_mac 02:f9:48:9a:6a:f0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10777 flower src_mac 02:36:ba:38:5b:de dst_mac 02:38:93:ae:27:6e vlan_id 2120 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10778 flower src_mac 02:72:38:fd:28:0f dst_mac 02:fa:6a:a6:a2:4b vlan_id 1837 vlan_ethtype ip src_ip 18.126.79.68 dst_ip 90.79.48.110 ip_proto tcp src_port 18598 dst_port 17582 action trap && tc filter add dev swp33 ingress protocol ip pref 10779 flower src_mac 02:85:5c:3e:87:44 dst_mac 02:c8:63:e8:bb:39 src_ip 61.163.136.239 dst_ip 66.189.165.32 ip_proto tcp src_port 2202 dst_port 10324 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10780 flower src_mac 02:0e:0c:69:71:07 dst_mac 02:4d:f2:27:03:27 vlan_id 3311 vlan_ethtype ip src_ip 20.54.93.24 dst_ip 11.236.86.162 ip_proto udp src_port 51762 dst_port 1830 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10781 flower src_mac 02:77:34:2a:ac:0e dst_mac 02:25:75:bc:f6:94 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10782 flower src_mac 02:ab:57:0e:2c:1f dst_mac 02:0d:84:8e:ac:cd src_ip 91.159.141.247 dst_ip 42.100.114.13 ip_proto udp src_port 63868 dst_port 12205 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10783 flower src_mac 02:59:ef:b5:a0:e4 dst_mac 02:44:70:5f:d5:2d action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10784 flower src_mac 02:70:67:fb:50:1f dst_mac 02:ee:1b:61:1d:d1 src_ip 44.60.89.84 dst_ip 87.150.202.175 ip_proto udp src_port 52678 dst_port 27760 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10785 flower src_mac 02:3b:cb:78:e2:1e dst_mac 02:49:b4:77:25:c7 src_ip 63.2.44.55 dst_ip 44.81.207.57 ip_proto icmp code 247 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:f1:36:d2:e3:2e dst_mac 02:63:24:b8:56:e3 vlan_id 20 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10787 flower src_mac 02:00:85:39:5c:ed dst_mac 02:c3:e6:91:02:16 vlan_id 2170 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10788 flower src_mac 02:ae:9b:9d:a3:ed dst_mac 02:23:d3:4c:3a:fe vlan_id 3656 vlan_ethtype 0x0800 src_ip 108.35.161.138 dst_ip 92.137.156.173 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10789 flower src_mac 02:4b:33:26:54:03 dst_mac 02:65:5b:fb:bd:17 vlan_id 1662 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10790 flower src_mac 02:2b:54:21:84:af dst_mac 02:04:f3:ff:25:58 src_ip 59.240.212.195 dst_ip 119.20.30.177 ip_proto tcp src_port 1353 dst_port 60844 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:c6:c9:24:01:89 dst_mac 02:b4:02:9e:f3:f0 vlan_id 3108 vlan_ethtype ipv4 src_ip 29.29.21.117 dst_ip 75.68.212.212 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10792 flower src_mac 02:51:7b:08:76:99 dst_mac 02:bd:f2:5d:47:47 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10793 flower src_mac 02:ae:47:bb:e7:63 dst_mac 02:1b:d4:55:87:87 src_ip 52.10.93.101 dst_ip 57.55.82.160 ip_proto icmp code 214 type 11 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10794 flower src_mac 02:34:31:a5:62:2f dst_mac 02:1a:3f:68:fe:2c vlan_id 859 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10795 flower src_mac 02:ce:5e:9e:84:11 dst_mac 02:7e:7d:b0:89:69 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10796 flower src_mac 02:64:0d:96:f6:39 dst_mac 02:41:41:30:12:53 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10797 flower src_mac 02:ba:b7:76:1d:c2 dst_mac 02:99:a6:22:90:8c src_ip 124.89.172.191 dst_ip 38.61.38.133 ip_proto icmp code 198 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10798 flower src_mac 02:78:08:6c:37:c8 dst_mac 02:4e:36:fe:93:7a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10799 flower src_mac 02:dd:5b:0c:02:bc dst_mac 02:78:36:84:f1:82 vlan_id 661 vlan_ethtype ipv4 src_ip 35.237.154.37 dst_ip 16.119.4.87 action drop INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:b5:2a:0f:cf:18 dst_mac 02:01:ce:47:05:e8 vlan_id 1441 vlan_ethtype ip src_ip 123.230.252.154 dst_ip 117.124.170.43 ip_proto udp src_port 61251 dst_port 55003 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10801 flower src_mac 02:63:b1:8d:9c:c0 dst_mac 02:4a:4e:e7:a5:62 vlan_id 2045 vlan_ethtype ip src_ip 59.97.234.117 dst_ip 19.31.134.89 ip_proto tcp src_port 23785 dst_port 14733 action drop && tc filter add dev swp33 ingress protocol ip pref 10802 flower src_mac 02:8c:a4:a0:31:62 dst_mac 02:29:8d:5c:01:09 src_ip 61.96.14.103 dst_ip 75.175.157.136 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10803 flower src_mac 02:f6:9d:9e:57:6d dst_mac 02:66:50:3b:f8:ef action drop && tc filter add dev swp33 ingress protocol ip pref 10804 flower src_mac 02:53:e4:06:ce:fb dst_mac 02:24:e8:30:ab:4c src_ip 57.255.103.160 dst_ip 104.136.248.196 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10805 flower src_mac 02:68:b0:10:91:5f dst_mac 02:7b:98:54:f3:92 vlan_id 2154 vlan_ethtype ipv4 src_ip 96.130.12.65 dst_ip 113.164.51.112 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10806 flower src_mac 02:e6:e8:2a:49:95 dst_mac 02:cc:8c:ca:f6:a9 src_ip 105.151.246.74 dst_ip 39.44.79.205 ip_proto udp src_port 58581 dst_port 26624 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10807 flower src_mac 02:d1:8c:a5:cb:21 dst_mac 02:6b:4a:9b:82:92 vlan_id 3526 vlan_ethtype 0x0800 src_ip 122.216.199.73 dst_ip 14.103.27.59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10808 flower src_mac 02:5a:4c:a4:87:c5 dst_mac 02:88:f2:f0:c4:f4 vlan_id 2765 vlan_ethtype ipv4 src_ip 12.166.44.221 dst_ip 114.4.136.36 ip_proto tcp src_port 8261 dst_port 37120 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10809 flower src_mac 02:51:b9:fa:03:f2 dst_mac 02:20:bd:9f:0d:4f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10810 flower src_mac 02:fe:0e:39:e7:36 dst_mac 02:0e:f6:4f:4c:f4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:fe:e3:fb:fa:70 dst_mac 02:b3:52:7d:7d:7f vlan_id 3770 vlan_ethtype ipv4 src_ip 65.130.25.26 dst_ip 55.201.46.31 ip_proto tcp src_port 51438 dst_port 64138 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10812 flower src_mac 02:ca:01:a9:e4:67 dst_mac 02:0a:02:ef:f0:c9 vlan_id 177 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:8f:2e:ff:25:40 dst_mac 02:4c:74:70:55:6f vlan_id 443 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10814 flower src_mac 02:eb:29:4b:cf:ad dst_mac 02:1d:e7:66:59:bc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10815 flower src_mac 02:5a:1c:cd:9b:86 dst_mac 02:f3:7e:fa:10:04 vlan_id 3348 vlan_ethtype 0x0800 src_ip 41.83.99.201 dst_ip 37.1.73.101 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10816 flower src_mac 02:05:d1:b3:ec:b4 dst_mac 02:83:c6:54:71:ad vlan_id 991 vlan_ethtype ip src_ip 30.244.191.22 dst_ip 71.170.142.88 ip_proto tcp src_port 58336 dst_port 27206 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10817 flower src_mac 02:0e:08:be:13:5b dst_mac 02:9d:c8:69:b7:2e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:ba:d1:57:65:04 dst_mac 02:6e:64:98:94:5f vlan_id 2832 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10819 flower src_mac 02:3e:e5:3b:03:6f dst_mac 02:d6:a9:87:19:48 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10820 flower src_mac 02:21:64:67:92:2f dst_mac 02:46:03:86:6d:79 vlan_id 1822 vlan_ethtype 0x0800 src_ip 13.88.79.160 dst_ip 93.4.244.32 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10821 flower src_mac 02:e0:e2:10:2d:61 dst_mac 02:64:94:9e:51:8a src_ip 50.163.210.171 dst_ip 32.118.76.141 ip_proto tcp src_port 17201 dst_port 50140 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:bc:94:85:de:c4 dst_mac 02:85:11:4f:10:3b vlan_id 2568 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10823 flower src_mac 02:25:57:c4:3e:9a dst_mac 02:ad:6a:1b:47:07 vlan_id 3119 vlan_ethtype ipv4 src_ip 79.93.14.107 dst_ip 41.147.140.114 ip_proto udp src_port 31250 dst_port 51188 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10824 flower src_mac 02:5b:2e:ce:83:48 dst_mac 02:b3:f6:e8:91:9e src_ip 37.219.134.79 dst_ip 54.168.201.164 ip_proto icmp code 116 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10825 flower src_mac 02:ea:b9:8f:4e:59 dst_mac 02:83:e7:cd:d9:ec action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10826 flower src_mac 02:06:e3:a1:56:72 dst_mac 02:45:17:65:2d:fb src_ip 86.197.240.178 dst_ip 77.85.119.53 ip_proto tcp src_port 55835 dst_port 10309 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10827 flower src_mac 02:0b:49:87:ef:c2 dst_mac 02:d0:ae:59:e5:28 src_ip 77.233.114.203 dst_ip 14.183.121.124 ip_proto icmp code 142 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10828 flower src_mac 02:a4:65:f3:19:f8 dst_mac 02:69:f5:1e:26:ae src_ip 109.157.173.217 dst_ip 60.131.245.173 ip_proto udp src_port 33269 dst_port 27671 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10829 flower src_mac 02:6a:19:8f:dd:aa dst_mac 02:45:47:be:4b:f2 src_ip 86.16.185.56 dst_ip 33.193.0.113 ip_proto icmp code 223 type 8 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10830 flower src_mac 02:b4:16:b9:3d:cb dst_mac 02:80:be:06:55:da src_ip 71.136.6.202 dst_ip 30.117.210.177 ip_proto tcp src_port 47922 dst_port 38878 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10831 flower src_mac 02:7f:52:90:4e:0d dst_mac 02:80:ad:44:c4:50 vlan_id 1691 vlan_ethtype 0x0800 src_ip 48.123.255.58 dst_ip 54.18.44.33 ip_proto tcp src_port 34186 dst_port 61113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:a4:ef:7e:ac:68 dst_mac 02:9b:e9:ec:42:91 vlan_id 30 vlan_ethtype ipv4 src_ip 18.207.136.100 dst_ip 65.244.52.97 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10833 flower src_mac 02:4d:a1:60:b1:b7 dst_mac 02:41:d5:8c:4c:73 src_ip 125.8.22.172 dst_ip 58.220.107.159 ip_proto icmp code 225 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:f7:4b:b3:46:f6 dst_mac 02:a0:ec:b1:ec:4d vlan_id 3927 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10835 flower src_mac 02:f4:38:8f:ec:74 dst_mac 02:c9:86:4b:d5:a2 vlan_id 1206 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:1f:de:2a:f6:66 dst_mac 02:96:d0:38:4a:41 vlan_id 3037 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10837 flower src_mac 02:a1:09:d0:17:c1 dst_mac 02:74:e7:59:17:37 vlan_id 4049 vlan_ethtype ip src_ip 81.53.218.174 dst_ip 79.149.73.147 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10838 flower src_mac 02:09:c1:eb:9d:d0 dst_mac 02:2f:83:12:a9:16 vlan_id 935 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10839 flower src_mac 02:3e:aa:f2:65:d2 dst_mac 02:f4:8a:89:f7:0a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10840 flower src_mac 02:83:8b:95:02:77 dst_mac 02:7a:84:67:9a:d3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:0a:c3:fd:b7:a3 dst_mac 02:be:bb:f0:58:19 vlan_id 2096 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:b7:4f:65:e0:72 dst_mac 02:d3:e8:cc:6a:02 vlan_id 1743 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:e4:a8:d8:4f:48 dst_mac 02:59:54:c5:b6:f4 vlan_id 709 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10844 flower src_mac 02:80:38:c4:19:88 dst_mac 02:b3:9b:2b:e8:3e src_ip 42.50.234.101 dst_ip 69.185.149.173 ip_proto tcp src_port 60730 dst_port 19061 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:eb:46:48:b7:e2 dst_mac 02:20:ab:3c:8c:5b vlan_id 1579 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10846 flower src_mac 02:9a:0d:ea:06:e0 dst_mac 02:e2:8a:e4:ee:5f action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10847 flower src_mac 02:d0:7d:9b:6f:ba dst_mac 02:0e:45:18:f1:8e action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10848 flower src_mac 02:6c:16:0b:36:47 dst_mac 02:8d:03:8b:60:39 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10849 flower src_mac 02:44:ea:95:b9:68 dst_mac 02:b6:b1:a9:32:d1 src_ip 65.51.115.212 dst_ip 37.97.162.129 ip_proto icmp code 56 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:66:39:82:00:e6 dst_mac 02:1b:a1:c9:b0:fc vlan_id 3284 vlan_ethtype ipv4 src_ip 24.2.41.203 dst_ip 22.26.153.79 ip_proto tcp src_port 56054 dst_port 45216 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10851 flower src_mac 02:4d:8c:1b:8b:d2 dst_mac 02:a5:69:d3:4e:d7 src_ip 89.159.210.53 dst_ip 96.213.46.99 ip_proto tcp src_port 59918 dst_port 24952 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10852 flower src_mac 02:4a:eb:b3:b8:61 dst_mac 02:e2:5d:47:80:9e src_ip 18.7.110.181 dst_ip 64.87.5.215 ip_proto icmp code 215 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10853 flower src_mac 02:9f:8a:e4:a6:27 dst_mac 02:98:6c:f5:46:f0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10854 flower src_mac 02:4c:42:d0:c9:6e dst_mac 02:85:12:c1:31:f9 vlan_id 4037 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10855 flower src_mac 02:9f:85:77:dd:db dst_mac 02:37:01:42:83:29 src_ip 56.211.29.15 dst_ip 40.76.189.200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:62:54:c8:60:b7 dst_mac 02:e6:61:a0:cc:87 vlan_id 2646 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10857 flower src_mac 02:44:dc:c8:24:1e dst_mac 02:a1:56:2c:cc:91 src_ip 38.39.230.242 dst_ip 108.74.118.191 ip_proto tcp src_port 53315 dst_port 11991 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10858 flower src_mac 02:3b:b7:0e:1e:1a dst_mac 02:35:3f:af:30:f6 vlan_id 565 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10859 flower src_mac 02:41:12:27:74:13 dst_mac 02:64:c6:31:b2:60 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10860 flower src_mac 02:1a:b4:36:17:4a dst_mac 02:01:88:da:2c:0a vlan_id 2274 vlan_ethtype ip src_ip 120.2.170.168 dst_ip 43.211.46.57 ip_proto tcp src_port 60634 dst_port 38021 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10861 flower src_mac 02:97:a4:8b:15:e8 dst_mac 02:c2:90:5d:e0:4b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10862 flower src_mac 02:b9:26:82:70:d6 dst_mac 02:81:4b:22:d3:5a action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10863 flower src_mac 02:c2:68:0b:c3:15 dst_mac 02:02:a1:61:18:f7 vlan_id 2960 vlan_ethtype ipv4 src_ip 11.228.142.16 dst_ip 36.94.227.88 action pass && tc filter add dev swp33 ingress protocol ip pref 10864 flower src_mac 02:86:eb:d5:bb:8c dst_mac 02:38:ca:19:b6:ca src_ip 125.32.216.127 dst_ip 104.237.11.169 ip_proto icmp code 236 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10865 flower src_mac 02:e4:03:3d:b1:59 dst_mac 02:a4:f6:30:ca:f4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10866 flower src_mac 02:6a:0c:6b:30:fc dst_mac 02:98:a1:01:70:5d vlan_id 790 vlan_ethtype 0x0800 src_ip 74.94.79.128 dst_ip 14.115.229.71 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:f2:02:c2:f3:1b dst_mac 02:c9:7d:96:c7:88 vlan_id 3713 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10868 flower src_mac 02:f0:ea:f1:73:d3 dst_mac 02:e6:47:0c:88:6a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10869 flower src_mac 02:a5:4f:62:5b:5b dst_mac 02:b3:cc:0a:de:4e vlan_id 3106 vlan_ethtype ipv4 src_ip 43.141.93.117 dst_ip 60.23.200.160 ip_proto udp src_port 25577 dst_port 56673 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:76:a4:c3:b5:ad dst_mac 02:7b:c1:e7:51:86 vlan_id 2720 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10871 flower src_mac 02:06:e7:d4:e6:c2 dst_mac 02:33:17:67:a8:43 vlan_id 2234 vlan_ethtype 0x0800 src_ip 117.132.108.100 dst_ip 110.6.198.68 ip_proto udp src_port 8759 dst_port 44949 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10872 flower src_mac 02:33:aa:4d:90:b4 dst_mac 02:db:3b:a4:7f:68 vlan_id 2890 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10873 flower src_mac 02:c6:fe:49:32:68 dst_mac 02:03:65:b6:e2:cc src_ip 35.74.61.90 dst_ip 42.109.93.96 ip_proto udp src_port 15351 dst_port 42989 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10874 flower src_mac 02:76:04:ad:0f:31 dst_mac 02:29:c6:c6:fd:50 vlan_id 2050 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10875 flower src_mac 02:21:41:42:70:10 dst_mac 02:e8:68:37:72:a7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10876 flower src_mac 02:0f:f9:8c:2a:9e dst_mac 02:e6:c7:5a:7c:14 vlan_id 2353 vlan_ethtype ip src_ip 114.216.74.62 dst_ip 60.75.223.46 ip_proto tcp src_port 960 dst_port 57888 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10877 flower src_mac 02:59:13:66:50:08 dst_mac 02:44:44:0e:19:12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10878 flower src_mac 02:f3:76:a3:d6:62 dst_mac 02:f1:01:6b:4c:17 vlan_id 862 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:b4:ef:69:b2:f2 dst_mac 02:4f:d3:1f:e8:d6 vlan_id 491 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:f0:69:ba:18:c3 dst_mac 02:98:08:06:08:c3 vlan_id 805 vlan_ethtype 0x0800 src_ip 100.28.86.68 dst_ip 110.71.113.163 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10881 flower src_mac 02:42:c1:f9:49:c0 dst_mac 02:52:af:12:4d:af vlan_id 4002 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10882 flower src_mac 02:cf:64:d1:8e:be dst_mac 02:41:5d:db:99:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:39:9d:2a:04:fb dst_mac 02:bd:19:19:bc:2f vlan_id 3790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10884 flower src_mac 02:33:b6:47:4c:1f dst_mac 02:64:a2:e4:03:f7 vlan_id 1472 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10885 flower src_mac 02:7a:09:0a:44:2b dst_mac 02:68:6e:01:15:c9 vlan_id 1748 vlan_ethtype ipv4 src_ip 62.92.148.61 dst_ip 76.28.69.116 action pass && tc filter add dev swp33 ingress protocol ip pref 10886 flower src_mac 02:9a:d7:01:61:23 dst_mac 02:81:d6:63:a1:6b src_ip 52.75.47.15 dst_ip 120.188.64.73 ip_proto icmp code 211 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10887 flower src_mac 02:8f:fc:bc:e7:64 dst_mac 02:7e:9e:15:93:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:e0:07:a4:64:45 dst_mac 02:e3:33:83:bd:6d vlan_id 2976 vlan_ethtype 0x0800 src_ip 99.40.54.139 dst_ip 27.103.64.240 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10889 flower src_mac 02:f9:47:c0:14:0d dst_mac 02:27:45:6b:a8:d4 src_ip 30.214.205.10 dst_ip 15.25.1.94 ip_proto tcp src_port 50873 dst_port 58178 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10890 flower src_mac 02:f1:dc:4b:80:f2 dst_mac 02:ae:71:ac:2d:86 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10891 flower src_mac 02:6f:98:ac:f4:21 dst_mac 02:dd:28:32:79:24 vlan_id 2180 vlan_ethtype ip src_ip 49.61.154.69 dst_ip 80.113.2.157 ip_proto udp src_port 12687 dst_port 33397 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10892 flower src_mac 02:96:7f:2d:aa:00 dst_mac 02:de:b5:13:22:ab src_ip 115.236.175.181 dst_ip 112.120.251.59 action trap && tc filter add dev swp33 ingress protocol ip pref 10893 flower src_mac 02:44:bd:3a:cb:fc dst_mac 02:f2:7e:fc:12:06 src_ip 63.136.181.31 dst_ip 100.108.233.121 ip_proto udp src_port 59088 dst_port 38978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10894 flower src_mac 02:a7:9e:f4:e3:2e dst_mac 02:98:c1:cd:59:e0 vlan_id 981 vlan_ethtype ipv4 src_ip 124.81.88.35 dst_ip 97.214.164.189 ip_proto tcp src_port 8014 dst_port 56305 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10895 flower src_mac 02:20:d1:cb:66:30 dst_mac 02:d6:bb:f2:62:ca src_ip 109.183.150.243 dst_ip 60.184.152.165 ip_proto udp src_port 15306 dst_port 57374 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10896 flower src_mac 02:c9:8f:31:d6:19 dst_mac 02:e7:a7:db:40:f1 action drop && tc filter add dev swp33 ingress protocol ip pref 10897 flower src_mac 02:8f:38:15:bb:ef dst_mac 02:69:0b:1d:69:d6 src_ip 56.144.66.194 dst_ip 26.235.126.43 ip_proto tcp src_port 52838 dst_port 10361 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10898 flower src_mac 02:73:66:2b:28:f7 dst_mac 02:dd:dc:42:59:6c action trap && tc filter add dev swp33 ingress protocol ip pref 10899 flower src_mac 02:b5:74:5b:c9:78 dst_mac 02:3e:07:9b:84:6b src_ip 124.172.178.79 dst_ip 12.183.118.175 ip_proto tcp src_port 38833 dst_port 49181 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:db:91:3f:62:8a dst_mac 02:0d:a6:3a:3b:05 vlan_id 2085 vlan_ethtype ipv4 src_ip 57.72.37.46 dst_ip 64.55.47.169 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10901 flower src_mac 02:ae:2f:a6:be:81 dst_mac 02:31:3a:f0:9c:21 src_ip 92.91.134.104 dst_ip 14.43.216.153 ip_proto udp src_port 11401 dst_port 31323 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10902 flower src_mac 02:00:ae:72:e1:5c dst_mac 02:40:ba:6b:7e:f5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10903 flower src_mac 02:5f:f8:0e:aa:ac dst_mac 02:67:2f:5a:d1:29 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10904 flower src_mac 02:1b:05:ee:db:28 dst_mac 02:df:8b:9c:70:76 vlan_id 3132 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10905 flower src_mac 02:02:93:37:48:d3 dst_mac 02:4e:2c:d3:a6:15 vlan_id 3112 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10906 flower src_mac 02:8e:0d:45:6a:f6 dst_mac 02:be:42:ab:aa:70 vlan_id 2071 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10907 flower src_mac 02:9f:eb:c4:1c:6a dst_mac 02:f1:f2:11:55:09 vlan_id 654 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10908 flower src_mac 02:cf:c8:6e:3c:72 dst_mac 02:9f:b8:82:8d:be vlan_id 2850 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10909 flower src_mac 02:1f:14:c2:42:5e dst_mac 02:a0:59:43:8e:96 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10910 flower src_mac 02:5e:42:a7:81:23 dst_mac 02:31:4f:96:62:e2 action trap && tc filter add dev swp33 ingress protocol ip pref 10911 flower src_mac 02:c9:d1:d9:29:00 dst_mac 02:ab:08:a4:a2:2e src_ip 71.58.96.133 dst_ip 125.203.222.168 ip_proto icmp code 226 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10912 flower src_mac 02:a5:23:ba:3e:8e dst_mac 02:16:b3:7b:01:27 src_ip 52.3.129.68 dst_ip 64.72.128.122 ip_proto tcp src_port 50408 dst_port 7397 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10913 flower src_mac 02:bf:1c:c6:c2:b5 dst_mac 02:95:6a:02:f3:38 src_ip 39.85.126.184 dst_ip 102.123.97.149 ip_proto tcp src_port 5939 dst_port 14538 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10914 flower src_mac 02:06:7f:a1:74:2f dst_mac 02:b5:08:40:7e:00 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10915 flower src_mac 02:85:8c:67:7a:8a dst_mac 02:d3:92:77:83:18 vlan_id 4017 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10916 flower src_mac 02:bb:e2:c5:c1:2a dst_mac 02:59:c0:c2:cf:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:32:9e:0c:cc:e8 dst_mac 02:23:5b:f5:e8:01 vlan_id 57 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10918 flower src_mac 02:66:ee:77:ea:d7 dst_mac 02:c7:95:db:a9:04 src_ip 26.20.103.214 dst_ip 43.224.204.209 ip_proto icmp code 92 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10919 flower src_mac 02:ad:a7:8e:7c:8b dst_mac 02:a2:ad:1d:39:37 vlan_id 1804 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10920 flower src_mac 02:8d:36:2a:f2:b2 dst_mac 02:df:0b:34:fe:49 action pass && tc filter add dev swp33 ingress protocol ip pref 10921 flower src_mac 02:f9:f9:d4:f5:53 dst_mac 02:2e:d0:f1:c3:25 src_ip 20.26.128.232 dst_ip 105.216.91.7 ip_proto udp src_port 15360 dst_port 14691 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10922 flower src_mac 02:61:35:fd:2d:c5 dst_mac 02:d8:da:5c:68:07 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:1b:07:be:39:d8 dst_mac 02:af:42:6d:6a:e6 vlan_id 1330 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10924 flower src_mac 02:86:82:91:35:f5 dst_mac 02:13:af:8f:04:ac vlan_id 291 vlan_ethtype 0x0800 src_ip 80.57.251.95 dst_ip 105.0.169.183 ip_proto tcp src_port 1294 dst_port 64590 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10925 flower src_mac 02:00:75:49:98:33 dst_mac 02:fc:c2:bc:21:cd vlan_id 2453 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:ea:81:59:26:75 dst_mac 02:e9:10:01:e5:12 vlan_id 1756 vlan_ethtype 0x0800 src_ip 17.35.198.64 dst_ip 114.92.176.86 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10927 flower src_mac 02:7d:66:56:d4:f3 dst_mac 02:ff:03:9b:af:2b vlan_id 774 vlan_ethtype ipv4 src_ip 47.142.80.234 dst_ip 113.191.25.73 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10928 flower src_mac 02:dd:cb:36:c1:17 dst_mac 02:ee:10:50:0d:81 vlan_id 923 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10929 flower src_mac 02:fb:da:3b:09:26 dst_mac 02:cb:bc:fe:91:35 vlan_id 594 vlan_ethtype ipv4 src_ip 73.68.10.185 dst_ip 37.39.251.177 ip_proto udp src_port 41514 dst_port 9980 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10930 flower src_mac 02:64:2c:de:d8:2a dst_mac 02:55:1d:b1:33:db vlan_id 1760 vlan_ethtype ipv4 src_ip 89.93.62.97 dst_ip 101.189.43.194 ip_proto tcp src_port 43034 dst_port 38662 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10931 flower src_mac 02:7d:71:3b:ef:aa dst_mac 02:9f:2f:ed:fc:4a vlan_id 2906 vlan_ethtype ip src_ip 105.186.145.141 dst_ip 37.212.217.196 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10932 flower src_mac 02:f7:78:65:53:a5 dst_mac 02:cf:e6:b3:e6:46 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10933 flower src_mac 02:6c:08:6f:be:0c dst_mac 02:42:f2:7c:8f:d3 vlan_id 1751 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10934 flower src_mac 02:42:ac:17:6c:49 dst_mac 02:90:d1:c9:43:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10935 flower src_mac 02:26:d6:ba:96:57 dst_mac 02:d7:0b:99:13:6b vlan_id 1755 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10936 flower src_mac 02:89:31:cd:cf:0f dst_mac 02:26:ad:9a:71:9b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:10:f9:0e:a6:5e dst_mac 02:e9:83:70:d3:de vlan_id 3270 vlan_ethtype 0x0800 src_ip 19.9.42.43 dst_ip 36.235.224.210 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10938 flower src_mac 02:a4:6e:b7:e4:99 dst_mac 02:a3:57:84:3b:46 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10939 flower src_mac 02:11:19:01:16:b6 dst_mac 02:96:e8:3c:1e:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:c0:5d:d6:8e:53 dst_mac 02:c3:a9:70:40:ae vlan_id 938 vlan_ethtype ipv4 src_ip 55.17.101.36 dst_ip 74.97.152.84 ip_proto udp src_port 7277 dst_port 24551 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10941 flower src_mac 02:94:bc:df:09:2e dst_mac 02:72:bc:7c:8b:5c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:5a:03:c9:32:b3 dst_mac 02:8a:5a:f6:88:17 vlan_id 3264 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10943 flower src_mac 02:f4:6f:83:39:68 dst_mac 02:39:ba:31:56:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10944 flower src_mac 02:26:dc:f5:64:c3 dst_mac 02:4c:88:7f:5a:03 vlan_id 416 vlan_ethtype ip src_ip 32.51.249.214 dst_ip 97.17.123.24 ip_proto udp src_port 26886 dst_port 60300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10945 flower src_mac 02:48:5e:f9:b4:0c dst_mac 02:b3:74:93:90:65 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:44:6a:e0:6d:39 dst_mac 02:fc:39:c2:00:64 vlan_id 395 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10947 flower src_mac 02:20:1e:70:e1:13 dst_mac 02:ec:61:78:eb:5d src_ip 18.172.181.237 dst_ip 119.68.69.65 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10948 flower src_mac 02:7f:1e:f5:8c:bf dst_mac 02:ce:5b:b0:93:6d vlan_id 3906 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:26:5d:b4:c6:d3 dst_mac 02:a4:be:84:ab:cd vlan_id 2262 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10950 flower src_mac 02:27:86:79:5f:7d dst_mac 02:fc:42:4a:ad:6e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10951 flower src_mac 02:fe:68:a5:13:b8 dst_mac 02:55:65:63:b4:f9 vlan_id 2281 vlan_ethtype ip src_ip 15.25.193.97 dst_ip 70.199.230.249 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10952 flower src_mac 02:a4:cf:2a:7b:54 dst_mac 02:fb:b2:8d:07:94 vlan_id 1449 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10953 flower src_mac 02:3f:9d:4f:49:6f dst_mac 02:25:44:96:08:ad action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10954 flower src_mac 02:99:d8:8b:23:a4 dst_mac 02:1a:d7:88:2f:0d vlan_id 1222 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10955 flower src_mac 02:e5:4a:86:a6:fd dst_mac 02:fe:02:4c:e9:15 vlan_id 1934 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10956 flower src_mac 02:00:48:80:35:1f dst_mac 02:f6:56:63:99:7a vlan_id 1114 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10957 flower src_mac 02:20:f0:ec:12:95 dst_mac 02:16:91:f5:81:e0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10958 flower src_mac 02:eb:26:bd:5d:7f dst_mac 02:1e:bd:fa:d7:21 vlan_id 2942 vlan_ethtype ip src_ip 57.215.11.205 dst_ip 22.124.208.150 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10959 flower src_mac 02:64:55:8f:18:00 dst_mac 02:50:72:fb:47:17 vlan_id 2757 vlan_ethtype ip src_ip 63.165.195.226 dst_ip 13.176.31.209 ip_proto tcp src_port 40499 dst_port 23216 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:fa:71:64:4b:31 dst_mac 02:bd:98:9a:4d:75 vlan_id 999 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:5c:f5:34:34:aa dst_mac 02:32:49:b1:0a:1c vlan_id 2157 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10962 flower src_mac 02:4d:98:9c:9c:ab dst_mac 02:8b:a5:45:43:d7 vlan_id 2651 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10963 flower src_mac 02:e6:1e:50:bf:3b dst_mac 02:20:31:09:b5:3b vlan_id 2030 vlan_ethtype ip src_ip 121.6.179.213 dst_ip 94.123.67.26 ip_proto tcp src_port 60580 dst_port 16684 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10964 flower src_mac 02:c4:10:60:08:9e dst_mac 02:8b:ec:9d:4c:60 vlan_id 301 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10965 flower src_mac 02:02:25:26:44:fa dst_mac 02:14:c8:86:21:fe src_ip 41.234.246.104 dst_ip 114.22.49.239 ip_proto tcp src_port 2469 dst_port 48864 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10966 flower src_mac 02:13:d3:39:0d:d1 dst_mac 02:f8:4c:e9:e4:9d vlan_id 1616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10967 flower src_mac 02:e6:54:af:5c:70 dst_mac 02:aa:42:b3:81:8f vlan_id 1960 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10968 flower src_mac 02:d2:66:78:39:a0 dst_mac 02:36:81:7d:9f:01 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10969 flower src_mac 02:b7:6b:db:9a:6b dst_mac 02:19:32:14:f8:4f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10970 flower src_mac 02:07:ec:8b:b0:ca dst_mac 02:7b:38:b7:3f:c1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10971 flower src_mac 02:c1:c1:29:ba:10 dst_mac 02:1a:98:13:7f:8f src_ip 79.78.196.229 dst_ip 101.158.109.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10972 flower src_mac 02:bb:f7:2d:2b:2d dst_mac 02:b1:8f:f6:9f:71 src_ip 24.65.178.129 dst_ip 40.113.224.28 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10973 flower src_mac 02:fe:2d:7f:34:27 dst_mac 02:4e:93:4d:d1:f1 vlan_id 556 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10974 flower src_mac 02:0b:df:ca:ab:21 dst_mac 02:fd:38:96:43:46 vlan_id 2556 vlan_ethtype ipv4 src_ip 54.68.47.135 dst_ip 119.115.62.240 ip_proto tcp src_port 38405 dst_port 27627 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10975 flower src_mac 02:6e:05:bf:ec:d0 dst_mac 02:a2:6f:a4:4d:97 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10976 flower src_mac 02:f5:79:32:ce:37 dst_mac 02:4b:85:96:a7:24 vlan_id 3240 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:f4:f4:6d:da:83 dst_mac 02:4a:fc:b9:35:04 vlan_id 2773 vlan_ethtype ip src_ip 125.176.8.86 dst_ip 81.4.39.206 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10978 flower src_mac 02:72:bc:07:35:34 dst_mac 02:e9:fc:3d:94:b4 vlan_id 2334 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10979 flower src_mac 02:3d:d9:97:69:4c dst_mac 02:fb:f3:07:48:e0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:df:68:6d:62:45 dst_mac 02:ab:9e:89:5a:ce vlan_id 3725 vlan_ethtype ipv4 src_ip 22.33.185.9 dst_ip 107.145.32.27 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:e3:96:2a:17:f3 dst_mac 02:4e:c6:d1:88:b2 vlan_id 1657 vlan_ethtype ip src_ip 30.108.58.104 dst_ip 85.187.0.144 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:a2:44:be:bc:66 dst_mac 02:be:1e:34:ed:d8 vlan_id 3931 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10983 flower src_mac 02:86:01:44:4b:5e dst_mac 02:6f:9b:4a:42:a7 src_ip 90.207.179.143 dst_ip 45.224.176.225 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10984 flower src_mac 02:d6:25:67:7c:9c dst_mac 02:64:4e:18:47:3d src_ip 16.106.37.144 dst_ip 27.240.45.56 ip_proto icmp code 79 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10985 flower src_mac 02:83:2c:c3:ae:8f dst_mac 02:30:88:3b:c6:34 vlan_id 2160 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10986 flower src_mac 02:1e:0d:dc:e1:c1 dst_mac 02:7b:3b:33:b5:41 vlan_id 1121 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10987 flower src_mac 02:ec:f7:1b:8d:40 dst_mac 02:35:8f:da:2a:bd vlan_id 3401 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:f1:1d:b9:1f:fb dst_mac 02:50:af:96:32:f1 vlan_id 3076 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10989 flower src_mac 02:3c:51:cf:80:ea dst_mac 02:8b:a9:ad:95:b7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10990 flower src_mac 02:84:94:42:28:cd dst_mac 02:85:63:b9:a5:ba vlan_id 2628 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10991 flower src_mac 02:4d:f1:57:9d:0f dst_mac 02:ae:6c:bb:48:5c src_ip 69.30.189.119 dst_ip 22.236.137.212 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10992 flower src_mac 02:c0:01:d2:40:47 dst_mac 02:b8:05:80:9f:45 src_ip 61.224.27.42 dst_ip 107.118.154.148 ip_proto udp src_port 34879 dst_port 51948 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10993 flower src_mac 02:0b:12:b5:25:7f dst_mac 02:9e:67:9f:22:b4 src_ip 55.52.167.159 dst_ip 97.165.246.138 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10994 flower src_mac 02:73:15:56:d5:b3 dst_mac 02:51:4b:a5:97:2a vlan_id 3870 vlan_ethtype 0x0800 src_ip 108.160.213.104 dst_ip 22.120.52.146 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10995 flower src_mac 02:8b:8a:79:ac:39 dst_mac 02:52:dc:40:f5:38 vlan_id 1156 vlan_ethtype 0x0800 src_ip 32.238.5.37 dst_ip 114.16.15.142 ip_proto tcp src_port 3945 dst_port 27089 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10996 flower src_mac 02:af:9e:c5:c5:17 dst_mac 02:e5:ac:3c:7e:41 src_ip 52.168.181.53 dst_ip 72.145.102.96 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:e2:ca:8f:20:72 dst_mac 02:40:05:2f:21:91 vlan_id 229 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10998 flower src_mac 02:e6:57:e5:f4:32 dst_mac 02:89:40:f7:38:b5 src_ip 32.180.179.112 dst_ip 93.93.101.6 ip_proto icmp code 142 type 14 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:e4:d6:33:c1:12 dst_mac 02:8a:52:94:a2:72 src_ip 11.186.43.168 dst_ip 62.176.213.115 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11000 flower src_mac 02:5b:fc:2a:a8:d4 dst_mac 02:19:2e:3c:bc:e2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11001 flower src_mac 02:f6:50:a8:d1:64 dst_mac 02:af:44:65:f5:b9 vlan_id 1369 vlan_ethtype ip src_ip 13.18.234.230 dst_ip 83.249.246.57 ip_proto tcp src_port 42013 dst_port 49644 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:5a:6e:a7:67:4a dst_mac 02:fd:30:5f:07:fe vlan_id 2956 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11003 flower src_mac 02:e0:7b:2c:9e:ad dst_mac 02:79:54:f4:1d:8a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11004 flower src_mac 02:f0:2e:a1:b9:1f dst_mac 02:02:63:d3:37:ef src_ip 49.53.5.32 dst_ip 108.215.148.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11005 flower src_mac 02:2d:0d:34:7d:89 dst_mac 02:8d:6c:df:b2:b6 vlan_id 1667 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:a5:db:a2:10:14 dst_mac 02:ce:3f:34:44:ca src_ip 20.92.25.244 dst_ip 33.249.141.37 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11007 flower src_mac 02:29:d3:00:7d:b8 dst_mac 02:cd:c9:2b:cb:6b src_ip 87.242.82.202 dst_ip 95.43.188.122 ip_proto tcp src_port 59662 dst_port 62421 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:6e:d3:2d:1a:e0 dst_mac 02:9f:98:cb:43:cb vlan_id 1419 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11009 flower src_mac 02:15:ae:5a:52:fb dst_mac 02:3f:31:6c:76:80 vlan_id 231 vlan_ethtype ipv4 src_ip 95.180.59.211 dst_ip 114.167.122.203 ip_proto udp src_port 18059 dst_port 5236 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11010 flower src_mac 02:5d:70:05:3e:69 dst_mac 02:61:78:3a:a0:47 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11011 flower src_mac 02:d9:d1:46:5a:42 dst_mac 02:60:11:0c:00:4b vlan_id 2348 vlan_ethtype 0x0800 src_ip 61.223.161.16 dst_ip 54.246.37.15 ip_proto udp src_port 40675 dst_port 4109 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11012 flower src_mac 02:59:59:6b:d7:73 dst_mac 02:b8:af:1e:f0:09 vlan_id 49 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11013 flower src_mac 02:9e:14:86:b7:05 dst_mac 02:03:9f:b4:d3:25 src_ip 76.91.131.51 dst_ip 40.207.73.134 ip_proto udp src_port 36442 dst_port 50728 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:31:f0:df:45:e7 dst_mac 02:59:a4:df:fb:e2 vlan_id 2490 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11015 flower src_mac 02:fa:15:27:f3:e1 dst_mac 02:f0:93:cb:3d:81 vlan_id 285 vlan_ethtype ipv4 src_ip 104.220.41.165 dst_ip 21.144.71.47 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11016 flower src_mac 02:2b:55:f9:06:b9 dst_mac 02:f9:d1:08:a9:d9 vlan_id 2855 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11017 flower src_mac 02:12:78:fc:e6:54 dst_mac 02:b6:4b:76:52:e3 vlan_id 1085 vlan_ethtype ipv4 src_ip 122.85.83.53 dst_ip 44.152.98.222 ip_proto udp src_port 38744 dst_port 25233 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:31:c9:5e:96:7c dst_mac 02:bd:08:8c:5c:50 vlan_id 1247 vlan_ethtype 0x0800 src_ip 93.93.244.57 dst_ip 58.12.42.78 ip_proto tcp src_port 52976 dst_port 40033 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11019 flower src_mac 02:70:50:37:55:07 dst_mac 02:74:23:62:62:3a vlan_id 2457 vlan_ethtype 0x0800 src_ip 105.152.148.230 dst_ip 48.174.149.4 ip_proto tcp src_port 49080 dst_port 55954 action drop && tc filter add dev swp33 ingress protocol ip pref 11020 flower src_mac 02:e8:44:d9:e4:28 dst_mac 02:f4:99:65:80:36 src_ip 125.242.114.214 dst_ip 53.75.24.140 ip_proto udp src_port 33309 dst_port 19671 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:8f:e8:4c:1c:f4 dst_mac 02:30:d0:7b:6c:4f vlan_id 2525 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11022 flower src_mac 02:26:f1:a1:82:f0 dst_mac 02:16:fb:60:c5:84 src_ip 32.8.36.167 dst_ip 69.221.237.234 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11023 flower src_mac 02:cd:ec:a2:61:90 dst_mac 02:3c:dc:24:a1:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11024 flower src_mac 02:50:3d:21:51:3e dst_mac 02:c2:d6:66:ba:ce vlan_id 792 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11025 flower src_mac 02:0b:ba:f5:51:41 dst_mac 02:68:a9:11:ac:c0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11026 flower src_mac 02:d9:88:e0:86:9f dst_mac 02:09:86:d7:3e:1a vlan_id 2415 vlan_ethtype ipv4 src_ip 47.240.133.57 dst_ip 91.222.173.132 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11027 flower src_mac 02:79:bb:92:35:49 dst_mac 02:ba:cd:02:f0:86 vlan_id 3985 vlan_ethtype ip src_ip 55.92.201.125 dst_ip 73.65.162.211 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11028 flower src_mac 02:d1:68:61:51:b4 dst_mac 02:b4:28:41:12:6f vlan_id 102 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11029 flower src_mac 02:66:32:5c:91:85 dst_mac 02:33:0e:00:cc:2e action pass && tc filter add dev swp33 ingress protocol ip pref 11030 flower src_mac 02:41:19:28:eb:bb dst_mac 02:9c:f2:b9:df:9b src_ip 26.97.99.25 dst_ip 121.85.70.136 ip_proto icmp code 84 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11031 flower src_mac 02:59:e4:41:93:5f dst_mac 02:bb:98:6d:93:5b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11032 flower src_mac 02:4f:65:2d:90:4b dst_mac 02:25:42:5e:9a:58 src_ip 56.116.29.94 dst_ip 103.31.22.73 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:67:51:48:7a:da dst_mac 02:bc:0e:82:0d:50 vlan_id 3565 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11034 flower src_mac 02:62:75:60:42:d6 dst_mac 02:2f:f7:77:e6:ec src_ip 95.62.4.128 dst_ip 83.0.50.48 ip_proto tcp src_port 12739 dst_port 22989 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11035 flower src_mac 02:82:90:d7:55:19 dst_mac 02:db:b2:c7:b1:e1 vlan_id 1868 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11036 flower src_mac 02:28:75:89:bd:81 dst_mac 02:56:2a:05:23:32 vlan_id 3465 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11037 flower src_mac 02:d0:28:9c:9a:89 dst_mac 02:b2:5e:1e:65:b2 vlan_id 3712 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11038 flower src_mac 02:02:be:de:13:cf dst_mac 02:19:d6:b6:be:7e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11039 flower src_mac 02:a6:bd:7e:35:e0 dst_mac 02:a6:18:d4:b7:fd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:32:9d:30:52:12 dst_mac 02:1f:e5:c3:cd:6f vlan_id 2442 vlan_ethtype ip src_ip 118.87.238.49 dst_ip 81.33.180.156 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:f5:7f:4c:c8:19 dst_mac 02:b3:98:8b:c4:07 vlan_id 3933 vlan_ethtype 0x0800 src_ip 123.60.255.191 dst_ip 93.87.35.187 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11042 flower src_mac 02:da:2d:18:d8:24 dst_mac 02:8a:49:e3:ff:c0 src_ip 119.64.241.209 dst_ip 13.25.20.99 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11043 flower src_mac 02:84:e1:f7:59:a6 dst_mac 02:fb:c0:0e:f7:d3 vlan_id 3627 vlan_ethtype ip src_ip 83.235.50.234 dst_ip 66.132.214.184 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:e4:cc:4c:94:ef dst_mac 02:0b:bd:c8:a2:9e vlan_id 2495 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11045 flower src_mac 02:e8:bd:13:1d:92 dst_mac 02:f4:f5:01:61:fc action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11046 flower src_mac 02:2b:5a:e5:a9:9a dst_mac 02:5f:06:12:e5:33 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11047 flower src_mac 02:14:df:58:7a:77 dst_mac 02:0d:9e:18:a3:3b src_ip 57.66.29.112 dst_ip 105.81.51.28 ip_proto icmp code 172 type 11 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:48:5b:a8:65:d3 dst_mac 02:14:65:1d:36:9b vlan_id 1122 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11049 flower src_mac 02:62:10:40:2c:cf dst_mac 02:90:12:f7:94:9b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11050 flower src_mac 02:c2:0a:d8:f1:87 dst_mac 02:b9:61:7b:75:4f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11051 flower src_mac 02:58:c7:31:27:5d dst_mac 02:fa:49:9c:ff:ea action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11052 flower src_mac 02:f9:83:95:0c:68 dst_mac 02:69:b7:20:58:02 vlan_id 1715 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11053 flower src_mac 02:1b:89:c6:69:1b dst_mac 02:d6:f5:2f:7e:97 vlan_id 3770 vlan_ethtype ipv4 src_ip 40.230.30.183 dst_ip 82.29.254.114 ip_proto udp src_port 6515 dst_port 5418 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11054 flower src_mac 02:85:31:11:52:97 dst_mac 02:1c:c0:8d:97:c5 vlan_id 975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11055 flower src_mac 02:c7:7d:6e:27:ce dst_mac 02:e3:2e:98:e2:83 vlan_id 2331 vlan_ethtype ip src_ip 84.95.31.172 dst_ip 40.100.27.172 ip_proto tcp src_port 53353 dst_port 51391 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:d2:45:7d:ee:4b dst_mac 02:12:06:87:f5:6c vlan_id 3635 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11057 flower src_mac 02:37:c9:89:34:b4 dst_mac 02:fa:b5:99:f6:a8 src_ip 23.237.65.79 dst_ip 57.185.21.233 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11058 flower src_mac 02:f6:db:c5:04:71 dst_mac 02:b9:5a:97:8c:71 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11059 flower src_mac 02:d1:7f:0c:8a:45 dst_mac 02:a8:f2:8b:c7:e9 vlan_id 1476 vlan_ethtype 0x0800 src_ip 42.192.166.164 dst_ip 31.234.226.54 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11060 flower src_mac 02:84:b9:da:9e:74 dst_mac 02:2c:ac:fc:41:b2 vlan_id 873 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11061 flower src_mac 02:6f:01:89:30:5f dst_mac 02:74:7f:4e:5b:cb vlan_id 3422 vlan_ethtype 0x0800 src_ip 30.251.169.199 dst_ip 11.21.70.161 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11062 flower src_mac 02:4d:58:ef:39:33 dst_mac 02:09:17:71:9b:51 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11063 flower src_mac 02:ed:74:e3:7b:70 dst_mac 02:8f:2c:da:1e:27 src_ip 83.77.60.174 dst_ip 83.199.205.77 ip_proto udp src_port 43783 dst_port 1709 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11064 flower src_mac 02:52:d3:30:e9:72 dst_mac 02:0f:34:29:94:23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11065 flower src_mac 02:9f:03:48:4a:08 dst_mac 02:62:18:ac:8d:63 vlan_id 716 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:20:d4:e5:d9:22 dst_mac 02:3a:77:e9:79:72 vlan_id 2151 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11067 flower src_mac 02:dc:3e:b6:57:56 dst_mac 02:9d:50:11:50:e5 vlan_id 1779 vlan_ethtype ipv4 src_ip 105.190.200.56 dst_ip 110.25.84.216 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11068 flower src_mac 02:1a:6c:29:03:0e dst_mac 02:64:ae:97:5d:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11069 flower src_mac 02:f0:62:a0:55:9e dst_mac 02:30:3c:a9:de:1c vlan_id 1345 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11070 flower src_mac 02:00:3b:6b:61:d3 dst_mac 02:61:c3:13:67:fb src_ip 91.135.12.127 dst_ip 96.6.53.68 ip_proto udp src_port 50852 dst_port 28644 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11071 flower src_mac 02:82:1f:58:b0:5c dst_mac 02:ec:0f:6c:40:29 vlan_id 2749 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11072 flower src_mac 02:f3:71:63:f9:3e dst_mac 02:2a:de:32:27:78 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11073 flower src_mac 02:63:16:d2:64:cb dst_mac 02:10:6b:59:b2:92 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:d3:33:7c:4f:c2 dst_mac 02:9b:2c:66:11:16 vlan_id 249 vlan_ethtype 0x0800 src_ip 91.250.14.193 dst_ip 20.37.79.104 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11075 flower src_mac 02:3a:33:80:a2:81 dst_mac 02:3c:e6:af:67:b2 vlan_id 1455 vlan_ethtype ipv4 src_ip 26.6.44.114 dst_ip 47.221.79.95 ip_proto tcp src_port 54872 dst_port 10287 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11076 flower src_mac 02:4c:d7:6d:b3:48 dst_mac 02:30:14:84:ee:dd vlan_id 392 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11077 flower src_mac 02:5e:6f:ff:5a:d3 dst_mac 02:53:b4:39:ae:c4 src_ip 103.64.29.137 dst_ip 87.142.206.30 ip_proto tcp src_port 4322 dst_port 53224 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11078 flower src_mac 02:51:cb:03:44:82 dst_mac 02:0e:11:51:5a:ab action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11079 flower src_mac 02:5a:23:14:f9:22 dst_mac 02:5c:cf:51:fb:7a vlan_id 3991 vlan_ethtype ipv4 src_ip 40.70.208.242 dst_ip 72.34.254.43 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:a9:00:54:c0:5a dst_mac 02:4a:12:9d:55:4b vlan_id 3073 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:90:05:55:43:ee dst_mac 02:b4:15:cd:59:da vlan_id 2431 vlan_ethtype ip src_ip 18.144.63.29 dst_ip 89.230.172.248 ip_proto udp src_port 48299 dst_port 57172 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11082 flower src_mac 02:b0:e2:db:7c:89 dst_mac 02:dc:1f:58:92:27 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:83:de:ff:83:5f dst_mac 02:f3:e7:dd:0d:8b src_ip 42.101.35.107 dst_ip 72.79.121.196 ip_proto icmp code 222 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11084 flower src_mac 02:7e:be:95:88:eb dst_mac 02:de:4d:58:b0:85 vlan_id 3746 vlan_ethtype ipv4 src_ip 74.131.22.59 dst_ip 29.23.17.237 ip_proto udp src_port 6364 dst_port 13288 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:7f:f6:77:95:c1 dst_mac 02:95:4d:5d:fa:3f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11086 flower src_mac 02:6d:c4:6f:49:04 dst_mac 02:3d:59:5f:57:d7 vlan_id 1922 vlan_ethtype 0x0800 src_ip 38.42.187.240 dst_ip 53.241.249.232 ip_proto tcp src_port 65397 dst_port 46240 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11087 flower src_mac 02:8d:db:f3:b0:87 dst_mac 02:25:95:ef:6e:e8 src_ip 13.57.124.9 dst_ip 65.252.9.149 ip_proto udp src_port 2604 dst_port 7554 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:38:90:52:81:6f dst_mac 02:88:70:0f:dd:91 vlan_id 657 vlan_ethtype ipv4 src_ip 99.32.153.146 dst_ip 81.50.152.11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:08:fc:46:12:9b dst_mac 02:c3:53:da:ff:24 vlan_id 1162 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11090 flower src_mac 02:21:28:9a:ca:15 dst_mac 02:e6:95:c1:13:ad action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11091 flower src_mac 02:f0:04:fd:31:dc dst_mac 02:07:7b:4d:16:f9 vlan_id 2901 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11092 flower src_mac 02:ce:d5:de:f2:2d dst_mac 02:db:b3:3d:26:f4 vlan_id 2813 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:eb:46:58:f5:16 dst_mac 02:5d:ee:df:d2:4f vlan_id 3612 vlan_ethtype ipv4 src_ip 20.209.126.147 dst_ip 122.114.58.21 ip_proto udp src_port 40310 dst_port 48894 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11094 flower src_mac 02:29:4b:90:97:15 dst_mac 02:ca:b0:36:51:54 vlan_id 256 vlan_ethtype ip src_ip 88.178.242.177 dst_ip 92.72.6.136 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11095 flower src_mac 02:f1:30:e8:2d:7a dst_mac 02:ab:72:92:c6:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:d0:7e:11:5f:fb dst_mac 02:0f:0e:84:fb:43 vlan_id 1761 vlan_ethtype ip src_ip 126.149.181.227 dst_ip 71.190.118.236 ip_proto tcp src_port 30830 dst_port 13977 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11097 flower src_mac 02:c2:f4:34:2a:6b dst_mac 02:14:e4:8b:fc:a5 vlan_id 3661 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11098 flower src_mac 02:c0:e3:b5:a6:30 dst_mac 02:ff:23:8d:6c:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11099 flower src_mac 02:e7:13:7a:20:80 dst_mac 02:5a:0e:1c:3a:ef action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11100 flower src_mac 02:93:5b:19:2f:1d dst_mac 02:1c:50:0f:d5:97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11101 flower src_mac 02:29:99:5f:54:49 dst_mac 02:b0:78:c6:d1:01 vlan_id 1379 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:1a:57:fe:1e:80 dst_mac 02:3f:98:8c:a9:28 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11103 flower src_mac 02:87:e4:ed:a4:fd dst_mac 02:4a:46:1c:25:ec src_ip 112.170.39.44 dst_ip 18.181.134.118 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:3c:71:7a:c6:f0 dst_mac 02:63:f2:12:cb:aa src_ip 46.109.244.87 dst_ip 35.241.250.221 ip_proto udp src_port 58322 dst_port 17387 action trap && tc filter add dev swp33 ingress protocol ip pref 11105 flower src_mac 02:5b:b3:fb:25:fa dst_mac 02:37:59:9d:45:bb src_ip 124.139.127.121 dst_ip 112.29.169.138 ip_proto udp src_port 4168 dst_port 13122 action trap && tc filter add dev swp33 ingress protocol ip pref 11106 flower src_mac 02:a0:70:4a:eb:6e dst_mac 02:83:68:50:f7:2e src_ip 64.105.39.52 dst_ip 125.236.33.188 ip_proto udp src_port 51347 dst_port 6454 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:90:50:77:5f:bd dst_mac 02:fc:c1:b8:ae:66 vlan_id 2786 vlan_ethtype 0x0800 src_ip 60.54.52.17 dst_ip 40.87.237.131 ip_proto udp src_port 23669 dst_port 22535 action pass && tc filter add dev swp33 ingress protocol ip pref 11108 flower src_mac 02:80:11:bc:d8:62 dst_mac 02:d3:49:c0:e6:e7 src_ip 28.2.153.77 dst_ip 52.150.145.66 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11109 flower src_mac 02:46:4b:ce:50:cd dst_mac 02:86:94:2e:47:0b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11110 flower src_mac 02:ed:5e:a3:c3:72 dst_mac 02:9d:86:9f:41:77 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11111 flower src_mac 02:c7:7a:86:69:1c dst_mac 02:d2:fd:aa:51:d7 vlan_id 3597 vlan_ethtype 0x0800 src_ip 60.176.28.239 dst_ip 109.123.154.133 ip_proto udp src_port 62380 dst_port 36260 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11112 flower src_mac 02:48:6c:69:eb:58 dst_mac 02:bd:ef:ef:52:f9 src_ip 119.240.30.32 dst_ip 49.241.158.43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11113 flower src_mac 02:e1:1f:36:bd:c1 dst_mac 02:0b:68:76:e8:11 vlan_id 1028 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:a8:de:91:2d:a8 dst_mac 02:f0:fb:77:02:d2 vlan_id 2511 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11115 flower src_mac 02:2d:e4:af:37:4f dst_mac 02:2f:3c:f0:45:0f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:ec:ac:cd:e2:ca dst_mac 02:8b:1b:a9:db:01 vlan_id 926 vlan_ethtype 0x0800 src_ip 57.77.168.83 dst_ip 35.95.162.124 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11117 flower src_mac 02:13:1c:67:ec:4c dst_mac 02:c3:1c:27:1c:62 vlan_id 3081 vlan_ethtype ipv4 src_ip 89.208.137.153 dst_ip 11.161.113.241 ip_proto udp src_port 24628 dst_port 51591 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11118 flower src_mac 02:cd:36:ad:ec:91 dst_mac 02:97:6b:0a:7e:78 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11119 flower src_mac 02:d1:6f:24:39:42 dst_mac 02:02:71:de:ac:e7 src_ip 46.76.135.28 dst_ip 117.177.0.99 ip_proto tcp src_port 3932 dst_port 49671 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11120 flower src_mac 02:68:e5:a9:a8:33 dst_mac 02:1e:6a:98:db:a0 vlan_id 2759 vlan_ethtype 0x0800 src_ip 37.250.81.219 dst_ip 75.56.158.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11121 flower src_mac 02:1f:f7:bc:e2:2d dst_mac 02:29:c1:c5:14:66 vlan_id 749 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11122 flower src_mac 02:6d:1f:ef:15:8b dst_mac 02:17:69:b8:b5:1d src_ip 83.192.102.107 dst_ip 48.1.88.219 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11123 flower src_mac 02:0c:d1:76:2c:8d dst_mac 02:23:4c:85:c6:63 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:7c:11:26:6d:69 dst_mac 02:17:1e:49:5e:2a vlan_id 2238 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:42:1c:1f:aa:67 dst_mac 02:61:11:82:60:1e vlan_id 3445 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:50:e3:95:24:58 dst_mac 02:17:3a:d7:19:75 vlan_id 1407 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11127 flower src_mac 02:85:de:17:5f:8c dst_mac 02:01:cf:61:91:52 vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11128 flower src_mac 02:2f:3f:6f:88:5d dst_mac 02:bb:b3:1d:7e:99 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11129 flower src_mac 02:6b:54:40:31:aa dst_mac 02:35:d3:c1:ff:a5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11130 flower src_mac 02:eb:7b:16:f1:9e dst_mac 02:04:ed:8e:72:bd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11131 flower src_mac 02:24:34:11:60:b7 dst_mac 02:d1:8a:67:f1:76 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:96:96:ff:25:0a dst_mac 02:a8:c8:d5:9f:53 vlan_id 1915 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11133 flower src_mac 02:35:cf:dd:38:ef dst_mac 02:9b:e6:9f:f6:6c vlan_id 888 vlan_ethtype ipv4 src_ip 124.4.101.121 dst_ip 89.44.186.143 ip_proto tcp src_port 54912 dst_port 54777 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11134 flower src_mac 02:41:22:42:8f:6c dst_mac 02:6d:c3:17:8d:fb src_ip 27.28.113.107 dst_ip 16.141.13.47 ip_proto tcp src_port 20430 dst_port 39831 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11135 flower src_mac 02:3f:91:77:b1:3b dst_mac 02:79:bd:65:2f:20 vlan_id 1018 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11136 flower src_mac 02:47:5f:48:db:50 dst_mac 02:63:4a:cb:3f:68 src_ip 74.177.110.131 dst_ip 86.197.121.43 ip_proto tcp src_port 62646 dst_port 63180 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11137 flower src_mac 02:83:66:ce:e0:7c dst_mac 02:d9:bd:66:89:db vlan_id 864 vlan_ethtype 0x0800 src_ip 71.45.62.198 dst_ip 16.109.80.214 ip_proto tcp src_port 6563 dst_port 43538 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11138 flower src_mac 02:70:35:30:d9:b2 dst_mac 02:e9:15:c4:8a:74 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11139 flower src_mac 02:d0:eb:f2:ab:51 dst_mac 02:80:2a:45:56:b2 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11140 flower src_mac 02:6e:b0:24:88:5b dst_mac 02:02:5b:d1:80:10 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11141 flower src_mac 02:ac:3f:76:a8:7c dst_mac 02:08:d7:1c:d0:f7 src_ip 121.114.78.243 dst_ip 51.164.255.236 ip_proto icmp code 143 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11142 flower src_mac 02:d3:be:c3:96:af dst_mac 02:55:5b:2b:75:3e vlan_id 1728 vlan_ethtype ipv4 src_ip 94.117.195.149 dst_ip 47.207.167.5 action drop && tc filter add dev swp33 ingress protocol ip pref 11143 flower src_mac 02:3f:7c:8c:8c:dd dst_mac 02:07:14:10:aa:ca src_ip 61.220.79.44 dst_ip 73.234.190.249 ip_proto udp src_port 56819 dst_port 40913 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11144 flower src_mac 02:a3:27:9f:33:00 dst_mac 02:cf:3d:0a:d1:2a action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11145 flower src_mac 02:52:49:96:72:7d dst_mac 02:42:08:4c:86:e6 src_ip 75.87.120.74 dst_ip 114.121.190.20 ip_proto udp src_port 31835 dst_port 61235 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11146 flower src_mac 02:85:c2:8a:49:11 dst_mac 02:e4:a4:bf:35:12 vlan_id 195 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11147 flower src_mac 02:a3:61:62:d9:06 dst_mac 02:99:53:ac:04:dd src_ip 75.168.169.86 dst_ip 87.188.9.156 ip_proto tcp src_port 22237 dst_port 65485 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11148 flower src_mac 02:00:d6:83:0c:a5 dst_mac 02:e8:72:4a:40:0c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11149 flower src_mac 02:58:aa:77:06:eb dst_mac 02:c1:64:07:91:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:a2:c2:6e:96:fa dst_mac 02:e5:21:ae:d2:35 vlan_id 1670 vlan_ethtype ipv4 src_ip 79.155.73.93 dst_ip 110.59.100.20 ip_proto udp src_port 40712 dst_port 11082 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11151 flower src_mac 02:ec:5e:8e:b9:59 dst_mac 02:1c:b5:04:81:2f vlan_id 1280 vlan_ethtype ipv4 src_ip 78.176.188.64 dst_ip 14.45.194.115 ip_proto tcp src_port 52858 dst_port 41906 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11152 flower src_mac 02:42:6d:42:bb:f5 dst_mac 02:6c:a1:e6:44:12 src_ip 49.87.251.195 dst_ip 36.55.209.8 ip_proto tcp src_port 14131 dst_port 9347 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11153 flower src_mac 02:6f:f5:e3:48:7b dst_mac 02:06:bf:64:59:e5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11154 flower src_mac 02:65:e3:db:df:85 dst_mac 02:23:fb:73:5a:90 vlan_id 435 vlan_ethtype ip src_ip 114.31.242.182 dst_ip 40.1.183.222 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11155 flower src_mac 02:85:9c:d7:99:8e dst_mac 02:54:ad:d3:6e:85 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11156 flower src_mac 02:85:82:da:62:34 dst_mac 02:dd:b3:2e:09:cf vlan_id 1550 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:79:ef:7a:00:36 dst_mac 02:d3:71:58:69:7e vlan_id 1618 vlan_ethtype ip src_ip 43.2.125.195 dst_ip 54.54.244.209 ip_proto tcp src_port 43908 dst_port 1849 action trap && tc filter add dev swp33 ingress protocol ip pref 11158 flower src_mac 02:67:50:d6:49:88 dst_mac 02:2e:ad:e3:db:ef src_ip 16.54.132.177 dst_ip 53.15.138.37 ip_proto udp src_port 39059 dst_port 25154 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11159 flower src_mac 02:20:c8:98:e7:de dst_mac 02:49:e6:86:af:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11160 flower src_mac 02:dd:31:40:01:4c dst_mac 02:ab:05:f8:f9:50 vlan_id 3308 vlan_ethtype 0x0800 src_ip 117.208.5.73 dst_ip 104.204.102.176 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11161 flower src_mac 02:94:34:44:b4:5c dst_mac 02:7c:30:0d:68:c8 vlan_id 2965 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11162 flower src_mac 02:13:d0:3b:4e:99 dst_mac 02:09:8d:71:8c:df action pass && tc filter add dev swp33 ingress protocol ip pref 11163 flower src_mac 02:df:02:cf:ba:a3 dst_mac 02:ef:ea:a6:c7:0d src_ip 104.14.76.208 dst_ip 115.1.172.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11164 flower src_mac 02:2d:f9:27:e6:eb dst_mac 02:fc:b0:2c:e3:56 vlan_id 2406 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11165 flower src_mac 02:b7:6d:90:08:9d dst_mac 02:c4:b1:28:73:e0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:a5:6c:03:3e:21 dst_mac 02:15:b3:fb:49:c7 vlan_id 3375 vlan_ethtype ipv4 src_ip 66.217.50.143 dst_ip 113.182.68.201 ip_proto tcp src_port 28143 dst_port 30263 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11167 flower src_mac 02:d0:a1:50:4a:1f dst_mac 02:53:b3:0c:ce:ae vlan_id 3921 vlan_ethtype ip src_ip 73.165.141.155 dst_ip 105.47.92.95 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11168 flower src_mac 02:d3:d3:87:bf:f4 dst_mac 02:47:f3:86:11:83 src_ip 58.160.84.108 dst_ip 93.36.19.122 ip_proto tcp src_port 2770 dst_port 6667 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11169 flower src_mac 02:38:e6:2a:a3:95 dst_mac 02:ab:2f:49:b7:d4 vlan_id 3030 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:5f:e0:08:dd:5a dst_mac 02:15:e1:df:06:cf vlan_id 3399 vlan_ethtype 0x0800 src_ip 84.85.75.175 dst_ip 72.146.166.176 action trap && tc filter add dev swp33 ingress protocol ip pref 11171 flower src_mac 02:12:7d:b7:00:b1 dst_mac 02:f4:0a:b8:b4:d4 src_ip 57.153.19.213 dst_ip 37.95.170.1 ip_proto icmp code 95 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11172 flower src_mac 02:3c:12:9f:5a:f7 dst_mac 02:ee:27:a2:ee:33 vlan_id 3552 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11173 flower src_mac 02:aa:e1:8e:2d:bb dst_mac 02:cd:f4:1c:11:a2 vlan_id 3122 vlan_ethtype ipv4 src_ip 100.106.186.96 dst_ip 97.242.185.168 ip_proto tcp src_port 59812 dst_port 55583 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11174 flower src_mac 02:42:53:12:b0:22 dst_mac 02:13:4f:e9:59:78 vlan_id 3831 vlan_ethtype ipv4 src_ip 65.175.145.78 dst_ip 19.70.81.12 ip_proto tcp src_port 41896 dst_port 40774 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11175 flower src_mac 02:50:1e:76:46:46 dst_mac 02:8d:91:84:7e:df vlan_id 3913 vlan_ethtype ip src_ip 113.160.158.137 dst_ip 27.233.201.34 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11176 flower src_mac 02:2b:5c:a3:9b:e3 dst_mac 02:82:4e:ab:a8:45 src_ip 122.31.36.232 dst_ip 27.88.165.79 ip_proto udp src_port 56494 dst_port 52001 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11177 flower src_mac 02:ef:2d:a4:54:f5 dst_mac 02:26:f4:1b:37:76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11178 flower src_mac 02:d0:73:98:ef:c7 dst_mac 02:4c:fb:50:be:95 vlan_id 631 vlan_ethtype ip src_ip 79.171.154.172 dst_ip 55.224.57.15 ip_proto tcp src_port 3992 dst_port 9386 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11179 flower src_mac 02:98:1a:c7:fc:e6 dst_mac 02:28:ca:96:41:93 vlan_id 3535 vlan_ethtype 0x0800 src_ip 34.8.160.194 dst_ip 87.208.176.118 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11180 flower src_mac 02:2a:96:a1:4e:55 dst_mac 02:15:5b:d3:30:c4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11181 flower src_mac 02:7b:7f:c1:13:81 dst_mac 02:23:ad:a4:76:4a vlan_id 2005 vlan_ethtype 0x0800 src_ip 116.45.39.245 dst_ip 79.27.119.159 action trap && tc filter add dev swp33 ingress protocol ip pref 11182 flower src_mac 02:dd:d0:0e:15:c4 dst_mac 02:98:5c:75:23:91 src_ip 52.61.25.203 dst_ip 25.113.254.160 ip_proto tcp src_port 23597 dst_port 201 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11183 flower src_mac 02:6d:ad:eb:53:89 dst_mac 02:66:db:2b:99:3b action drop && tc filter add dev swp33 ingress protocol ip pref 11184 flower src_mac 02:94:72:9c:e7:09 dst_mac 02:b8:34:70:66:10 src_ip 72.207.43.10 dst_ip 23.93.148.40 ip_proto icmp code 44 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11185 flower src_mac 02:70:fd:39:07:8a dst_mac 02:af:07:98:6a:c9 vlan_id 2669 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11186 flower src_mac 02:f9:b5:05:f5:c3 dst_mac 02:f0:ed:d2:32:27 vlan_id 2690 vlan_ethtype 0x0800 src_ip 19.181.73.40 dst_ip 102.3.196.145 action drop && tc filter add dev swp33 ingress protocol ip pref 11187 flower src_mac 02:e7:06:92:9b:3b dst_mac 02:11:3c:b8:b9:96 src_ip 46.229.211.25 dst_ip 119.176.74.114 action pass && tc filter add dev swp33 ingress protocol ip pref 11188 flower src_mac 02:19:2f:97:3a:1d dst_mac 02:87:e3:77:b7:03 src_ip 124.12.41.162 dst_ip 79.23.87.201 ip_proto icmp code 125 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11189 flower src_mac 02:b1:99:15:77:df dst_mac 02:5f:e4:93:8e:52 vlan_id 1328 vlan_ethtype ipv4 src_ip 76.46.6.73 dst_ip 67.14.237.18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11190 flower src_mac 02:30:96:9c:e5:04 dst_mac 02:65:a7:fa:dd:38 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11191 flower src_mac 02:26:80:ba:38:f9 dst_mac 02:1b:e6:9c:ac:fc vlan_id 3976 vlan_ethtype ip src_ip 52.133.109.47 dst_ip 114.21.21.30 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11192 flower src_mac 02:ea:b2:b6:25:d2 dst_mac 02:73:d5:c0:80:ff vlan_id 1125 vlan_ethtype ip src_ip 45.127.134.70 dst_ip 49.131.30.151 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11193 flower src_mac 02:51:11:87:dc:5c dst_mac 02:76:b6:73:d3:e9 vlan_id 553 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11194 flower src_mac 02:58:f5:7a:26:5b dst_mac 02:3f:90:2d:93:4c vlan_id 2427 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11195 flower src_mac 02:a2:72:70:86:ff dst_mac 02:21:e9:1c:bd:69 vlan_id 219 vlan_ethtype ipv4 src_ip 88.142.211.130 dst_ip 118.22.151.197 ip_proto udp src_port 37715 dst_port 61811 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11196 flower src_mac 02:34:97:3b:7a:97 dst_mac 02:81:a1:9c:91:5e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11197 flower src_mac 02:92:76:2e:0f:bd dst_mac 02:cd:6a:c2:9c:60 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11198 flower src_mac 02:b3:d3:37:05:d2 dst_mac 02:f5:71:b8:d8:45 vlan_id 2150 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11199 flower src_mac 02:52:aa:6d:96:af dst_mac 02:bc:84:1c:fd:69 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:b5:2a:0f:cf:18 dst_mac 02:01:ce:47:05:e8 vlan_id 1441 vlan_ethtype ip src_ip 123.230.252.154 dst_ip 117.124.170.43 ip_proto udp src_port 61251 dst_port 55003 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10801 flower src_mac 02:63:b1:8d:9c:c0 dst_mac 02:4a:4e:e7:a5:62 vlan_id 2045 vlan_ethtype ip src_ip 59.97.234.117 dst_ip 19.31.134.89 ip_proto tcp src_port 23785 dst_port 14733 action drop && tc filter add dev swp33 ingress protocol ip pref 10802 flower src_mac 02:8c:a4:a0:31:62 dst_mac 02:29:8d:5c:01:09 src_ip 61.96.14.103 dst_ip 75.175.157.136 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10803 flower src_mac 02:f6:9d:9e:57:6d dst_mac 02:66:50:3b:f8:ef action drop && tc filter add dev swp33 ingress protocol ip pref 10804 flower src_mac 02:53:e4:06:ce:fb dst_mac 02:24:e8:30:ab:4c src_ip 57.255.103.160 dst_ip 104.136.248.196 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10805 flower src_mac 02:68:b0:10:91:5f dst_mac 02:7b:98:54:f3:92 vlan_id 2154 vlan_ethtype ipv4 src_ip 96.130.12.65 dst_ip 113.164.51.112 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10806 flower src_mac 02:e6:e8:2a:49:95 dst_mac 02:cc:8c:ca:f6:a9 src_ip 105.151.246.74 dst_ip 39.44.79.205 ip_proto udp src_port 58581 dst_port 26624 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10807 flower src_mac 02:d1:8c:a5:cb:21 dst_mac 02:6b:4a:9b:82:92 vlan_id 3526 vlan_ethtype 0x0800 src_ip 122.216.199.73 dst_ip 14.103.27.59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10808 flower src_mac 02:5a:4c:a4:87:c5 dst_mac 02:88:f2:f0:c4:f4 vlan_id 2765 vlan_ethtype ipv4 src_ip 12.166.44.221 dst_ip 114.4.136.36 ip_proto tcp src_port 8261 dst_port 37120 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10809 flower src_mac 02:51:b9:fa:03:f2 dst_mac 02:20:bd:9f:0d:4f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10810 flower src_mac 02:fe:0e:39:e7:36 dst_mac 02:0e:f6:4f:4c:f4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10811 flower src_mac 02:fe:e3:fb:fa:70 dst_mac 02:b3:52:7d:7d:7f vlan_id 3770 vlan_ethtype ipv4 src_ip 65.130.25.26 dst_ip 55.201.46.31 ip_proto tcp src_port 51438 dst_port 64138 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10812 flower src_mac 02:ca:01:a9:e4:67 dst_mac 02:0a:02:ef:f0:c9 vlan_id 177 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10813 flower src_mac 02:8f:2e:ff:25:40 dst_mac 02:4c:74:70:55:6f vlan_id 443 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10814 flower src_mac 02:eb:29:4b:cf:ad dst_mac 02:1d:e7:66:59:bc action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10815 flower src_mac 02:5a:1c:cd:9b:86 dst_mac 02:f3:7e:fa:10:04 vlan_id 3348 vlan_ethtype 0x0800 src_ip 41.83.99.201 dst_ip 37.1.73.101 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10816 flower src_mac 02:05:d1:b3:ec:b4 dst_mac 02:83:c6:54:71:ad vlan_id 991 vlan_ethtype ip src_ip 30.244.191.22 dst_ip 71.170.142.88 ip_proto tcp src_port 58336 dst_port 27206 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10817 flower src_mac 02:0e:08:be:13:5b dst_mac 02:9d:c8:69:b7:2e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:ba:d1:57:65:04 dst_mac 02:6e:64:98:94:5f vlan_id 2832 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10819 flower src_mac 02:3e:e5:3b:03:6f dst_mac 02:d6:a9:87:19:48 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10820 flower src_mac 02:21:64:67:92:2f dst_mac 02:46:03:86:6d:79 vlan_id 1822 vlan_ethtype 0x0800 src_ip 13.88.79.160 dst_ip 93.4.244.32 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10821 flower src_mac 02:e0:e2:10:2d:61 dst_mac 02:64:94:9e:51:8a src_ip 50.163.210.171 dst_ip 32.118.76.141 ip_proto tcp src_port 17201 dst_port 50140 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10822 flower src_mac 02:bc:94:85:de:c4 dst_mac 02:85:11:4f:10:3b vlan_id 2568 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10823 flower src_mac 02:25:57:c4:3e:9a dst_mac 02:ad:6a:1b:47:07 vlan_id 3119 vlan_ethtype ipv4 src_ip 79.93.14.107 dst_ip 41.147.140.114 ip_proto udp src_port 31250 dst_port 51188 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10824 flower src_mac 02:5b:2e:ce:83:48 dst_mac 02:b3:f6:e8:91:9e src_ip 37.219.134.79 dst_ip 54.168.201.164 ip_proto icmp code 116 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10825 flower src_mac 02:ea:b9:8f:4e:59 dst_mac 02:83:e7:cd:d9:ec action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10826 flower src_mac 02:06:e3:a1:56:72 dst_mac 02:45:17:65:2d:fb src_ip 86.197.240.178 dst_ip 77.85.119.53 ip_proto tcp src_port 55835 dst_port 10309 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10827 flower src_mac 02:0b:49:87:ef:c2 dst_mac 02:d0:ae:59:e5:28 src_ip 77.233.114.203 dst_ip 14.183.121.124 ip_proto icmp code 142 type 16 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10828 flower src_mac 02:a4:65:f3:19:f8 dst_mac 02:69:f5:1e:26:ae src_ip 109.157.173.217 dst_ip 60.131.245.173 ip_proto udp src_port 33269 dst_port 27671 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10829 flower src_mac 02:6a:19:8f:dd:aa dst_mac 02:45:47:be:4b:f2 src_ip 86.16.185.56 dst_ip 33.193.0.113 ip_proto icmp code 223 type 8 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10830 flower src_mac 02:b4:16:b9:3d:cb dst_mac 02:80:be:06:55:da src_ip 71.136.6.202 dst_ip 30.117.210.177 ip_proto tcp src_port 47922 dst_port 38878 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10831 flower src_mac 02:7f:52:90:4e:0d dst_mac 02:80:ad:44:c4:50 vlan_id 1691 vlan_ethtype 0x0800 src_ip 48.123.255.58 dst_ip 54.18.44.33 ip_proto tcp src_port 34186 dst_port 61113 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10832 flower src_mac 02:a4:ef:7e:ac:68 dst_mac 02:9b:e9:ec:42:91 vlan_id 30 vlan_ethtype ipv4 src_ip 18.207.136.100 dst_ip 65.244.52.97 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10833 flower src_mac 02:4d:a1:60:b1:b7 dst_mac 02:41:d5:8c:4c:73 src_ip 125.8.22.172 dst_ip 58.220.107.159 ip_proto icmp code 225 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:f7:4b:b3:46:f6 dst_mac 02:a0:ec:b1:ec:4d vlan_id 3927 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10835 flower src_mac 02:f4:38:8f:ec:74 dst_mac 02:c9:86:4b:d5:a2 vlan_id 1206 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10836 flower src_mac 02:1f:de:2a:f6:66 dst_mac 02:96:d0:38:4a:41 vlan_id 3037 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10837 flower src_mac 02:a1:09:d0:17:c1 dst_mac 02:74:e7:59:17:37 vlan_id 4049 vlan_ethtype ip src_ip 81.53.218.174 dst_ip 79.149.73.147 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10838 flower src_mac 02:09:c1:eb:9d:d0 dst_mac 02:2f:83:12:a9:16 vlan_id 935 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10839 flower src_mac 02:3e:aa:f2:65:d2 dst_mac 02:f4:8a:89:f7:0a action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10840 flower src_mac 02:83:8b:95:02:77 dst_mac 02:7a:84:67:9a:d3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10841 flower src_mac 02:0a:c3:fd:b7:a3 dst_mac 02:be:bb:f0:58:19 vlan_id 2096 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:b7:4f:65:e0:72 dst_mac 02:d3:e8:cc:6a:02 vlan_id 1743 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10843 flower src_mac 02:e4:a8:d8:4f:48 dst_mac 02:59:54:c5:b6:f4 vlan_id 709 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10844 flower src_mac 02:80:38:c4:19:88 dst_mac 02:b3:9b:2b:e8:3e src_ip 42.50.234.101 dst_ip 69.185.149.173 ip_proto tcp src_port 60730 dst_port 19061 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:eb:46:48:b7:e2 dst_mac 02:20:ab:3c:8c:5b vlan_id 1579 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10846 flower src_mac 02:9a:0d:ea:06:e0 dst_mac 02:e2:8a:e4:ee:5f action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10847 flower src_mac 02:d0:7d:9b:6f:ba dst_mac 02:0e:45:18:f1:8e action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10848 flower src_mac 02:6c:16:0b:36:47 dst_mac 02:8d:03:8b:60:39 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10849 flower src_mac 02:44:ea:95:b9:68 dst_mac 02:b6:b1:a9:32:d1 src_ip 65.51.115.212 dst_ip 37.97.162.129 ip_proto icmp code 56 type 4 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:66:39:82:00:e6 dst_mac 02:1b:a1:c9:b0:fc vlan_id 3284 vlan_ethtype ipv4 src_ip 24.2.41.203 dst_ip 22.26.153.79 ip_proto tcp src_port 56054 dst_port 45216 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10851 flower src_mac 02:4d:8c:1b:8b:d2 dst_mac 02:a5:69:d3:4e:d7 src_ip 89.159.210.53 dst_ip 96.213.46.99 ip_proto tcp src_port 59918 dst_port 24952 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10852 flower src_mac 02:4a:eb:b3:b8:61 dst_mac 02:e2:5d:47:80:9e src_ip 18.7.110.181 dst_ip 64.87.5.215 ip_proto icmp code 215 type 17 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10853 flower src_mac 02:9f:8a:e4:a6:27 dst_mac 02:98:6c:f5:46:f0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10854 flower src_mac 02:4c:42:d0:c9:6e dst_mac 02:85:12:c1:31:f9 vlan_id 4037 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10855 flower src_mac 02:9f:85:77:dd:db dst_mac 02:37:01:42:83:29 src_ip 56.211.29.15 dst_ip 40.76.189.200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10856 flower src_mac 02:62:54:c8:60:b7 dst_mac 02:e6:61:a0:cc:87 vlan_id 2646 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10857 flower src_mac 02:44:dc:c8:24:1e dst_mac 02:a1:56:2c:cc:91 src_ip 38.39.230.242 dst_ip 108.74.118.191 ip_proto tcp src_port 53315 dst_port 11991 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10858 flower src_mac 02:3b:b7:0e:1e:1a dst_mac 02:35:3f:af:30:f6 vlan_id 565 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10859 flower src_mac 02:41:12:27:74:13 dst_mac 02:64:c6:31:b2:60 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10860 flower src_mac 02:1a:b4:36:17:4a dst_mac 02:01:88:da:2c:0a vlan_id 2274 vlan_ethtype ip src_ip 120.2.170.168 dst_ip 43.211.46.57 ip_proto tcp src_port 60634 dst_port 38021 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10861 flower src_mac 02:97:a4:8b:15:e8 dst_mac 02:c2:90:5d:e0:4b action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10862 flower src_mac 02:b9:26:82:70:d6 dst_mac 02:81:4b:22:d3:5a action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10863 flower src_mac 02:c2:68:0b:c3:15 dst_mac 02:02:a1:61:18:f7 vlan_id 2960 vlan_ethtype ipv4 src_ip 11.228.142.16 dst_ip 36.94.227.88 action pass && tc filter add dev swp33 ingress protocol ip pref 10864 flower src_mac 02:86:eb:d5:bb:8c dst_mac 02:38:ca:19:b6:ca src_ip 125.32.216.127 dst_ip 104.237.11.169 ip_proto icmp code 236 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10865 flower src_mac 02:e4:03:3d:b1:59 dst_mac 02:a4:f6:30:ca:f4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10866 flower src_mac 02:6a:0c:6b:30:fc dst_mac 02:98:a1:01:70:5d vlan_id 790 vlan_ethtype 0x0800 src_ip 74.94.79.128 dst_ip 14.115.229.71 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:f2:02:c2:f3:1b dst_mac 02:c9:7d:96:c7:88 vlan_id 3713 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10868 flower src_mac 02:f0:ea:f1:73:d3 dst_mac 02:e6:47:0c:88:6a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10869 flower src_mac 02:a5:4f:62:5b:5b dst_mac 02:b3:cc:0a:de:4e vlan_id 3106 vlan_ethtype ipv4 src_ip 43.141.93.117 dst_ip 60.23.200.160 ip_proto udp src_port 25577 dst_port 56673 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10870 flower src_mac 02:76:a4:c3:b5:ad dst_mac 02:7b:c1:e7:51:86 vlan_id 2720 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10871 flower src_mac 02:06:e7:d4:e6:c2 dst_mac 02:33:17:67:a8:43 vlan_id 2234 vlan_ethtype 0x0800 src_ip 117.132.108.100 dst_ip 110.6.198.68 ip_proto udp src_port 8759 dst_port 44949 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10872 flower src_mac 02:33:aa:4d:90:b4 dst_mac 02:db:3b:a4:7f:68 vlan_id 2890 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10873 flower src_mac 02:c6:fe:49:32:68 dst_mac 02:03:65:b6:e2:cc src_ip 35.74.61.90 dst_ip 42.109.93.96 ip_proto udp src_port 15351 dst_port 42989 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10874 flower src_mac 02:76:04:ad:0f:31 dst_mac 02:29:c6:c6:fd:50 vlan_id 2050 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10875 flower src_mac 02:21:41:42:70:10 dst_mac 02:e8:68:37:72:a7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10876 flower src_mac 02:0f:f9:8c:2a:9e dst_mac 02:e6:c7:5a:7c:14 vlan_id 2353 vlan_ethtype ip src_ip 114.216.74.62 dst_ip 60.75.223.46 ip_proto tcp src_port 960 dst_port 57888 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10877 flower src_mac 02:59:13:66:50:08 dst_mac 02:44:44:0e:19:12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10878 flower src_mac 02:f3:76:a3:d6:62 dst_mac 02:f1:01:6b:4c:17 vlan_id 862 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10879 flower src_mac 02:b4:ef:69:b2:f2 dst_mac 02:4f:d3:1f:e8:d6 vlan_id 491 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:f0:69:ba:18:c3 dst_mac 02:98:08:06:08:c3 vlan_id 805 vlan_ethtype 0x0800 src_ip 100.28.86.68 dst_ip 110.71.113.163 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10881 flower src_mac 02:42:c1:f9:49:c0 dst_mac 02:52:af:12:4d:af vlan_id 4002 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10882 flower src_mac 02:cf:64:d1:8e:be dst_mac 02:41:5d:db:99:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:39:9d:2a:04:fb dst_mac 02:bd:19:19:bc:2f vlan_id 3790 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10884 flower src_mac 02:33:b6:47:4c:1f dst_mac 02:64:a2:e4:03:f7 vlan_id 1472 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10885 flower src_mac 02:7a:09:0a:44:2b dst_mac 02:68:6e:01:15:c9 vlan_id 1748 vlan_ethtype ipv4 src_ip 62.92.148.61 dst_ip 76.28.69.116 action pass && tc filter add dev swp33 ingress protocol ip pref 10886 flower src_mac 02:9a:d7:01:61:23 dst_mac 02:81:d6:63:a1:6b src_ip 52.75.47.15 dst_ip 120.188.64.73 ip_proto icmp code 211 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10887 flower src_mac 02:8f:fc:bc:e7:64 dst_mac 02:7e:9e:15:93:e0 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:e0:07:a4:64:45 dst_mac 02:e3:33:83:bd:6d vlan_id 2976 vlan_ethtype 0x0800 src_ip 99.40.54.139 dst_ip 27.103.64.240 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10889 flower src_mac 02:f9:47:c0:14:0d dst_mac 02:27:45:6b:a8:d4 src_ip 30.214.205.10 dst_ip 15.25.1.94 ip_proto tcp src_port 50873 dst_port 58178 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10890 flower src_mac 02:f1:dc:4b:80:f2 dst_mac 02:ae:71:ac:2d:86 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10891 flower src_mac 02:6f:98:ac:f4:21 dst_mac 02:dd:28:32:79:24 vlan_id 2180 vlan_ethtype ip src_ip 49.61.154.69 dst_ip 80.113.2.157 ip_proto udp src_port 12687 dst_port 33397 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10892 flower src_mac 02:96:7f:2d:aa:00 dst_mac 02:de:b5:13:22:ab src_ip 115.236.175.181 dst_ip 112.120.251.59 action trap && tc filter add dev swp33 ingress protocol ip pref 10893 flower src_mac 02:44:bd:3a:cb:fc dst_mac 02:f2:7e:fc:12:06 src_ip 63.136.181.31 dst_ip 100.108.233.121 ip_proto udp src_port 59088 dst_port 38978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10894 flower src_mac 02:a7:9e:f4:e3:2e dst_mac 02:98:c1:cd:59:e0 vlan_id 981 vlan_ethtype ipv4 src_ip 124.81.88.35 dst_ip 97.214.164.189 ip_proto tcp src_port 8014 dst_port 56305 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10895 flower src_mac 02:20:d1:cb:66:30 dst_mac 02:d6:bb:f2:62:ca src_ip 109.183.150.243 dst_ip 60.184.152.165 ip_proto udp src_port 15306 dst_port 57374 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10896 flower src_mac 02:c9:8f:31:d6:19 dst_mac 02:e7:a7:db:40:f1 action drop && tc filter add dev swp33 ingress protocol ip pref 10897 flower src_mac 02:8f:38:15:bb:ef dst_mac 02:69:0b:1d:69:d6 src_ip 56.144.66.194 dst_ip 26.235.126.43 ip_proto tcp src_port 52838 dst_port 10361 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10898 flower src_mac 02:73:66:2b:28:f7 dst_mac 02:dd:dc:42:59:6c action trap && tc filter add dev swp33 ingress protocol ip pref 10899 flower src_mac 02:b5:74:5b:c9:78 dst_mac 02:3e:07:9b:84:6b src_ip 124.172.178.79 dst_ip 12.183.118.175 ip_proto tcp src_port 38833 dst_port 49181 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:db:91:3f:62:8a dst_mac 02:0d:a6:3a:3b:05 vlan_id 2085 vlan_ethtype ipv4 src_ip 57.72.37.46 dst_ip 64.55.47.169 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10901 flower src_mac 02:ae:2f:a6:be:81 dst_mac 02:31:3a:f0:9c:21 src_ip 92.91.134.104 dst_ip 14.43.216.153 ip_proto udp src_port 11401 dst_port 31323 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10902 flower src_mac 02:00:ae:72:e1:5c dst_mac 02:40:ba:6b:7e:f5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10903 flower src_mac 02:5f:f8:0e:aa:ac dst_mac 02:67:2f:5a:d1:29 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10904 flower src_mac 02:1b:05:ee:db:28 dst_mac 02:df:8b:9c:70:76 vlan_id 3132 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10905 flower src_mac 02:02:93:37:48:d3 dst_mac 02:4e:2c:d3:a6:15 vlan_id 3112 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10906 flower src_mac 02:8e:0d:45:6a:f6 dst_mac 02:be:42:ab:aa:70 vlan_id 2071 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10907 flower src_mac 02:9f:eb:c4:1c:6a dst_mac 02:f1:f2:11:55:09 vlan_id 654 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10908 flower src_mac 02:cf:c8:6e:3c:72 dst_mac 02:9f:b8:82:8d:be vlan_id 2850 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10909 flower src_mac 02:1f:14:c2:42:5e dst_mac 02:a0:59:43:8e:96 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10910 flower src_mac 02:5e:42:a7:81:23 dst_mac 02:31:4f:96:62:e2 action trap && tc filter add dev swp33 ingress protocol ip pref 10911 flower src_mac 02:c9:d1:d9:29:00 dst_mac 02:ab:08:a4:a2:2e src_ip 71.58.96.133 dst_ip 125.203.222.168 ip_proto icmp code 226 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10912 flower src_mac 02:a5:23:ba:3e:8e dst_mac 02:16:b3:7b:01:27 src_ip 52.3.129.68 dst_ip 64.72.128.122 ip_proto tcp src_port 50408 dst_port 7397 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10913 flower src_mac 02:bf:1c:c6:c2:b5 dst_mac 02:95:6a:02:f3:38 src_ip 39.85.126.184 dst_ip 102.123.97.149 ip_proto tcp src_port 5939 dst_port 14538 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10914 flower src_mac 02:06:7f:a1:74:2f dst_mac 02:b5:08:40:7e:00 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10915 flower src_mac 02:85:8c:67:7a:8a dst_mac 02:d3:92:77:83:18 vlan_id 4017 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10916 flower src_mac 02:bb:e2:c5:c1:2a dst_mac 02:59:c0:c2:cf:30 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:32:9e:0c:cc:e8 dst_mac 02:23:5b:f5:e8:01 vlan_id 57 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10918 flower src_mac 02:66:ee:77:ea:d7 dst_mac 02:c7:95:db:a9:04 src_ip 26.20.103.214 dst_ip 43.224.204.209 ip_proto icmp code 92 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10919 flower src_mac 02:ad:a7:8e:7c:8b dst_mac 02:a2:ad:1d:39:37 vlan_id 1804 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10920 flower src_mac 02:8d:36:2a:f2:b2 dst_mac 02:df:0b:34:fe:49 action pass && tc filter add dev swp33 ingress protocol ip pref 10921 flower src_mac 02:f9:f9:d4:f5:53 dst_mac 02:2e:d0:f1:c3:25 src_ip 20.26.128.232 dst_ip 105.216.91.7 ip_proto udp src_port 15360 dst_port 14691 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10922 flower src_mac 02:61:35:fd:2d:c5 dst_mac 02:d8:da:5c:68:07 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:1b:07:be:39:d8 dst_mac 02:af:42:6d:6a:e6 vlan_id 1330 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10924 flower src_mac 02:86:82:91:35:f5 dst_mac 02:13:af:8f:04:ac vlan_id 291 vlan_ethtype 0x0800 src_ip 80.57.251.95 dst_ip 105.0.169.183 ip_proto tcp src_port 1294 dst_port 64590 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10925 flower src_mac 02:00:75:49:98:33 dst_mac 02:fc:c2:bc:21:cd vlan_id 2453 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10926 flower src_mac 02:ea:81:59:26:75 dst_mac 02:e9:10:01:e5:12 vlan_id 1756 vlan_ethtype 0x0800 src_ip 17.35.198.64 dst_ip 114.92.176.86 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10927 flower src_mac 02:7d:66:56:d4:f3 dst_mac 02:ff:03:9b:af:2b vlan_id 774 vlan_ethtype ipv4 src_ip 47.142.80.234 dst_ip 113.191.25.73 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10928 flower src_mac 02:dd:cb:36:c1:17 dst_mac 02:ee:10:50:0d:81 vlan_id 923 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10929 flower src_mac 02:fb:da:3b:09:26 dst_mac 02:cb:bc:fe:91:35 vlan_id 594 vlan_ethtype ipv4 src_ip 73.68.10.185 dst_ip 37.39.251.177 ip_proto udp src_port 41514 dst_port 9980 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10930 flower src_mac 02:64:2c:de:d8:2a dst_mac 02:55:1d:b1:33:db vlan_id 1760 vlan_ethtype ipv4 src_ip 89.93.62.97 dst_ip 101.189.43.194 ip_proto tcp src_port 43034 dst_port 38662 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10931 flower src_mac 02:7d:71:3b:ef:aa dst_mac 02:9f:2f:ed:fc:4a vlan_id 2906 vlan_ethtype ip src_ip 105.186.145.141 dst_ip 37.212.217.196 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10932 flower src_mac 02:f7:78:65:53:a5 dst_mac 02:cf:e6:b3:e6:46 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10933 flower src_mac 02:6c:08:6f:be:0c dst_mac 02:42:f2:7c:8f:d3 vlan_id 1751 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10934 flower src_mac 02:42:ac:17:6c:49 dst_mac 02:90:d1:c9:43:7c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10935 flower src_mac 02:26:d6:ba:96:57 dst_mac 02:d7:0b:99:13:6b vlan_id 1755 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10936 flower src_mac 02:89:31:cd:cf:0f dst_mac 02:26:ad:9a:71:9b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10937 flower src_mac 02:10:f9:0e:a6:5e dst_mac 02:e9:83:70:d3:de vlan_id 3270 vlan_ethtype 0x0800 src_ip 19.9.42.43 dst_ip 36.235.224.210 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10938 flower src_mac 02:a4:6e:b7:e4:99 dst_mac 02:a3:57:84:3b:46 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10939 flower src_mac 02:11:19:01:16:b6 dst_mac 02:96:e8:3c:1e:0e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10940 flower src_mac 02:c0:5d:d6:8e:53 dst_mac 02:c3:a9:70:40:ae vlan_id 938 vlan_ethtype ipv4 src_ip 55.17.101.36 dst_ip 74.97.152.84 ip_proto udp src_port 7277 dst_port 24551 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10941 flower src_mac 02:94:bc:df:09:2e dst_mac 02:72:bc:7c:8b:5c action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:5a:03:c9:32:b3 dst_mac 02:8a:5a:f6:88:17 vlan_id 3264 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10943 flower src_mac 02:f4:6f:83:39:68 dst_mac 02:39:ba:31:56:72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10944 flower src_mac 02:26:dc:f5:64:c3 dst_mac 02:4c:88:7f:5a:03 vlan_id 416 vlan_ethtype ip src_ip 32.51.249.214 dst_ip 97.17.123.24 ip_proto udp src_port 26886 dst_port 60300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10945 flower src_mac 02:48:5e:f9:b4:0c dst_mac 02:b3:74:93:90:65 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10946 flower src_mac 02:44:6a:e0:6d:39 dst_mac 02:fc:39:c2:00:64 vlan_id 395 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10947 flower src_mac 02:20:1e:70:e1:13 dst_mac 02:ec:61:78:eb:5d src_ip 18.172.181.237 dst_ip 119.68.69.65 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10948 flower src_mac 02:7f:1e:f5:8c:bf dst_mac 02:ce:5b:b0:93:6d vlan_id 3906 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10949 flower src_mac 02:26:5d:b4:c6:d3 dst_mac 02:a4:be:84:ab:cd vlan_id 2262 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10950 flower src_mac 02:27:86:79:5f:7d dst_mac 02:fc:42:4a:ad:6e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10951 flower src_mac 02:fe:68:a5:13:b8 dst_mac 02:55:65:63:b4:f9 vlan_id 2281 vlan_ethtype ip src_ip 15.25.193.97 dst_ip 70.199.230.249 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10952 flower src_mac 02:a4:cf:2a:7b:54 dst_mac 02:fb:b2:8d:07:94 vlan_id 1449 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10953 flower src_mac 02:3f:9d:4f:49:6f dst_mac 02:25:44:96:08:ad action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10954 flower src_mac 02:99:d8:8b:23:a4 dst_mac 02:1a:d7:88:2f:0d vlan_id 1222 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10955 flower src_mac 02:e5:4a:86:a6:fd dst_mac 02:fe:02:4c:e9:15 vlan_id 1934 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10956 flower src_mac 02:00:48:80:35:1f dst_mac 02:f6:56:63:99:7a vlan_id 1114 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10957 flower src_mac 02:20:f0:ec:12:95 dst_mac 02:16:91:f5:81:e0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10958 flower src_mac 02:eb:26:bd:5d:7f dst_mac 02:1e:bd:fa:d7:21 vlan_id 2942 vlan_ethtype ip src_ip 57.215.11.205 dst_ip 22.124.208.150 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10959 flower src_mac 02:64:55:8f:18:00 dst_mac 02:50:72:fb:47:17 vlan_id 2757 vlan_ethtype ip src_ip 63.165.195.226 dst_ip 13.176.31.209 ip_proto tcp src_port 40499 dst_port 23216 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:fa:71:64:4b:31 dst_mac 02:bd:98:9a:4d:75 vlan_id 999 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10961 flower src_mac 02:5c:f5:34:34:aa dst_mac 02:32:49:b1:0a:1c vlan_id 2157 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10962 flower src_mac 02:4d:98:9c:9c:ab dst_mac 02:8b:a5:45:43:d7 vlan_id 2651 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10963 flower src_mac 02:e6:1e:50:bf:3b dst_mac 02:20:31:09:b5:3b vlan_id 2030 vlan_ethtype ip src_ip 121.6.179.213 dst_ip 94.123.67.26 ip_proto tcp src_port 60580 dst_port 16684 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10964 flower src_mac 02:c4:10:60:08:9e dst_mac 02:8b:ec:9d:4c:60 vlan_id 301 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10965 flower src_mac 02:02:25:26:44:fa dst_mac 02:14:c8:86:21:fe src_ip 41.234.246.104 dst_ip 114.22.49.239 ip_proto tcp src_port 2469 dst_port 48864 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10966 flower src_mac 02:13:d3:39:0d:d1 dst_mac 02:f8:4c:e9:e4:9d vlan_id 1616 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10967 flower src_mac 02:e6:54:af:5c:70 dst_mac 02:aa:42:b3:81:8f vlan_id 1960 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10968 flower src_mac 02:d2:66:78:39:a0 dst_mac 02:36:81:7d:9f:01 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10969 flower src_mac 02:b7:6b:db:9a:6b dst_mac 02:19:32:14:f8:4f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10970 flower src_mac 02:07:ec:8b:b0:ca dst_mac 02:7b:38:b7:3f:c1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10971 flower src_mac 02:c1:c1:29:ba:10 dst_mac 02:1a:98:13:7f:8f src_ip 79.78.196.229 dst_ip 101.158.109.35 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10972 flower src_mac 02:bb:f7:2d:2b:2d dst_mac 02:b1:8f:f6:9f:71 src_ip 24.65.178.129 dst_ip 40.113.224.28 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10973 flower src_mac 02:fe:2d:7f:34:27 dst_mac 02:4e:93:4d:d1:f1 vlan_id 556 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10974 flower src_mac 02:0b:df:ca:ab:21 dst_mac 02:fd:38:96:43:46 vlan_id 2556 vlan_ethtype ipv4 src_ip 54.68.47.135 dst_ip 119.115.62.240 ip_proto tcp src_port 38405 dst_port 27627 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10975 flower src_mac 02:6e:05:bf:ec:d0 dst_mac 02:a2:6f:a4:4d:97 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10976 flower src_mac 02:f5:79:32:ce:37 dst_mac 02:4b:85:96:a7:24 vlan_id 3240 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10977 flower src_mac 02:f4:f4:6d:da:83 dst_mac 02:4a:fc:b9:35:04 vlan_id 2773 vlan_ethtype ip src_ip 125.176.8.86 dst_ip 81.4.39.206 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10978 flower src_mac 02:72:bc:07:35:34 dst_mac 02:e9:fc:3d:94:b4 vlan_id 2334 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10979 flower src_mac 02:3d:d9:97:69:4c dst_mac 02:fb:f3:07:48:e0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10980 flower src_mac 02:df:68:6d:62:45 dst_mac 02:ab:9e:89:5a:ce vlan_id 3725 vlan_ethtype ipv4 src_ip 22.33.185.9 dst_ip 107.145.32.27 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:e3:96:2a:17:f3 dst_mac 02:4e:c6:d1:88:b2 vlan_id 1657 vlan_ethtype ip src_ip 30.108.58.104 dst_ip 85.187.0.144 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10982 flower src_mac 02:a2:44:be:bc:66 dst_mac 02:be:1e:34:ed:d8 vlan_id 3931 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10983 flower src_mac 02:86:01:44:4b:5e dst_mac 02:6f:9b:4a:42:a7 src_ip 90.207.179.143 dst_ip 45.224.176.225 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10984 flower src_mac 02:d6:25:67:7c:9c dst_mac 02:64:4e:18:47:3d src_ip 16.106.37.144 dst_ip 27.240.45.56 ip_proto icmp code 79 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10985 flower src_mac 02:83:2c:c3:ae:8f dst_mac 02:30:88:3b:c6:34 vlan_id 2160 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10986 flower src_mac 02:1e:0d:dc:e1:c1 dst_mac 02:7b:3b:33:b5:41 vlan_id 1121 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10987 flower src_mac 02:ec:f7:1b:8d:40 dst_mac 02:35:8f:da:2a:bd vlan_id 3401 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:f1:1d:b9:1f:fb dst_mac 02:50:af:96:32:f1 vlan_id 3076 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10989 flower src_mac 02:3c:51:cf:80:ea dst_mac 02:8b:a9:ad:95:b7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10990 flower src_mac 02:84:94:42:28:cd dst_mac 02:85:63:b9:a5:ba vlan_id 2628 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10991 flower src_mac 02:4d:f1:57:9d:0f dst_mac 02:ae:6c:bb:48:5c src_ip 69.30.189.119 dst_ip 22.236.137.212 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10992 flower src_mac 02:c0:01:d2:40:47 dst_mac 02:b8:05:80:9f:45 src_ip 61.224.27.42 dst_ip 107.118.154.148 ip_proto udp src_port 34879 dst_port 51948 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10993 flower src_mac 02:0b:12:b5:25:7f dst_mac 02:9e:67:9f:22:b4 src_ip 55.52.167.159 dst_ip 97.165.246.138 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10994 flower src_mac 02:73:15:56:d5:b3 dst_mac 02:51:4b:a5:97:2a vlan_id 3870 vlan_ethtype 0x0800 src_ip 108.160.213.104 dst_ip 22.120.52.146 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10995 flower src_mac 02:8b:8a:79:ac:39 dst_mac 02:52:dc:40:f5:38 vlan_id 1156 vlan_ethtype 0x0800 src_ip 32.238.5.37 dst_ip 114.16.15.142 ip_proto tcp src_port 3945 dst_port 27089 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10996 flower src_mac 02:af:9e:c5:c5:17 dst_mac 02:e5:ac:3c:7e:41 src_ip 52.168.181.53 dst_ip 72.145.102.96 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10997 flower src_mac 02:e2:ca:8f:20:72 dst_mac 02:40:05:2f:21:91 vlan_id 229 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10998 flower src_mac 02:e6:57:e5:f4:32 dst_mac 02:89:40:f7:38:b5 src_ip 32.180.179.112 dst_ip 93.93.101.6 ip_proto icmp code 142 type 14 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:e4:d6:33:c1:12 dst_mac 02:8a:52:94:a2:72 src_ip 11.186.43.168 dst_ip 62.176.213.115 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11000 flower src_mac 02:5b:fc:2a:a8:d4 dst_mac 02:19:2e:3c:bc:e2 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11001 flower src_mac 02:f6:50:a8:d1:64 dst_mac 02:af:44:65:f5:b9 vlan_id 1369 vlan_ethtype ip src_ip 13.18.234.230 dst_ip 83.249.246.57 ip_proto tcp src_port 42013 dst_port 49644 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11002 flower src_mac 02:5a:6e:a7:67:4a dst_mac 02:fd:30:5f:07:fe vlan_id 2956 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11003 flower src_mac 02:e0:7b:2c:9e:ad dst_mac 02:79:54:f4:1d:8a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11004 flower src_mac 02:f0:2e:a1:b9:1f dst_mac 02:02:63:d3:37:ef src_ip 49.53.5.32 dst_ip 108.215.148.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11005 flower src_mac 02:2d:0d:34:7d:89 dst_mac 02:8d:6c:df:b2:b6 vlan_id 1667 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:a5:db:a2:10:14 dst_mac 02:ce:3f:34:44:ca src_ip 20.92.25.244 dst_ip 33.249.141.37 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11007 flower src_mac 02:29:d3:00:7d:b8 dst_mac 02:cd:c9:2b:cb:6b src_ip 87.242.82.202 dst_ip 95.43.188.122 ip_proto tcp src_port 59662 dst_port 62421 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11008 flower src_mac 02:6e:d3:2d:1a:e0 dst_mac 02:9f:98:cb:43:cb vlan_id 1419 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11009 flower src_mac 02:15:ae:5a:52:fb dst_mac 02:3f:31:6c:76:80 vlan_id 231 vlan_ethtype ipv4 src_ip 95.180.59.211 dst_ip 114.167.122.203 ip_proto udp src_port 18059 dst_port 5236 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11010 flower src_mac 02:5d:70:05:3e:69 dst_mac 02:61:78:3a:a0:47 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11011 flower src_mac 02:d9:d1:46:5a:42 dst_mac 02:60:11:0c:00:4b vlan_id 2348 vlan_ethtype 0x0800 src_ip 61.223.161.16 dst_ip 54.246.37.15 ip_proto udp src_port 40675 dst_port 4109 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11012 flower src_mac 02:59:59:6b:d7:73 dst_mac 02:b8:af:1e:f0:09 vlan_id 49 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11013 flower src_mac 02:9e:14:86:b7:05 dst_mac 02:03:9f:b4:d3:25 src_ip 76.91.131.51 dst_ip 40.207.73.134 ip_proto udp src_port 36442 dst_port 50728 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11014 flower src_mac 02:31:f0:df:45:e7 dst_mac 02:59:a4:df:fb:e2 vlan_id 2490 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11015 flower src_mac 02:fa:15:27:f3:e1 dst_mac 02:f0:93:cb:3d:81 vlan_id 285 vlan_ethtype ipv4 src_ip 104.220.41.165 dst_ip 21.144.71.47 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11016 flower src_mac 02:2b:55:f9:06:b9 dst_mac 02:f9:d1:08:a9:d9 vlan_id 2855 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11017 flower src_mac 02:12:78:fc:e6:54 dst_mac 02:b6:4b:76:52:e3 vlan_id 1085 vlan_ethtype ipv4 src_ip 122.85.83.53 dst_ip 44.152.98.222 ip_proto udp src_port 38744 dst_port 25233 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:31:c9:5e:96:7c dst_mac 02:bd:08:8c:5c:50 vlan_id 1247 vlan_ethtype 0x0800 src_ip 93.93.244.57 dst_ip 58.12.42.78 ip_proto tcp src_port 52976 dst_port 40033 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11019 flower src_mac 02:70:50:37:55:07 dst_mac 02:74:23:62:62:3a vlan_id 2457 vlan_ethtype 0x0800 src_ip 105.152.148.230 dst_ip 48.174.149.4 ip_proto tcp src_port 49080 dst_port 55954 action drop && tc filter add dev swp33 ingress protocol ip pref 11020 flower src_mac 02:e8:44:d9:e4:28 dst_mac 02:f4:99:65:80:36 src_ip 125.242.114.214 dst_ip 53.75.24.140 ip_proto udp src_port 33309 dst_port 19671 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:8f:e8:4c:1c:f4 dst_mac 02:30:d0:7b:6c:4f vlan_id 2525 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11022 flower src_mac 02:26:f1:a1:82:f0 dst_mac 02:16:fb:60:c5:84 src_ip 32.8.36.167 dst_ip 69.221.237.234 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11023 flower src_mac 02:cd:ec:a2:61:90 dst_mac 02:3c:dc:24:a1:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11024 flower src_mac 02:50:3d:21:51:3e dst_mac 02:c2:d6:66:ba:ce vlan_id 792 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11025 flower src_mac 02:0b:ba:f5:51:41 dst_mac 02:68:a9:11:ac:c0 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11026 flower src_mac 02:d9:88:e0:86:9f dst_mac 02:09:86:d7:3e:1a vlan_id 2415 vlan_ethtype ipv4 src_ip 47.240.133.57 dst_ip 91.222.173.132 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11027 flower src_mac 02:79:bb:92:35:49 dst_mac 02:ba:cd:02:f0:86 vlan_id 3985 vlan_ethtype ip src_ip 55.92.201.125 dst_ip 73.65.162.211 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11028 flower src_mac 02:d1:68:61:51:b4 dst_mac 02:b4:28:41:12:6f vlan_id 102 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11029 flower src_mac 02:66:32:5c:91:85 dst_mac 02:33:0e:00:cc:2e action pass && tc filter add dev swp33 ingress protocol ip pref 11030 flower src_mac 02:41:19:28:eb:bb dst_mac 02:9c:f2:b9:df:9b src_ip 26.97.99.25 dst_ip 121.85.70.136 ip_proto icmp code 84 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11031 flower src_mac 02:59:e4:41:93:5f dst_mac 02:bb:98:6d:93:5b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11032 flower src_mac 02:4f:65:2d:90:4b dst_mac 02:25:42:5e:9a:58 src_ip 56.116.29.94 dst_ip 103.31.22.73 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:67:51:48:7a:da dst_mac 02:bc:0e:82:0d:50 vlan_id 3565 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11034 flower src_mac 02:62:75:60:42:d6 dst_mac 02:2f:f7:77:e6:ec src_ip 95.62.4.128 dst_ip 83.0.50.48 ip_proto tcp src_port 12739 dst_port 22989 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11035 flower src_mac 02:82:90:d7:55:19 dst_mac 02:db:b2:c7:b1:e1 vlan_id 1868 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11036 flower src_mac 02:28:75:89:bd:81 dst_mac 02:56:2a:05:23:32 vlan_id 3465 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11037 flower src_mac 02:d0:28:9c:9a:89 dst_mac 02:b2:5e:1e:65:b2 vlan_id 3712 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11038 flower src_mac 02:02:be:de:13:cf dst_mac 02:19:d6:b6:be:7e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11039 flower src_mac 02:a6:bd:7e:35:e0 dst_mac 02:a6:18:d4:b7:fd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:32:9d:30:52:12 dst_mac 02:1f:e5:c3:cd:6f vlan_id 2442 vlan_ethtype ip src_ip 118.87.238.49 dst_ip 81.33.180.156 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:f5:7f:4c:c8:19 dst_mac 02:b3:98:8b:c4:07 vlan_id 3933 vlan_ethtype 0x0800 src_ip 123.60.255.191 dst_ip 93.87.35.187 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11042 flower src_mac 02:da:2d:18:d8:24 dst_mac 02:8a:49:e3:ff:c0 src_ip 119.64.241.209 dst_ip 13.25.20.99 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11043 flower src_mac 02:84:e1:f7:59:a6 dst_mac 02:fb:c0:0e:f7:d3 vlan_id 3627 vlan_ethtype ip src_ip 83.235.50.234 dst_ip 66.132.214.184 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:e4:cc:4c:94:ef dst_mac 02:0b:bd:c8:a2:9e vlan_id 2495 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11045 flower src_mac 02:e8:bd:13:1d:92 dst_mac 02:f4:f5:01:61:fc action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11046 flower src_mac 02:2b:5a:e5:a9:9a dst_mac 02:5f:06:12:e5:33 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11047 flower src_mac 02:14:df:58:7a:77 dst_mac 02:0d:9e:18:a3:3b src_ip 57.66.29.112 dst_ip 105.81.51.28 ip_proto icmp code 172 type 11 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:48:5b:a8:65:d3 dst_mac 02:14:65:1d:36:9b vlan_id 1122 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11049 flower src_mac 02:62:10:40:2c:cf dst_mac 02:90:12:f7:94:9b action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11050 flower src_mac 02:c2:0a:d8:f1:87 dst_mac 02:b9:61:7b:75:4f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11051 flower src_mac 02:58:c7:31:27:5d dst_mac 02:fa:49:9c:ff:ea action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11052 flower src_mac 02:f9:83:95:0c:68 dst_mac 02:69:b7:20:58:02 vlan_id 1715 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11053 flower src_mac 02:1b:89:c6:69:1b dst_mac 02:d6:f5:2f:7e:97 vlan_id 3770 vlan_ethtype ipv4 src_ip 40.230.30.183 dst_ip 82.29.254.114 ip_proto udp src_port 6515 dst_port 5418 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11054 flower src_mac 02:85:31:11:52:97 dst_mac 02:1c:c0:8d:97:c5 vlan_id 975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11055 flower src_mac 02:c7:7d:6e:27:ce dst_mac 02:e3:2e:98:e2:83 vlan_id 2331 vlan_ethtype ip src_ip 84.95.31.172 dst_ip 40.100.27.172 ip_proto tcp src_port 53353 dst_port 51391 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11056 flower src_mac 02:d2:45:7d:ee:4b dst_mac 02:12:06:87:f5:6c vlan_id 3635 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11057 flower src_mac 02:37:c9:89:34:b4 dst_mac 02:fa:b5:99:f6:a8 src_ip 23.237.65.79 dst_ip 57.185.21.233 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11058 flower src_mac 02:f6:db:c5:04:71 dst_mac 02:b9:5a:97:8c:71 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11059 flower src_mac 02:d1:7f:0c:8a:45 dst_mac 02:a8:f2:8b:c7:e9 vlan_id 1476 vlan_ethtype 0x0800 src_ip 42.192.166.164 dst_ip 31.234.226.54 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11060 flower src_mac 02:84:b9:da:9e:74 dst_mac 02:2c:ac:fc:41:b2 vlan_id 873 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11061 flower src_mac 02:6f:01:89:30:5f dst_mac 02:74:7f:4e:5b:cb vlan_id 3422 vlan_ethtype 0x0800 src_ip 30.251.169.199 dst_ip 11.21.70.161 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11062 flower src_mac 02:4d:58:ef:39:33 dst_mac 02:09:17:71:9b:51 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11063 flower src_mac 02:ed:74:e3:7b:70 dst_mac 02:8f:2c:da:1e:27 src_ip 83.77.60.174 dst_ip 83.199.205.77 ip_proto udp src_port 43783 dst_port 1709 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11064 flower src_mac 02:52:d3:30:e9:72 dst_mac 02:0f:34:29:94:23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11065 flower src_mac 02:9f:03:48:4a:08 dst_mac 02:62:18:ac:8d:63 vlan_id 716 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11066 flower src_mac 02:20:d4:e5:d9:22 dst_mac 02:3a:77:e9:79:72 vlan_id 2151 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11067 flower src_mac 02:dc:3e:b6:57:56 dst_mac 02:9d:50:11:50:e5 vlan_id 1779 vlan_ethtype ipv4 src_ip 105.190.200.56 dst_ip 110.25.84.216 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11068 flower src_mac 02:1a:6c:29:03:0e dst_mac 02:64:ae:97:5d:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11069 flower src_mac 02:f0:62:a0:55:9e dst_mac 02:30:3c:a9:de:1c vlan_id 1345 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11070 flower src_mac 02:00:3b:6b:61:d3 dst_mac 02:61:c3:13:67:fb src_ip 91.135.12.127 dst_ip 96.6.53.68 ip_proto udp src_port 50852 dst_port 28644 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11071 flower src_mac 02:82:1f:58:b0:5c dst_mac 02:ec:0f:6c:40:29 vlan_id 2749 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11072 flower src_mac 02:f3:71:63:f9:3e dst_mac 02:2a:de:32:27:78 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11073 flower src_mac 02:63:16:d2:64:cb dst_mac 02:10:6b:59:b2:92 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11074 flower src_mac 02:d3:33:7c:4f:c2 dst_mac 02:9b:2c:66:11:16 vlan_id 249 vlan_ethtype 0x0800 src_ip 91.250.14.193 dst_ip 20.37.79.104 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11075 flower src_mac 02:3a:33:80:a2:81 dst_mac 02:3c:e6:af:67:b2 vlan_id 1455 vlan_ethtype ipv4 src_ip 26.6.44.114 dst_ip 47.221.79.95 ip_proto tcp src_port 54872 dst_port 10287 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11076 flower src_mac 02:4c:d7:6d:b3:48 dst_mac 02:30:14:84:ee:dd vlan_id 392 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11077 flower src_mac 02:5e:6f:ff:5a:d3 dst_mac 02:53:b4:39:ae:c4 src_ip 103.64.29.137 dst_ip 87.142.206.30 ip_proto tcp src_port 4322 dst_port 53224 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11078 flower src_mac 02:51:cb:03:44:82 dst_mac 02:0e:11:51:5a:ab action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11079 flower src_mac 02:5a:23:14:f9:22 dst_mac 02:5c:cf:51:fb:7a vlan_id 3991 vlan_ethtype ipv4 src_ip 40.70.208.242 dst_ip 72.34.254.43 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:a9:00:54:c0:5a dst_mac 02:4a:12:9d:55:4b vlan_id 3073 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:90:05:55:43:ee dst_mac 02:b4:15:cd:59:da vlan_id 2431 vlan_ethtype ip src_ip 18.144.63.29 dst_ip 89.230.172.248 ip_proto udp src_port 48299 dst_port 57172 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11082 flower src_mac 02:b0:e2:db:7c:89 dst_mac 02:dc:1f:58:92:27 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:83:de:ff:83:5f dst_mac 02:f3:e7:dd:0d:8b src_ip 42.101.35.107 dst_ip 72.79.121.196 ip_proto icmp code 222 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11084 flower src_mac 02:7e:be:95:88:eb dst_mac 02:de:4d:58:b0:85 vlan_id 3746 vlan_ethtype ipv4 src_ip 74.131.22.59 dst_ip 29.23.17.237 ip_proto udp src_port 6364 dst_port 13288 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11085 flower src_mac 02:7f:f6:77:95:c1 dst_mac 02:95:4d:5d:fa:3f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11086 flower src_mac 02:6d:c4:6f:49:04 dst_mac 02:3d:59:5f:57:d7 vlan_id 1922 vlan_ethtype 0x0800 src_ip 38.42.187.240 dst_ip 53.241.249.232 ip_proto tcp src_port 65397 dst_port 46240 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11087 flower src_mac 02:8d:db:f3:b0:87 dst_mac 02:25:95:ef:6e:e8 src_ip 13.57.124.9 dst_ip 65.252.9.149 ip_proto udp src_port 2604 dst_port 7554 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:38:90:52:81:6f dst_mac 02:88:70:0f:dd:91 vlan_id 657 vlan_ethtype ipv4 src_ip 99.32.153.146 dst_ip 81.50.152.11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11089 flower src_mac 02:08:fc:46:12:9b dst_mac 02:c3:53:da:ff:24 vlan_id 1162 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11090 flower src_mac 02:21:28:9a:ca:15 dst_mac 02:e6:95:c1:13:ad action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11091 flower src_mac 02:f0:04:fd:31:dc dst_mac 02:07:7b:4d:16:f9 vlan_id 2901 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11092 flower src_mac 02:ce:d5:de:f2:2d dst_mac 02:db:b3:3d:26:f4 vlan_id 2813 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11093 flower src_mac 02:eb:46:58:f5:16 dst_mac 02:5d:ee:df:d2:4f vlan_id 3612 vlan_ethtype ipv4 src_ip 20.209.126.147 dst_ip 122.114.58.21 ip_proto udp src_port 40310 dst_port 48894 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11094 flower src_mac 02:29:4b:90:97:15 dst_mac 02:ca:b0:36:51:54 vlan_id 256 vlan_ethtype ip src_ip 88.178.242.177 dst_ip 92.72.6.136 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11095 flower src_mac 02:f1:30:e8:2d:7a dst_mac 02:ab:72:92:c6:82 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:d0:7e:11:5f:fb dst_mac 02:0f:0e:84:fb:43 vlan_id 1761 vlan_ethtype ip src_ip 126.149.181.227 dst_ip 71.190.118.236 ip_proto tcp src_port 30830 dst_port 13977 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11097 flower src_mac 02:c2:f4:34:2a:6b dst_mac 02:14:e4:8b:fc:a5 vlan_id 3661 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11098 flower src_mac 02:c0:e3:b5:a6:30 dst_mac 02:ff:23:8d:6c:ec action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11099 flower src_mac 02:e7:13:7a:20:80 dst_mac 02:5a:0e:1c:3a:ef action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11100 flower src_mac 02:93:5b:19:2f:1d dst_mac 02:1c:50:0f:d5:97 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11101 flower src_mac 02:29:99:5f:54:49 dst_mac 02:b0:78:c6:d1:01 vlan_id 1379 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11102 flower src_mac 02:1a:57:fe:1e:80 dst_mac 02:3f:98:8c:a9:28 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11103 flower src_mac 02:87:e4:ed:a4:fd dst_mac 02:4a:46:1c:25:ec src_ip 112.170.39.44 dst_ip 18.181.134.118 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11104 flower src_mac 02:3c:71:7a:c6:f0 dst_mac 02:63:f2:12:cb:aa src_ip 46.109.244.87 dst_ip 35.241.250.221 ip_proto udp src_port 58322 dst_port 17387 action trap && tc filter add dev swp33 ingress protocol ip pref 11105 flower src_mac 02:5b:b3:fb:25:fa dst_mac 02:37:59:9d:45:bb src_ip 124.139.127.121 dst_ip 112.29.169.138 ip_proto udp src_port 4168 dst_port 13122 action trap && tc filter add dev swp33 ingress protocol ip pref 11106 flower src_mac 02:a0:70:4a:eb:6e dst_mac 02:83:68:50:f7:2e src_ip 64.105.39.52 dst_ip 125.236.33.188 ip_proto udp src_port 51347 dst_port 6454 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11107 flower src_mac 02:90:50:77:5f:bd dst_mac 02:fc:c1:b8:ae:66 vlan_id 2786 vlan_ethtype 0x0800 src_ip 60.54.52.17 dst_ip 40.87.237.131 ip_proto udp src_port 23669 dst_port 22535 action pass && tc filter add dev swp33 ingress protocol ip pref 11108 flower src_mac 02:80:11:bc:d8:62 dst_mac 02:d3:49:c0:e6:e7 src_ip 28.2.153.77 dst_ip 52.150.145.66 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11109 flower src_mac 02:46:4b:ce:50:cd dst_mac 02:86:94:2e:47:0b action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11110 flower src_mac 02:ed:5e:a3:c3:72 dst_mac 02:9d:86:9f:41:77 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11111 flower src_mac 02:c7:7a:86:69:1c dst_mac 02:d2:fd:aa:51:d7 vlan_id 3597 vlan_ethtype 0x0800 src_ip 60.176.28.239 dst_ip 109.123.154.133 ip_proto udp src_port 62380 dst_port 36260 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11112 flower src_mac 02:48:6c:69:eb:58 dst_mac 02:bd:ef:ef:52:f9 src_ip 119.240.30.32 dst_ip 49.241.158.43 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11113 flower src_mac 02:e1:1f:36:bd:c1 dst_mac 02:0b:68:76:e8:11 vlan_id 1028 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:a8:de:91:2d:a8 dst_mac 02:f0:fb:77:02:d2 vlan_id 2511 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11115 flower src_mac 02:2d:e4:af:37:4f dst_mac 02:2f:3c:f0:45:0f action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:ec:ac:cd:e2:ca dst_mac 02:8b:1b:a9:db:01 vlan_id 926 vlan_ethtype 0x0800 src_ip 57.77.168.83 dst_ip 35.95.162.124 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11117 flower src_mac 02:13:1c:67:ec:4c dst_mac 02:c3:1c:27:1c:62 vlan_id 3081 vlan_ethtype ipv4 src_ip 89.208.137.153 dst_ip 11.161.113.241 ip_proto udp src_port 24628 dst_port 51591 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11118 flower src_mac 02:cd:36:ad:ec:91 dst_mac 02:97:6b:0a:7e:78 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11119 flower src_mac 02:d1:6f:24:39:42 dst_mac 02:02:71:de:ac:e7 src_ip 46.76.135.28 dst_ip 117.177.0.99 ip_proto tcp src_port 3932 dst_port 49671 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11120 flower src_mac 02:68:e5:a9:a8:33 dst_mac 02:1e:6a:98:db:a0 vlan_id 2759 vlan_ethtype 0x0800 src_ip 37.250.81.219 dst_ip 75.56.158.109 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11121 flower src_mac 02:1f:f7:bc:e2:2d dst_mac 02:29:c1:c5:14:66 vlan_id 749 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11122 flower src_mac 02:6d:1f:ef:15:8b dst_mac 02:17:69:b8:b5:1d src_ip 83.192.102.107 dst_ip 48.1.88.219 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11123 flower src_mac 02:0c:d1:76:2c:8d dst_mac 02:23:4c:85:c6:63 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:7c:11:26:6d:69 dst_mac 02:17:1e:49:5e:2a vlan_id 2238 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:42:1c:1f:aa:67 dst_mac 02:61:11:82:60:1e vlan_id 3445 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:50:e3:95:24:58 dst_mac 02:17:3a:d7:19:75 vlan_id 1407 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11127 flower src_mac 02:85:de:17:5f:8c dst_mac 02:01:cf:61:91:52 vlan_id 3792 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11128 flower src_mac 02:2f:3f:6f:88:5d dst_mac 02:bb:b3:1d:7e:99 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11129 flower src_mac 02:6b:54:40:31:aa dst_mac 02:35:d3:c1:ff:a5 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11130 flower src_mac 02:eb:7b:16:f1:9e dst_mac 02:04:ed:8e:72:bd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11131 flower src_mac 02:24:34:11:60:b7 dst_mac 02:d1:8a:67:f1:76 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11132 flower src_mac 02:96:96:ff:25:0a dst_mac 02:a8:c8:d5:9f:53 vlan_id 1915 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11133 flower src_mac 02:35:cf:dd:38:ef dst_mac 02:9b:e6:9f:f6:6c vlan_id 888 vlan_ethtype ipv4 src_ip 124.4.101.121 dst_ip 89.44.186.143 ip_proto tcp src_port 54912 dst_port 54777 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11134 flower src_mac 02:41:22:42:8f:6c dst_mac 02:6d:c3:17:8d:fb src_ip 27.28.113.107 dst_ip 16.141.13.47 ip_proto tcp src_port 20430 dst_port 39831 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11135 flower src_mac 02:3f:91:77:b1:3b dst_mac 02:79:bd:65:2f:20 vlan_id 1018 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11136 flower src_mac 02:47:5f:48:db:50 dst_mac 02:63:4a:cb:3f:68 src_ip 74.177.110.131 dst_ip 86.197.121.43 ip_proto tcp src_port 62646 dst_port 63180 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11137 flower src_mac 02:83:66:ce:e0:7c dst_mac 02:d9:bd:66:89:db vlan_id 864 vlan_ethtype 0x0800 src_ip 71.45.62.198 dst_ip 16.109.80.214 ip_proto tcp src_port 6563 dst_port 43538 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11138 flower src_mac 02:70:35:30:d9:b2 dst_mac 02:e9:15:c4:8a:74 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11139 flower src_mac 02:d0:eb:f2:ab:51 dst_mac 02:80:2a:45:56:b2 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11140 flower src_mac 02:6e:b0:24:88:5b dst_mac 02:02:5b:d1:80:10 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11141 flower src_mac 02:ac:3f:76:a8:7c dst_mac 02:08:d7:1c:d0:f7 src_ip 121.114.78.243 dst_ip 51.164.255.236 ip_proto icmp code 143 type 8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11142 flower src_mac 02:d3:be:c3:96:af dst_mac 02:55:5b:2b:75:3e vlan_id 1728 vlan_ethtype ipv4 src_ip 94.117.195.149 dst_ip 47.207.167.5 action drop && tc filter add dev swp33 ingress protocol ip pref 11143 flower src_mac 02:3f:7c:8c:8c:dd dst_mac 02:07:14:10:aa:ca src_ip 61.220.79.44 dst_ip 73.234.190.249 ip_proto udp src_port 56819 dst_port 40913 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11144 flower src_mac 02:a3:27:9f:33:00 dst_mac 02:cf:3d:0a:d1:2a action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11145 flower src_mac 02:52:49:96:72:7d dst_mac 02:42:08:4c:86:e6 src_ip 75.87.120.74 dst_ip 114.121.190.20 ip_proto udp src_port 31835 dst_port 61235 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11146 flower src_mac 02:85:c2:8a:49:11 dst_mac 02:e4:a4:bf:35:12 vlan_id 195 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11147 flower src_mac 02:a3:61:62:d9:06 dst_mac 02:99:53:ac:04:dd src_ip 75.168.169.86 dst_ip 87.188.9.156 ip_proto tcp src_port 22237 dst_port 65485 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11148 flower src_mac 02:00:d6:83:0c:a5 dst_mac 02:e8:72:4a:40:0c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11149 flower src_mac 02:58:aa:77:06:eb dst_mac 02:c1:64:07:91:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11150 flower src_mac 02:a2:c2:6e:96:fa dst_mac 02:e5:21:ae:d2:35 vlan_id 1670 vlan_ethtype ipv4 src_ip 79.155.73.93 dst_ip 110.59.100.20 ip_proto udp src_port 40712 dst_port 11082 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11151 flower src_mac 02:ec:5e:8e:b9:59 dst_mac 02:1c:b5:04:81:2f vlan_id 1280 vlan_ethtype ipv4 src_ip 78.176.188.64 dst_ip 14.45.194.115 ip_proto tcp src_port 52858 dst_port 41906 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11152 flower src_mac 02:42:6d:42:bb:f5 dst_mac 02:6c:a1:e6:44:12 src_ip 49.87.251.195 dst_ip 36.55.209.8 ip_proto tcp src_port 14131 dst_port 9347 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11153 flower src_mac 02:6f:f5:e3:48:7b dst_mac 02:06:bf:64:59:e5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11154 flower src_mac 02:65:e3:db:df:85 dst_mac 02:23:fb:73:5a:90 vlan_id 435 vlan_ethtype ip src_ip 114.31.242.182 dst_ip 40.1.183.222 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11155 flower src_mac 02:85:9c:d7:99:8e dst_mac 02:54:ad:d3:6e:85 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11156 flower src_mac 02:85:82:da:62:34 dst_mac 02:dd:b3:2e:09:cf vlan_id 1550 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11157 flower src_mac 02:79:ef:7a:00:36 dst_mac 02:d3:71:58:69:7e vlan_id 1618 vlan_ethtype ip src_ip 43.2.125.195 dst_ip 54.54.244.209 ip_proto tcp src_port 43908 dst_port 1849 action trap && tc filter add dev swp33 ingress protocol ip pref 11158 flower src_mac 02:67:50:d6:49:88 dst_mac 02:2e:ad:e3:db:ef src_ip 16.54.132.177 dst_ip 53.15.138.37 ip_proto udp src_port 39059 dst_port 25154 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11159 flower src_mac 02:20:c8:98:e7:de dst_mac 02:49:e6:86:af:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11160 flower src_mac 02:dd:31:40:01:4c dst_mac 02:ab:05:f8:f9:50 vlan_id 3308 vlan_ethtype 0x0800 src_ip 117.208.5.73 dst_ip 104.204.102.176 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11161 flower src_mac 02:94:34:44:b4:5c dst_mac 02:7c:30:0d:68:c8 vlan_id 2965 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11162 flower src_mac 02:13:d0:3b:4e:99 dst_mac 02:09:8d:71:8c:df action pass && tc filter add dev swp33 ingress protocol ip pref 11163 flower src_mac 02:df:02:cf:ba:a3 dst_mac 02:ef:ea:a6:c7:0d src_ip 104.14.76.208 dst_ip 115.1.172.92 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11164 flower src_mac 02:2d:f9:27:e6:eb dst_mac 02:fc:b0:2c:e3:56 vlan_id 2406 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11165 flower src_mac 02:b7:6d:90:08:9d dst_mac 02:c4:b1:28:73:e0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:a5:6c:03:3e:21 dst_mac 02:15:b3:fb:49:c7 vlan_id 3375 vlan_ethtype ipv4 src_ip 66.217.50.143 dst_ip 113.182.68.201 ip_proto tcp src_port 28143 dst_port 30263 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11167 flower src_mac 02:d0:a1:50:4a:1f dst_mac 02:53:b3:0c:ce:ae vlan_id 3921 vlan_ethtype ip src_ip 73.165.141.155 dst_ip 105.47.92.95 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11168 flower src_mac 02:d3:d3:87:bf:f4 dst_mac 02:47:f3:86:11:83 src_ip 58.160.84.108 dst_ip 93.36.19.122 ip_proto tcp src_port 2770 dst_port 6667 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11169 flower src_mac 02:38:e6:2a:a3:95 dst_mac 02:ab:2f:49:b7:d4 vlan_id 3030 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:5f:e0:08:dd:5a dst_mac 02:15:e1:df:06:cf vlan_id 3399 vlan_ethtype 0x0800 src_ip 84.85.75.175 dst_ip 72.146.166.176 action trap && tc filter add dev swp33 ingress protocol ip pref 11171 flower src_mac 02:12:7d:b7:00:b1 dst_mac 02:f4:0a:b8:b4:d4 src_ip 57.153.19.213 dst_ip 37.95.170.1 ip_proto icmp code 95 type 15 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11172 flower src_mac 02:3c:12:9f:5a:f7 dst_mac 02:ee:27:a2:ee:33 vlan_id 3552 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11173 flower src_mac 02:aa:e1:8e:2d:bb dst_mac 02:cd:f4:1c:11:a2 vlan_id 3122 vlan_ethtype ipv4 src_ip 100.106.186.96 dst_ip 97.242.185.168 ip_proto tcp src_port 59812 dst_port 55583 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11174 flower src_mac 02:42:53:12:b0:22 dst_mac 02:13:4f:e9:59:78 vlan_id 3831 vlan_ethtype ipv4 src_ip 65.175.145.78 dst_ip 19.70.81.12 ip_proto tcp src_port 41896 dst_port 40774 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11175 flower src_mac 02:50:1e:76:46:46 dst_mac 02:8d:91:84:7e:df vlan_id 3913 vlan_ethtype ip src_ip 113.160.158.137 dst_ip 27.233.201.34 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11176 flower src_mac 02:2b:5c:a3:9b:e3 dst_mac 02:82:4e:ab:a8:45 src_ip 122.31.36.232 dst_ip 27.88.165.79 ip_proto udp src_port 56494 dst_port 52001 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11177 flower src_mac 02:ef:2d:a4:54:f5 dst_mac 02:26:f4:1b:37:76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11178 flower src_mac 02:d0:73:98:ef:c7 dst_mac 02:4c:fb:50:be:95 vlan_id 631 vlan_ethtype ip src_ip 79.171.154.172 dst_ip 55.224.57.15 ip_proto tcp src_port 3992 dst_port 9386 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11179 flower src_mac 02:98:1a:c7:fc:e6 dst_mac 02:28:ca:96:41:93 vlan_id 3535 vlan_ethtype 0x0800 src_ip 34.8.160.194 dst_ip 87.208.176.118 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11180 flower src_mac 02:2a:96:a1:4e:55 dst_mac 02:15:5b:d3:30:c4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11181 flower src_mac 02:7b:7f:c1:13:81 dst_mac 02:23:ad:a4:76:4a vlan_id 2005 vlan_ethtype 0x0800 src_ip 116.45.39.245 dst_ip 79.27.119.159 action trap && tc filter add dev swp33 ingress protocol ip pref 11182 flower src_mac 02:dd:d0:0e:15:c4 dst_mac 02:98:5c:75:23:91 src_ip 52.61.25.203 dst_ip 25.113.254.160 ip_proto tcp src_port 23597 dst_port 201 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11183 flower src_mac 02:6d:ad:eb:53:89 dst_mac 02:66:db:2b:99:3b action drop && tc filter add dev swp33 ingress protocol ip pref 11184 flower src_mac 02:94:72:9c:e7:09 dst_mac 02:b8:34:70:66:10 src_ip 72.207.43.10 dst_ip 23.93.148.40 ip_proto icmp code 44 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11185 flower src_mac 02:70:fd:39:07:8a dst_mac 02:af:07:98:6a:c9 vlan_id 2669 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11186 flower src_mac 02:f9:b5:05:f5:c3 dst_mac 02:f0:ed:d2:32:27 vlan_id 2690 vlan_ethtype 0x0800 src_ip 19.181.73.40 dst_ip 102.3.196.145 action drop && tc filter add dev swp33 ingress protocol ip pref 11187 flower src_mac 02:e7:06:92:9b:3b dst_mac 02:11:3c:b8:b9:96 src_ip 46.229.211.25 dst_ip 119.176.74.114 action pass && tc filter add dev swp33 ingress protocol ip pref 11188 flower src_mac 02:19:2f:97:3a:1d dst_mac 02:87:e3:77:b7:03 src_ip 124.12.41.162 dst_ip 79.23.87.201 ip_proto icmp code 125 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11189 flower src_mac 02:b1:99:15:77:df dst_mac 02:5f:e4:93:8e:52 vlan_id 1328 vlan_ethtype ipv4 src_ip 76.46.6.73 dst_ip 67.14.237.18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11190 flower src_mac 02:30:96:9c:e5:04 dst_mac 02:65:a7:fa:dd:38 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11191 flower src_mac 02:26:80:ba:38:f9 dst_mac 02:1b:e6:9c:ac:fc vlan_id 3976 vlan_ethtype ip src_ip 52.133.109.47 dst_ip 114.21.21.30 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11192 flower src_mac 02:ea:b2:b6:25:d2 dst_mac 02:73:d5:c0:80:ff vlan_id 1125 vlan_ethtype ip src_ip 45.127.134.70 dst_ip 49.131.30.151 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11193 flower src_mac 02:51:11:87:dc:5c dst_mac 02:76:b6:73:d3:e9 vlan_id 553 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11194 flower src_mac 02:58:f5:7a:26:5b dst_mac 02:3f:90:2d:93:4c vlan_id 2427 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11195 flower src_mac 02:a2:72:70:86:ff dst_mac 02:21:e9:1c:bd:69 vlan_id 219 vlan_ethtype ipv4 src_ip 88.142.211.130 dst_ip 118.22.151.197 ip_proto udp src_port 37715 dst_port 61811 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11196 flower src_mac 02:34:97:3b:7a:97 dst_mac 02:81:a1:9c:91:5e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11197 flower src_mac 02:92:76:2e:0f:bd dst_mac 02:cd:6a:c2:9c:60 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11198 flower src_mac 02:b3:d3:37:05:d2 dst_mac 02:f5:71:b8:d8:45 vlan_id 2150 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11199 flower src_mac 02:52:aa:6d:96:af dst_mac 02:bc:84:1c:fd:69 action drop INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 11200 flower src_mac 02:ad:97:4c:42:cb dst_mac 02:67:2d:37:06:3a vlan_id 348 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11201 flower src_mac 02:ac:84:66:d9:55 dst_mac 02:fa:c6:7f:83:7a vlan_id 1769 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11202 flower src_mac 02:2b:20:2f:cb:11 dst_mac 02:f9:f6:5d:21:65 src_ip 79.166.80.223 dst_ip 26.23.48.102 ip_proto icmp code 243 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 11203 flower src_mac 02:7c:8d:7d:bc:26 dst_mac 02:ee:75:99:4e:54 src_ip 31.156.72.224 dst_ip 23.201.238.212 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11204 flower src_mac 02:be:a9:e4:a5:20 dst_mac 02:bd:f3:8d:fa:53 vlan_id 1993 vlan_ethtype 0x0800 src_ip 122.23.47.135 dst_ip 43.21.87.50 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11205 flower src_mac 02:24:3a:aa:24:11 dst_mac 02:14:b0:7c:f4:91 src_ip 60.12.78.174 dst_ip 95.44.235.86 ip_proto udp src_port 16560 dst_port 3725 action trap && tc filter add dev swp33 ingress protocol ip pref 11206 flower src_mac 02:20:90:aa:1d:c0 dst_mac 02:91:03:20:09:83 src_ip 105.219.58.183 dst_ip 113.93.188.129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11207 flower src_mac 02:b7:7e:01:24:c3 dst_mac 02:03:ee:c3:89:2a vlan_id 691 vlan_ethtype ip src_ip 60.110.57.242 dst_ip 68.57.122.197 ip_proto tcp src_port 50620 dst_port 46098 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11208 flower src_mac 02:19:74:58:d2:35 dst_mac 02:af:60:63:14:52 vlan_id 261 vlan_ethtype ip src_ip 88.15.53.64 dst_ip 33.81.59.172 ip_proto udp src_port 14504 dst_port 51065 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11209 flower src_mac 02:75:ad:ae:48:a2 dst_mac 02:9d:99:fe:ca:98 vlan_id 2480 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11210 flower src_mac 02:48:1f:88:5a:dd dst_mac 02:fd:9e:bb:5c:04 vlan_id 1732 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11211 flower src_mac 02:d5:a3:90:4e:aa dst_mac 02:2e:9a:11:19:1d vlan_id 2701 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11212 flower src_mac 02:7c:0c:2f:8a:ea dst_mac 02:6e:79:ac:af:c1 src_ip 85.120.156.235 dst_ip 91.42.61.90 ip_proto udp src_port 53419 dst_port 12541 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11213 flower src_mac 02:20:7a:c4:09:18 dst_mac 02:c9:2e:48:6d:46 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11214 flower src_mac 02:c2:41:bb:df:86 dst_mac 02:37:f7:a5:5c:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:e7:0f:14:27:d3 dst_mac 02:03:a5:da:e3:18 vlan_id 359 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11216 flower src_mac 02:e6:4a:0f:e2:50 dst_mac 02:8e:60:79:b1:3f vlan_id 3637 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11217 flower src_mac 02:a0:28:df:a5:f5 dst_mac 02:8b:9a:ed:b1:a4 src_ip 108.168.218.199 dst_ip 24.167.127.11 ip_proto tcp src_port 61825 dst_port 17712 action drop && tc filter add dev swp33 ingress protocol ip pref 11218 flower src_mac 02:d2:4e:c0:86:6d dst_mac 02:42:04:07:38:e0 src_ip 14.95.196.58 dst_ip 53.75.99.74 ip_proto tcp src_port 8036 dst_port 35424 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11219 flower src_mac 02:2d:af:1a:53:ab dst_mac 02:6e:43:f3:9a:82 src_ip 57.39.75.201 dst_ip 85.104.190.25 ip_proto tcp src_port 45215 dst_port 8712 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11220 flower src_mac 02:10:3d:14:66:e9 dst_mac 02:92:e3:47:b3:42 vlan_id 1355 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11221 flower src_mac 02:2e:82:76:00:5b dst_mac 02:f8:71:e1:c7:d6 vlan_id 2717 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11222 flower src_mac 02:ca:46:de:83:13 dst_mac 02:5c:98:bd:53:7a vlan_id 1991 vlan_ethtype ip src_ip 13.244.135.11 dst_ip 96.38.105.212 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11223 flower src_mac 02:74:3d:62:82:94 dst_mac 02:90:d0:13:1d:4e action pass && tc filter add dev swp33 ingress protocol ip pref 11224 flower src_mac 02:0b:1a:98:0b:4e dst_mac 02:fd:de:c5:70:27 src_ip 80.60.210.187 dst_ip 102.253.90.80 ip_proto udp src_port 43730 dst_port 12535 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:1b:e5:ee:e3:f9 dst_mac 02:47:41:a0:a7:d8 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11226 flower src_mac 02:7e:30:9f:ce:46 dst_mac 02:d5:04:59:36:aa src_ip 26.248.92.160 dst_ip 94.112.250.182 ip_proto tcp src_port 58449 dst_port 31315 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11227 flower src_mac 02:bb:e8:0b:79:5c dst_mac 02:60:f7:59:7b:32 src_ip 120.164.73.226 dst_ip 14.142.230.128 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11228 flower src_mac 02:d8:a6:ab:83:23 dst_mac 02:67:ac:24:74:b2 src_ip 83.52.190.194 dst_ip 60.3.15.155 ip_proto icmp code 114 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11229 flower src_mac 02:47:50:c1:76:1a dst_mac 02:dd:4a:c5:96:7a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11230 flower src_mac 02:6d:a9:6a:62:1d dst_mac 02:72:58:37:02:58 vlan_id 18 vlan_ethtype 0x0800 src_ip 122.10.107.34 dst_ip 48.90.104.36 ip_proto tcp src_port 2701 dst_port 63093 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11231 flower src_mac 02:f9:88:e6:fb:e1 dst_mac 02:ef:bc:94:60:cc action trap && tc filter add dev swp33 ingress protocol ip pref 11232 flower src_mac 02:04:f6:cd:27:d8 dst_mac 02:a3:6d:59:83:5e src_ip 80.39.203.68 dst_ip 72.193.159.107 ip_proto tcp src_port 62520 dst_port 11590 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11233 flower src_mac 02:b3:70:45:17:7c dst_mac 02:9b:75:f3:6b:36 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11234 flower src_mac 02:20:64:27:71:3e dst_mac 02:df:c2:90:0e:15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11235 flower src_mac 02:bf:b3:d5:f4:13 dst_mac 02:4c:5c:ef:a6:9e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11236 flower src_mac 02:a8:8d:a5:73:f7 dst_mac 02:ac:34:f8:a9:12 vlan_id 3003 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11237 flower src_mac 02:87:88:a0:8e:c4 dst_mac 02:ab:5f:25:8f:7d vlan_id 3762 vlan_ethtype ip src_ip 123.238.18.168 dst_ip 69.133.56.149 ip_proto udp src_port 46304 dst_port 64062 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11238 flower src_mac 02:c9:2b:15:45:1f dst_mac 02:17:74:fd:64:0a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11239 flower src_mac 02:a5:95:6d:c6:d9 dst_mac 02:b4:f1:d2:a2:00 src_ip 44.9.220.109 dst_ip 69.207.22.79 ip_proto tcp src_port 21126 dst_port 15401 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11240 flower src_mac 02:17:c7:df:6e:63 dst_mac 02:3a:8b:2c:a6:72 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11241 flower src_mac 02:82:47:28:2f:38 dst_mac 02:ac:b3:6f:0c:ba vlan_id 3252 vlan_ethtype 0x0800 src_ip 66.184.127.138 dst_ip 84.147.231.47 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11242 flower src_mac 02:37:b0:45:ec:04 dst_mac 02:11:d4:be:8a:b9 src_ip 30.88.201.218 dst_ip 70.6.175.166 ip_proto tcp src_port 28966 dst_port 31299 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11243 flower src_mac 02:c1:55:85:10:b8 dst_mac 02:89:4d:f4:e0:08 vlan_id 2664 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11244 flower src_mac 02:8b:0f:eb:30:56 dst_mac 02:bf:a7:8e:1e:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11245 flower src_mac 02:c1:5e:95:e4:9d dst_mac 02:b0:81:fc:07:70 vlan_id 1028 vlan_ethtype ipv4 src_ip 96.122.239.163 dst_ip 15.96.71.35 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11246 flower src_mac 02:41:64:cb:ae:44 dst_mac 02:44:52:d1:dd:09 src_ip 14.174.49.198 dst_ip 65.134.36.152 ip_proto tcp src_port 2514 dst_port 15079 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11247 flower src_mac 02:92:e7:4f:10:1a dst_mac 02:b5:5f:42:5e:24 vlan_id 1877 vlan_ethtype 0x0800 src_ip 80.152.65.45 dst_ip 108.13.174.46 ip_proto udp src_port 65091 dst_port 4654 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11248 flower src_mac 02:ec:24:10:68:2c dst_mac 02:ee:75:c3:a9:f9 src_ip 112.41.162.66 dst_ip 101.170.9.17 ip_proto icmp code 138 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:3e:cc:c3:25:45 dst_mac 02:e7:1a:9a:b1:b5 vlan_id 625 vlan_ethtype ip src_ip 96.144.252.101 dst_ip 107.138.120.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11250 flower src_mac 02:64:4f:2a:86:1d dst_mac 02:01:6f:00:30:2b vlan_id 1678 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11251 flower src_mac 02:21:d6:be:6c:55 dst_mac 02:43:f4:38:82:c2 vlan_id 3160 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11252 flower src_mac 02:e0:15:79:7b:c5 dst_mac 02:65:5d:ee:03:e5 vlan_id 1198 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:fd:ba:fc:00:55 dst_mac 02:01:bc:7d:86:d8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:3c:3c:95:e5:0c dst_mac 02:75:0e:42:87:bc action pass && tc filter add dev swp33 ingress protocol ip pref 11255 flower src_mac 02:29:bd:2a:20:e1 dst_mac 02:fc:44:d8:dd:5a src_ip 17.168.17.184 dst_ip 126.203.203.207 ip_proto tcp src_port 14843 dst_port 18202 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11256 flower src_mac 02:67:de:eb:61:77 dst_mac 02:3a:dd:b7:e0:96 vlan_id 682 vlan_ethtype ipv4 src_ip 70.108.123.150 dst_ip 36.226.175.145 ip_proto udp src_port 52761 dst_port 29548 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11257 flower src_mac 02:f2:35:39:99:b6 dst_mac 02:99:ef:20:e2:f7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11258 flower src_mac 02:11:cd:75:1c:2f dst_mac 02:27:88:d0:15:55 vlan_id 450 vlan_ethtype 0x0800 src_ip 48.119.113.64 dst_ip 15.73.205.198 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11259 flower src_mac 02:ef:98:44:63:2b dst_mac 02:8d:5f:45:05:d2 vlan_id 544 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11260 flower src_mac 02:93:a2:22:0d:53 dst_mac 02:f0:76:8c:5b:c5 vlan_id 1794 vlan_ethtype 0x0800 src_ip 46.196.233.152 dst_ip 94.200.149.81 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11261 flower src_mac 02:e8:bf:88:d3:6c dst_mac 02:a2:67:a9:ce:e1 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11262 flower src_mac 02:7e:e0:e3:39:4c dst_mac 02:35:bc:97:da:b2 src_ip 116.234.7.195 dst_ip 98.142.165.35 ip_proto tcp src_port 18797 dst_port 53356 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11263 flower src_mac 02:c2:92:07:c4:a7 dst_mac 02:98:b7:34:5e:a5 vlan_id 1894 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11264 flower src_mac 02:c2:33:89:51:d4 dst_mac 02:80:47:64:94:b2 src_ip 84.160.216.48 dst_ip 61.0.222.166 ip_proto icmp code 127 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 11265 flower src_mac 02:ba:7e:4d:6b:0f dst_mac 02:03:19:67:a5:a8 src_ip 79.145.227.16 dst_ip 119.38.18.236 ip_proto icmp code 56 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11266 flower src_mac 02:5b:2a:85:65:47 dst_mac 02:24:36:7e:72:f8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11267 flower src_mac 02:2e:cc:03:24:9d dst_mac 02:3f:11:74:17:d0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11268 flower src_mac 02:a2:77:30:a1:6a dst_mac 02:8c:29:b0:3e:02 vlan_id 2431 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11269 flower src_mac 02:ea:f7:d4:5a:18 dst_mac 02:0f:65:cd:c7:ae vlan_id 979 vlan_ethtype ip src_ip 105.23.142.220 dst_ip 61.42.185.231 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11270 flower src_mac 02:5d:c9:79:f3:e7 dst_mac 02:4b:ee:1b:3c:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11271 flower src_mac 02:5c:a3:6b:bf:7d dst_mac 02:ab:f3:f1:95:40 vlan_id 1088 vlan_ethtype ip src_ip 100.172.77.216 dst_ip 32.217.38.116 ip_proto udp src_port 50253 dst_port 29106 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11272 flower src_mac 02:6b:aa:28:18:9c dst_mac 02:a5:52:10:7a:ec vlan_id 1133 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11273 flower src_mac 02:91:99:8c:9c:09 dst_mac 02:4b:89:42:c7:52 vlan_id 1723 vlan_ethtype ip src_ip 53.21.53.134 dst_ip 12.23.82.3 ip_proto udp src_port 20448 dst_port 4956 action trap && tc filter add dev swp33 ingress protocol ip pref 11274 flower src_mac 02:88:cc:3a:71:50 dst_mac 02:c9:78:1b:eb:1b src_ip 37.25.183.112 dst_ip 95.123.40.233 ip_proto udp src_port 37486 dst_port 61491 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11275 flower src_mac 02:31:3c:ae:8e:e2 dst_mac 02:37:80:52:5a:8b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11276 flower src_mac 02:54:06:3d:6c:7d dst_mac 02:11:9e:fd:54:63 vlan_id 3449 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11277 flower src_mac 02:fc:95:7c:0e:2f dst_mac 02:9d:ee:87:89:55 vlan_id 3997 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11278 flower src_mac 02:14:5c:f2:c4:a8 dst_mac 02:17:e5:51:00:af vlan_id 956 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11279 flower src_mac 02:13:dd:35:0e:50 dst_mac 02:3b:19:0b:9b:ce action drop && tc filter add dev swp33 ingress protocol ip pref 11280 flower src_mac 02:d1:3f:a8:63:80 dst_mac 02:02:c1:32:00:fb src_ip 124.28.151.136 dst_ip 113.236.202.190 ip_proto icmp code 217 type 0 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11281 flower src_mac 02:c2:6e:70:19:f7 dst_mac 02:17:e3:5d:1c:f2 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11282 flower src_mac 02:0b:45:44:11:43 dst_mac 02:01:c7:e9:3b:57 action drop && tc filter add dev swp33 ingress protocol ip pref 11283 flower src_mac 02:60:e5:94:96:fd dst_mac 02:1d:f3:08:5e:1b src_ip 34.17.196.225 dst_ip 46.243.210.110 ip_proto tcp src_port 34907 dst_port 61166 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11284 flower src_mac 02:2a:46:d3:28:41 dst_mac 02:d1:ca:57:db:45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11285 flower src_mac 02:1d:46:73:7a:e2 dst_mac 02:31:87:ce:6c:e4 vlan_id 1205 vlan_ethtype ipv4 src_ip 15.73.145.31 dst_ip 62.90.22.234 action pass && tc filter add dev swp33 ingress protocol ip pref 11286 flower src_mac 02:14:2c:3a:b1:d5 dst_mac 02:bb:e4:90:2e:94 src_ip 110.18.176.143 dst_ip 115.215.250.115 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11287 flower src_mac 02:d6:8f:79:a1:00 dst_mac 02:4b:9c:b5:e2:2b vlan_id 2221 vlan_ethtype ip src_ip 47.226.153.220 dst_ip 40.112.110.201 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11288 flower src_mac 02:86:2a:8b:38:f6 dst_mac 02:77:cc:e8:42:b2 vlan_id 2191 vlan_ethtype 0x0800 src_ip 70.173.128.16 dst_ip 74.6.203.137 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:16:b5:fe:71:71 dst_mac 02:a7:cd:3b:c0:e3 vlan_id 772 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11290 flower src_mac 02:00:19:a1:0d:28 dst_mac 02:67:f4:e2:30:94 vlan_id 3090 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11291 flower src_mac 02:b5:e0:ab:58:cb dst_mac 02:99:22:ea:3e:12 src_ip 24.214.240.50 dst_ip 65.108.30.245 ip_proto tcp src_port 50791 dst_port 40279 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11292 flower src_mac 02:50:1b:06:6f:34 dst_mac 02:3c:00:89:fd:b5 vlan_id 3788 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11293 flower src_mac 02:42:ab:eb:a4:3b dst_mac 02:30:1b:6e:4b:f0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11294 flower src_mac 02:8c:a5:aa:04:7f dst_mac 02:9e:1e:b1:cf:64 action pass && tc filter add dev swp33 ingress protocol ip pref 11295 flower src_mac 02:1f:bd:50:30:9a dst_mac 02:9e:cb:f7:59:25 src_ip 77.136.101.38 dst_ip 46.13.78.41 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11296 flower src_mac 02:f7:c6:2b:12:9d dst_mac 02:f8:9b:92:9a:03 vlan_id 1909 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11297 flower src_mac 02:2b:ee:8d:65:a4 dst_mac 02:16:36:17:f5:20 src_ip 55.77.238.221 dst_ip 78.21.53.92 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:83:b5:cc:75:30 dst_mac 02:9b:1a:1d:9f:98 vlan_id 2268 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11299 flower src_mac 02:fd:6f:6d:09:90 dst_mac 02:26:77:ad:fd:1f src_ip 108.122.73.150 dst_ip 121.173.10.194 ip_proto tcp src_port 46207 dst_port 7097 action pass && tc filter add dev swp33 ingress protocol ip pref 11300 flower src_mac 02:80:e7:f6:3a:c4 dst_mac 02:fb:2e:10:b6:53 src_ip 29.165.184.94 dst_ip 91.238.19.250 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11301 flower src_mac 02:8a:8a:d4:c5:e1 dst_mac 02:f8:66:69:7d:64 vlan_id 1332 vlan_ethtype 0x0800 src_ip 71.246.217.126 dst_ip 97.162.129.84 ip_proto tcp src_port 19673 dst_port 24338 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11302 flower src_mac 02:3d:9a:bd:bf:f2 dst_mac 02:e8:36:ca:d0:0e src_ip 28.210.199.227 dst_ip 35.94.14.46 ip_proto udp src_port 4529 dst_port 40219 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11303 flower src_mac 02:bd:69:02:a2:e3 dst_mac 02:ac:31:40:f8:16 src_ip 17.181.186.204 dst_ip 71.169.194.209 ip_proto udp src_port 48903 dst_port 49666 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11304 flower src_mac 02:59:ee:6f:18:d8 dst_mac 02:4f:4f:31:cb:aa src_ip 24.133.211.193 dst_ip 103.184.84.211 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11305 flower src_mac 02:91:b9:02:d9:41 dst_mac 02:c7:6a:8a:75:e3 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11306 flower src_mac 02:c6:08:ce:7c:35 dst_mac 02:e8:77:d6:8e:bb src_ip 107.151.51.19 dst_ip 14.181.86.55 ip_proto udp src_port 7552 dst_port 25102 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11307 flower src_mac 02:52:bd:55:d1:d8 dst_mac 02:37:ec:c1:83:72 vlan_id 3477 vlan_ethtype 0x0800 src_ip 38.168.193.221 dst_ip 43.158.105.158 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:b5:6f:81:89:c9 dst_mac 02:9e:ba:d7:4d:25 vlan_id 1843 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11309 flower src_mac 02:53:41:c4:32:dd dst_mac 02:11:10:2f:df:3c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:10:5e:7a:4a:f5 dst_mac 02:cf:f3:6f:e0:6f vlan_id 1709 vlan_ethtype ipv4 src_ip 79.247.170.165 dst_ip 66.168.18.9 ip_proto udp src_port 45837 dst_port 38091 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11311 flower src_mac 02:c7:64:ca:a9:5c dst_mac 02:65:41:c5:47:00 vlan_id 1929 vlan_ethtype 0x0800 src_ip 97.133.161.241 dst_ip 58.92.98.123 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11312 flower src_mac 02:52:0f:0a:45:cc dst_mac 02:e7:d7:57:62:a9 vlan_id 1472 vlan_ethtype ipv4 src_ip 80.123.143.21 dst_ip 45.125.234.39 ip_proto tcp src_port 10942 dst_port 29017 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11313 flower src_mac 02:65:e3:47:57:19 dst_mac 02:56:0d:42:c5:27 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11314 flower src_mac 02:b0:00:75:f4:8b dst_mac 02:ae:d5:c3:e4:7c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:d9:da:d7:86:e7 dst_mac 02:b7:e7:7e:9c:f1 vlan_id 1918 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11316 flower src_mac 02:ba:f7:fc:bc:35 dst_mac 02:d9:7d:82:7d:42 vlan_id 2476 vlan_ethtype 0x0800 src_ip 112.22.196.152 dst_ip 82.109.112.168 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11317 flower src_mac 02:4f:6e:ac:51:8c dst_mac 02:48:7a:c0:ea:f8 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11318 flower src_mac 02:68:75:e0:95:64 dst_mac 02:51:a2:6b:40:28 action drop && tc filter add dev swp33 ingress protocol ip pref 11319 flower src_mac 02:5c:65:11:d9:ff dst_mac 02:05:59:52:79:0b src_ip 37.132.175.80 dst_ip 83.237.9.136 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11320 flower src_mac 02:e2:d4:6c:98:38 dst_mac 02:ce:f2:21:32:ba action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:fc:21:ed:c5:5e dst_mac 02:a1:a3:7a:a1:46 vlan_id 2736 vlan_ethtype ipv4 src_ip 71.220.216.9 dst_ip 51.150.239.58 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11322 flower src_mac 02:8d:22:f7:9c:39 dst_mac 02:78:8c:1c:68:45 vlan_id 2975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:cf:db:fb:6f:c2 dst_mac 02:45:e6:a8:d1:d0 vlan_id 532 vlan_ethtype ipv4 src_ip 88.55.13.46 dst_ip 25.39.55.53 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11324 flower src_mac 02:f8:68:ac:98:3c dst_mac 02:86:a9:68:9b:10 vlan_id 3816 vlan_ethtype ipv4 src_ip 103.198.87.243 dst_ip 102.1.239.243 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11325 flower src_mac 02:18:21:b3:2d:1f dst_mac 02:72:9f:e8:4b:45 src_ip 106.181.208.61 dst_ip 105.209.73.221 ip_proto icmp code 197 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11326 flower src_mac 02:22:b7:fe:44:5a dst_mac 02:af:bd:ae:af:b3 vlan_id 2047 vlan_ethtype ip src_ip 119.87.159.157 dst_ip 52.160.142.146 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11327 flower src_mac 02:8b:46:cd:f5:a2 dst_mac 02:92:46:b0:20:ce action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11328 flower src_mac 02:77:9c:86:3b:e4 dst_mac 02:ce:f5:40:b5:51 src_ip 65.20.42.103 dst_ip 79.118.174.199 ip_proto tcp src_port 959 dst_port 12180 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11329 flower src_mac 02:25:c7:1a:3c:6e dst_mac 02:96:e4:d9:85:77 vlan_id 1841 vlan_ethtype ipv4 src_ip 42.93.179.32 dst_ip 99.252.200.230 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11330 flower src_mac 02:c7:a8:f5:5c:84 dst_mac 02:0a:3e:26:57:5d vlan_id 2557 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11331 flower src_mac 02:b7:4e:d9:f8:59 dst_mac 02:bb:7e:8e:22:1b vlan_id 3399 vlan_ethtype 0x0800 src_ip 125.108.51.77 dst_ip 86.68.198.130 ip_proto udp src_port 32223 dst_port 36231 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:c3:9e:da:8e:68 dst_mac 02:d6:b9:9b:d8:d8 vlan_id 3194 vlan_ethtype 0x0800 src_ip 74.210.36.49 dst_ip 75.176.170.127 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11333 flower src_mac 02:b8:1d:de:33:0a dst_mac 02:83:9f:3c:eb:fd vlan_id 2931 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11334 flower src_mac 02:8f:8a:0c:20:a7 dst_mac 02:e8:68:59:34:ab vlan_id 1223 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11335 flower src_mac 02:0b:41:53:c8:47 dst_mac 02:e1:7b:9d:0e:6b src_ip 115.91.135.225 dst_ip 76.254.247.132 ip_proto tcp src_port 16882 dst_port 27940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:8d:cd:df:c0:0b dst_mac 02:dc:aa:f3:4d:71 vlan_id 2745 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11337 flower src_mac 02:7a:96:21:4a:e8 dst_mac 02:16:ab:ba:c7:6f src_ip 98.17.121.89 dst_ip 123.250.7.178 ip_proto udp src_port 27990 dst_port 44796 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11338 flower src_mac 02:d4:8b:80:80:d5 dst_mac 02:04:8a:30:5f:2c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11339 flower src_mac 02:7f:06:f7:81:fa dst_mac 02:ce:2c:ef:64:8a vlan_id 3374 vlan_ethtype ipv4 src_ip 61.46.79.98 dst_ip 94.66.164.182 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11340 flower src_mac 02:97:03:3c:69:b9 dst_mac 02:fc:16:dc:51:b6 src_ip 125.69.243.22 dst_ip 105.106.184.121 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11341 flower src_mac 02:45:5f:c9:b7:2a dst_mac 02:bb:f9:19:4c:b2 vlan_id 39 vlan_ethtype ip src_ip 101.101.180.84 dst_ip 38.199.90.206 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11342 flower src_mac 02:bc:6a:45:47:4d dst_mac 02:00:2b:fd:55:6b src_ip 47.4.193.42 dst_ip 63.47.65.28 action trap && tc filter add dev swp33 ingress protocol ip pref 11343 flower src_mac 02:c8:0c:44:e6:37 dst_mac 02:24:f1:c7:a3:97 src_ip 63.52.126.247 dst_ip 42.195.210.249 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11344 flower src_mac 02:e6:cd:1f:7f:cb dst_mac 02:f3:c2:61:f6:74 src_ip 119.227.44.98 dst_ip 20.32.67.97 ip_proto tcp src_port 16185 dst_port 10823 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11345 flower src_mac 02:cb:f8:ec:48:89 dst_mac 02:33:45:86:9d:c3 vlan_id 3144 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11346 flower src_mac 02:0f:bd:19:c9:29 dst_mac 02:d8:24:a1:3a:89 vlan_id 941 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11347 flower src_mac 02:8d:bd:c8:d8:f6 dst_mac 02:db:ce:04:56:a3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:89:a9:71:5d:3f dst_mac 02:0b:8d:92:64:98 vlan_id 1941 vlan_ethtype ipv4 src_ip 56.124.182.204 dst_ip 34.76.31.101 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11349 flower src_mac 02:90:5f:9f:70:be dst_mac 02:97:2c:ee:09:ba vlan_id 30 vlan_ethtype ip src_ip 31.154.24.153 dst_ip 80.252.244.16 ip_proto tcp src_port 41819 dst_port 8154 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11350 flower src_mac 02:5f:f5:b1:61:27 dst_mac 02:8d:5d:76:dd:2a vlan_id 2361 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11351 flower src_mac 02:de:b4:6e:bd:bd dst_mac 02:57:ac:f1:10:a3 src_ip 75.243.149.168 dst_ip 119.210.112.174 ip_proto udp src_port 60390 dst_port 11936 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:0f:98:3e:ce:23 dst_mac 02:03:50:a3:b0:f9 vlan_id 3358 vlan_ethtype ip src_ip 92.17.226.43 dst_ip 70.153.116.216 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:b0:1d:66:6f:f1 dst_mac 02:86:7a:1d:48:c1 vlan_id 1438 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:78:c1:aa:f9:b1 dst_mac 02:db:80:09:76:20 vlan_id 1059 vlan_ethtype ip src_ip 88.126.19.186 dst_ip 24.143.232.234 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11355 flower src_mac 02:a2:22:fd:27:78 dst_mac 02:e2:65:d0:4b:e2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:5b:f9:52:e0:a1 dst_mac 02:08:f9:d1:86:54 vlan_id 2750 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:52:ac:5f:ef:e9 dst_mac 02:0f:e8:59:f8:43 vlan_id 3852 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11358 flower src_mac 02:89:81:d7:fe:34 dst_mac 02:75:20:63:e0:64 vlan_id 1658 vlan_ethtype ipv4 src_ip 104.22.40.201 dst_ip 44.15.215.214 ip_proto udp src_port 34301 dst_port 24073 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:79:f5:f2:ee:d8 dst_mac 02:50:28:11:c7:4d vlan_id 1252 vlan_ethtype ip src_ip 84.100.64.207 dst_ip 20.85.142.27 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11360 flower src_mac 02:e7:02:ad:9c:19 dst_mac 02:45:f2:33:cb:9e vlan_id 3735 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11361 flower src_mac 02:6c:9d:5c:83:fe dst_mac 02:eb:4c:28:48:bc vlan_id 2295 vlan_ethtype ip src_ip 124.61.54.21 dst_ip 42.27.178.223 ip_proto tcp src_port 51194 dst_port 43015 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11362 flower src_mac 02:31:65:83:4f:21 dst_mac 02:eb:3a:12:d8:03 src_ip 58.85.133.122 dst_ip 73.1.255.76 ip_proto icmp code 22 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11363 flower src_mac 02:39:16:00:8c:40 dst_mac 02:ae:30:35:72:7a vlan_id 2783 vlan_ethtype ip src_ip 106.238.68.9 dst_ip 78.133.118.147 action drop && tc filter add dev swp33 ingress protocol ip pref 11364 flower src_mac 02:01:b0:99:4a:b4 dst_mac 02:3e:10:56:85:52 src_ip 52.108.42.238 dst_ip 59.4.246.100 ip_proto tcp src_port 62426 dst_port 5714 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11365 flower src_mac 02:3a:c0:15:a7:28 dst_mac 02:3f:1a:2b:0d:b9 vlan_id 2738 vlan_ethtype ipv4 src_ip 44.96.178.185 dst_ip 115.21.161.217 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11366 flower src_mac 02:fa:b5:83:36:af dst_mac 02:fc:eb:75:b1:cf vlan_id 1804 vlan_ethtype 0x0800 src_ip 17.125.53.215 dst_ip 18.80.73.79 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11367 flower src_mac 02:4f:56:1a:04:cb dst_mac 02:72:a3:37:c7:0c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11368 flower src_mac 02:0c:e8:bd:a0:5b dst_mac 02:4d:e6:a0:c8:39 vlan_id 296 vlan_ethtype ip src_ip 23.37.85.155 dst_ip 22.191.16.55 ip_proto tcp src_port 19866 dst_port 8592 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:5b:91:70:ab:63 dst_mac 02:7b:4a:5d:9e:8d vlan_id 68 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:a1:ba:5a:4a:29 dst_mac 02:41:dd:af:fd:db vlan_id 2260 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11371 flower src_mac 02:4b:00:3f:18:2a dst_mac 02:e9:79:15:d6:e2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11372 flower src_mac 02:e2:7f:4d:e0:dc dst_mac 02:00:14:97:e3:d8 vlan_id 2650 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11373 flower src_mac 02:56:b8:98:d1:bd dst_mac 02:6c:f3:3d:b7:c5 src_ip 54.83.19.10 dst_ip 125.100.93.192 ip_proto tcp src_port 56539 dst_port 8212 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11374 flower src_mac 02:16:a3:ac:ad:69 dst_mac 02:d1:7b:77:3b:ab src_ip 77.11.201.26 dst_ip 39.242.53.44 ip_proto icmp code 126 type 14 action pass && tc filter add dev swp33 ingress protocol ip pref 11375 flower src_mac 02:c4:d9:8f:d2:a5 dst_mac 02:64:56:60:67:b8 src_ip 110.198.211.36 dst_ip 46.222.143.195 ip_proto tcp src_port 13678 dst_port 3602 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11376 flower src_mac 02:70:ff:e0:6a:9f dst_mac 02:06:34:91:2b:ac vlan_id 4005 vlan_ethtype 0x0800 src_ip 48.152.198.77 dst_ip 90.139.130.213 ip_proto tcp src_port 27489 dst_port 60463 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:f6:35:d4:4b:13 dst_mac 02:e8:e3:a8:2a:2c vlan_id 3368 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11378 flower src_mac 02:13:00:cc:67:65 dst_mac 02:60:64:f6:a7:95 src_ip 54.30.205.196 dst_ip 95.30.190.18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:d0:6d:5f:71:9b dst_mac 02:cb:d1:b6:6b:b6 vlan_id 2930 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11380 flower src_mac 02:80:3e:01:28:4f dst_mac 02:ae:69:4a:39:5a src_ip 28.98.34.82 dst_ip 22.153.241.123 ip_proto icmp code 0 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11381 flower src_mac 02:9f:fd:8f:bf:96 dst_mac 02:5e:3c:5e:7e:06 vlan_id 3068 vlan_ethtype ipv4 src_ip 26.165.191.153 dst_ip 97.67.21.136 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11382 flower src_mac 02:96:c9:68:a7:2c dst_mac 02:c9:c9:65:2e:e2 vlan_id 2382 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11383 flower src_mac 02:52:02:83:cf:09 dst_mac 02:c3:7c:76:44:e0 src_ip 39.98.232.18 dst_ip 70.189.188.8 ip_proto udp src_port 4949 dst_port 25417 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11384 flower src_mac 02:d6:b7:eb:07:3a dst_mac 02:a9:f3:b2:35:29 src_ip 102.153.78.230 dst_ip 85.35.20.234 ip_proto icmp code 164 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11385 flower src_mac 02:d7:f6:5b:16:e1 dst_mac 02:dc:2a:af:39:f3 vlan_id 2629 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11386 flower src_mac 02:d5:1a:a6:99:59 dst_mac 02:2c:e6:d5:a6:b3 src_ip 14.3.104.197 dst_ip 12.129.126.161 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11387 flower src_mac 02:18:0a:fd:c0:25 dst_mac 02:f0:4c:26:39:4b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11388 flower src_mac 02:2f:33:fd:7b:9e dst_mac 02:3b:8c:3e:45:23 vlan_id 2187 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11389 flower src_mac 02:b5:c2:40:bb:7d dst_mac 02:c5:35:94:45:8e src_ip 97.26.206.229 dst_ip 28.140.145.233 ip_proto icmp code 133 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11390 flower src_mac 02:71:2b:12:2e:1d dst_mac 02:29:f2:f3:74:63 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11391 flower src_mac 02:0c:1c:b1:64:0a dst_mac 02:66:e7:01:20:83 vlan_id 2118 vlan_ethtype 0x0800 src_ip 17.24.58.103 dst_ip 91.27.232.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11392 flower src_mac 02:4d:83:39:74:60 dst_mac 02:15:72:11:11:72 vlan_id 654 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11393 flower src_mac 02:11:69:e0:62:06 dst_mac 02:d3:c2:9e:a3:7f vlan_id 903 vlan_ethtype 0x0800 src_ip 45.49.110.132 dst_ip 112.52.216.145 ip_proto tcp src_port 29818 dst_port 27554 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:17:da:94:e2:20 dst_mac 02:33:fb:97:e8:b6 vlan_id 1025 vlan_ethtype ipv4 src_ip 47.179.197.201 dst_ip 106.225.91.156 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11395 flower src_mac 02:1f:7e:b2:e1:eb dst_mac 02:ef:78:aa:dc:d7 vlan_id 1111 vlan_ethtype 0x0800 src_ip 57.144.215.238 dst_ip 104.222.67.135 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11396 flower src_mac 02:44:d4:72:61:60 dst_mac 02:fb:78:41:84:4a vlan_id 2737 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11397 flower src_mac 02:45:74:f1:e0:50 dst_mac 02:8c:9e:b5:0d:3c vlan_id 2527 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11398 flower src_mac 02:0e:47:ba:40:23 dst_mac 02:09:b6:f7:24:a9 vlan_id 1886 vlan_ethtype ipv4 src_ip 36.226.70.249 dst_ip 110.106.78.217 ip_proto udp src_port 4022 dst_port 48471 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11399 flower src_mac 02:34:6e:ac:00:cd dst_mac 02:d2:fb:49:78:97 vlan_id 2530 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11400 flower src_mac 02:de:c0:b8:59:64 dst_mac 02:cf:e6:87:d9:b5 vlan_id 742 vlan_ethtype 0x0800 src_ip 120.253.124.194 dst_ip 106.156.32.138 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:ab:0a:83:47:9e dst_mac 02:82:55:6c:10:f8 vlan_id 3553 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:1b:9b:19:80:b7 dst_mac 02:46:1a:6b:3b:a3 vlan_id 856 vlan_ethtype ip src_ip 56.101.8.19 dst_ip 90.239.81.92 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11403 flower src_mac 02:17:3f:c7:62:4c dst_mac 02:22:74:18:94:65 src_ip 54.118.28.250 dst_ip 48.126.161.13 ip_proto udp src_port 40876 dst_port 45799 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11404 flower src_mac 02:d0:00:1e:f4:c1 dst_mac 02:0c:1b:0f:2b:9d vlan_id 50 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11405 flower src_mac 02:2c:34:88:7b:c9 dst_mac 02:95:65:e6:7e:77 vlan_id 2622 vlan_ethtype ip src_ip 41.151.88.41 dst_ip 79.65.98.134 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11406 flower src_mac 02:6d:c0:46:8e:cf dst_mac 02:41:88:0b:21:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11407 flower src_mac 02:ae:14:b5:93:2e dst_mac 02:df:09:00:5c:7d vlan_id 1641 vlan_ethtype ip src_ip 110.60.241.197 dst_ip 11.187.145.63 ip_proto tcp src_port 27677 dst_port 64746 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11408 flower src_mac 02:1d:ce:0c:f1:c3 dst_mac 02:dc:0a:c3:7c:6b vlan_id 1509 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11409 flower src_mac 02:9f:0a:98:e1:bd dst_mac 02:8a:bf:09:e0:5d src_ip 38.254.105.59 dst_ip 110.141.63.166 ip_proto udp src_port 42783 dst_port 47728 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:05:07:7d:eb:d1 dst_mac 02:4e:a5:81:a8:66 vlan_id 213 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11411 flower src_mac 02:3d:f5:1a:35:a1 dst_mac 02:87:8c:5d:ae:fd src_ip 22.130.195.203 dst_ip 71.49.146.132 action pass && tc filter add dev swp33 ingress protocol ip pref 11412 flower src_mac 02:58:39:59:9c:cf dst_mac 02:bd:ca:b7:8f:01 src_ip 39.9.156.40 dst_ip 35.71.84.58 ip_proto icmp code 125 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11413 flower src_mac 02:28:2b:59:9e:ea dst_mac 02:8e:97:82:db:f6 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11414 flower src_mac 02:49:43:c3:47:a0 dst_mac 02:40:14:e8:1a:b3 src_ip 29.237.1.192 dst_ip 92.201.88.218 ip_proto tcp src_port 58888 dst_port 60884 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11415 flower src_mac 02:5a:57:9a:41:3f dst_mac 02:9f:a7:47:f8:dd action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11416 flower src_mac 02:20:cf:26:e5:99 dst_mac 02:35:4f:81:ce:11 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11417 flower src_mac 02:d6:d8:67:13:a0 dst_mac 02:84:e8:81:45:80 src_ip 67.161.49.245 dst_ip 78.57.182.215 ip_proto icmp code 114 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11418 flower src_mac 02:f5:ac:98:be:7d dst_mac 02:23:df:d6:ec:a0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11419 flower src_mac 02:c5:ea:d7:f8:d0 dst_mac 02:83:42:5a:be:a5 vlan_id 2133 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11420 flower src_mac 02:48:3a:d6:64:f5 dst_mac 02:71:ad:44:73:de vlan_id 3953 vlan_ethtype ip src_ip 80.130.178.27 dst_ip 50.136.181.61 ip_proto tcp src_port 56756 dst_port 43909 action trap && tc filter add dev swp33 ingress protocol ip pref 11421 flower src_mac 02:df:14:81:3f:44 dst_mac 02:f3:1f:21:e3:99 src_ip 50.211.171.119 dst_ip 108.92.220.239 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11422 flower src_mac 02:f3:c9:54:80:70 dst_mac 02:71:23:bc:2a:d6 src_ip 22.138.137.130 dst_ip 126.74.113.67 ip_proto tcp src_port 10660 dst_port 52847 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11423 flower src_mac 02:ec:80:96:8b:80 dst_mac 02:d2:cb:f7:6e:b7 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11424 flower src_mac 02:49:67:c5:43:2f dst_mac 02:60:13:51:da:9b vlan_id 3766 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11425 flower src_mac 02:6e:bd:75:fd:07 dst_mac 02:f7:8c:12:eb:b6 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11426 flower src_mac 02:db:d1:88:f2:3c dst_mac 02:e1:9f:de:72:fa action pass && tc filter add dev swp33 ingress protocol ip pref 11427 flower src_mac 02:3c:58:96:3b:d1 dst_mac 02:f7:55:b4:5e:2f src_ip 42.161.97.21 dst_ip 122.213.138.172 ip_proto icmp code 236 type 5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11428 flower src_mac 02:ec:b7:cf:88:d3 dst_mac 02:3b:7d:15:79:56 vlan_id 2621 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11429 flower src_mac 02:90:df:ce:db:21 dst_mac 02:df:28:79:88:06 vlan_id 1231 vlan_ethtype ip src_ip 67.57.115.177 dst_ip 78.3.47.96 ip_proto udp src_port 56955 dst_port 32645 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11430 flower src_mac 02:7c:89:55:fd:69 dst_mac 02:81:ff:ec:b0:ae action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11431 flower src_mac 02:e5:44:46:ee:29 dst_mac 02:7b:ec:67:e6:3e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11432 flower src_mac 02:40:e1:2c:b5:67 dst_mac 02:a1:07:b0:17:7d vlan_id 3113 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11433 flower src_mac 02:a2:f3:1f:a8:05 dst_mac 02:f9:fe:14:69:1f action trap && tc filter add dev swp33 ingress protocol ip pref 11434 flower src_mac 02:ac:15:31:02:84 dst_mac 02:38:ed:23:53:44 src_ip 53.202.230.56 dst_ip 24.175.142.78 ip_proto icmp code 250 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11435 flower src_mac 02:7b:b2:e6:f2:de dst_mac 02:af:98:ec:d1:cb vlan_id 2216 vlan_ethtype 0x0800 src_ip 73.120.188.152 dst_ip 49.71.96.29 ip_proto udp src_port 51874 dst_port 43468 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11436 flower src_mac 02:19:72:18:9a:dd dst_mac 02:90:0c:fd:36:bb vlan_id 267 vlan_ethtype ip src_ip 66.215.153.57 dst_ip 86.84.109.129 ip_proto tcp src_port 59548 dst_port 43327 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11437 flower src_mac 02:c4:7b:6f:39:1f dst_mac 02:0b:80:b5:3e:da vlan_id 1101 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11438 flower src_mac 02:e0:7e:b9:8b:d0 dst_mac 02:94:12:f4:bb:7e src_ip 64.29.96.101 dst_ip 94.57.30.245 ip_proto udp src_port 2143 dst_port 8502 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11439 flower src_mac 02:27:3c:bf:50:22 dst_mac 02:9f:fe:09:64:8e vlan_id 1251 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11440 flower src_mac 02:ad:db:2f:2f:df dst_mac 02:cf:db:62:0c:1b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11441 flower src_mac 02:f9:e9:62:e7:86 dst_mac 02:20:de:94:60:01 src_ip 42.213.79.242 dst_ip 61.22.245.173 ip_proto udp src_port 3215 dst_port 2316 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:36:a2:35:3b:a3 dst_mac 02:13:81:6b:d6:15 vlan_id 1347 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:58:42:eb:38:9b dst_mac 02:5e:59:11:58:aa vlan_id 2494 vlan_ethtype 0x0800 src_ip 100.5.184.13 dst_ip 119.211.21.25 ip_proto udp src_port 11149 dst_port 30803 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11444 flower src_mac 02:72:26:1d:12:3c dst_mac 02:e2:1c:95:f1:bc vlan_id 1131 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11445 flower src_mac 02:27:5c:9f:4d:3c dst_mac 02:9c:57:9a:18:0a vlan_id 2587 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11446 flower src_mac 02:44:c5:a2:f0:03 dst_mac 02:b8:34:e7:94:d9 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11447 flower src_mac 02:88:59:3b:ca:27 dst_mac 02:79:ed:e8:60:8a src_ip 87.193.99.228 dst_ip 34.6.94.36 ip_proto tcp src_port 36061 dst_port 60735 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11448 flower src_mac 02:a2:7c:ee:ca:24 dst_mac 02:0d:e8:5c:77:42 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11449 flower src_mac 02:17:b9:c9:c9:42 dst_mac 02:d7:fc:5f:b1:eb src_ip 58.123.15.8 dst_ip 17.172.151.147 ip_proto tcp src_port 65000 dst_port 37144 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11450 flower src_mac 02:93:a3:6f:0b:65 dst_mac 02:40:c4:6a:e2:c1 vlan_id 795 vlan_ethtype ip src_ip 70.183.43.243 dst_ip 90.133.195.115 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11451 flower src_mac 02:da:b1:b2:a7:92 dst_mac 02:cd:01:87:cb:9a vlan_id 3767 vlan_ethtype ipv4 src_ip 21.231.31.90 dst_ip 61.125.74.8 ip_proto udp src_port 20286 dst_port 8464 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11452 flower src_mac 02:e1:02:c3:1b:5e dst_mac 02:34:54:b0:4c:50 vlan_id 2927 vlan_ethtype ip src_ip 58.88.203.113 dst_ip 53.108.164.193 ip_proto tcp src_port 33864 dst_port 30312 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11453 flower src_mac 02:9d:ce:a3:6c:98 dst_mac 02:73:d0:b3:87:db action trap && tc filter add dev swp33 ingress protocol ip pref 11454 flower src_mac 02:4e:82:b5:af:2c dst_mac 02:89:74:76:28:7e src_ip 100.215.18.11 dst_ip 44.185.107.135 ip_proto udp src_port 8001 dst_port 51197 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11455 flower src_mac 02:a4:95:2d:f1:b0 dst_mac 02:19:cc:3a:56:6b vlan_id 2026 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11456 flower src_mac 02:4f:cf:ff:20:cb dst_mac 02:79:cb:77:d7:a8 vlan_id 3097 vlan_ethtype ip src_ip 43.247.206.222 dst_ip 50.13.84.220 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:84:5f:73:71:df dst_mac 02:b2:ec:0b:e1:1a vlan_id 3126 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11458 flower src_mac 02:65:cb:55:c5:95 dst_mac 02:9a:1b:5e:8a:64 vlan_id 1543 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11459 flower src_mac 02:f4:86:7e:da:45 dst_mac 02:10:09:43:1b:05 vlan_id 2479 vlan_ethtype ip src_ip 31.136.224.178 dst_ip 50.229.84.2 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11460 flower src_mac 02:8d:5d:d9:20:fb dst_mac 02:26:f2:53:6a:d6 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11461 flower src_mac 02:45:d3:9b:af:29 dst_mac 02:92:7e:09:7f:38 src_ip 13.74.163.181 dst_ip 64.193.163.235 ip_proto tcp src_port 32964 dst_port 45906 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11462 flower src_mac 02:47:a3:07:ea:48 dst_mac 02:b6:6a:bd:6c:1e action drop && tc filter add dev swp33 ingress protocol ip pref 11463 flower src_mac 02:b2:5b:ef:08:c1 dst_mac 02:e1:53:3c:fd:98 src_ip 59.173.243.57 dst_ip 17.234.138.206 ip_proto tcp src_port 51067 dst_port 23922 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11464 flower src_mac 02:91:23:3c:d2:fb dst_mac 02:f4:8b:fb:ef:36 vlan_id 2860 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11465 flower src_mac 02:19:b2:66:3d:f3 dst_mac 02:4c:d3:6b:7b:25 vlan_id 3759 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11466 flower src_mac 02:cd:f9:d7:aa:34 dst_mac 02:23:d6:c4:41:a5 src_ip 79.51.107.41 dst_ip 14.87.149.250 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:9f:06:c2:04:cf dst_mac 02:7d:ad:c1:c2:7c vlan_id 2556 vlan_ethtype 0x0800 src_ip 85.181.210.74 dst_ip 84.169.88.54 ip_proto udp src_port 65279 dst_port 58008 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11468 flower src_mac 02:71:bf:e1:79:79 dst_mac 02:b8:7d:9c:20:b0 vlan_id 1540 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:41:b3:6d:49:11 dst_mac 02:82:f0:c6:60:b2 vlan_id 3944 vlan_ethtype ip src_ip 47.173.105.66 dst_ip 53.123.247.137 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11470 flower src_mac 02:45:32:ca:1b:16 dst_mac 02:9c:ad:a6:7c:62 vlan_id 2502 vlan_ethtype ipv4 src_ip 80.242.161.199 dst_ip 13.223.42.110 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11471 flower src_mac 02:dc:53:27:7e:bc dst_mac 02:5b:f2:ed:65:46 vlan_id 3543 vlan_ethtype 0x0800 src_ip 62.225.119.76 dst_ip 99.172.252.16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:bc:da:92:fb:f0 dst_mac 02:f0:b4:c0:f1:92 vlan_id 3449 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:cd:ab:a6:81:84 dst_mac 02:82:b2:91:75:ab action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11474 flower src_mac 02:1c:65:84:a1:37 dst_mac 02:44:08:35:f9:f3 vlan_id 1123 vlan_ethtype ipv4 src_ip 78.3.50.79 dst_ip 111.181.173.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11475 flower src_mac 02:a9:ac:40:d3:42 dst_mac 02:9f:bb:5d:6d:35 vlan_id 2017 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11476 flower src_mac 02:ed:a9:01:4b:72 dst_mac 02:31:69:58:3e:6e src_ip 40.58.31.186 dst_ip 110.225.8.52 ip_proto icmp code 90 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11477 flower src_mac 02:9f:99:4b:c7:76 dst_mac 02:11:8b:f7:42:e1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11478 flower src_mac 02:76:53:3e:6c:8b dst_mac 02:48:66:91:45:2b vlan_id 3297 vlan_ethtype 0x0800 src_ip 122.165.147.207 dst_ip 117.82.208.226 ip_proto tcp src_port 64251 dst_port 64997 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11479 flower src_mac 02:6e:d9:06:ce:ce dst_mac 02:50:7b:0e:ea:c9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11480 flower src_mac 02:b7:b9:11:6a:42 dst_mac 02:87:dd:a6:5a:41 src_ip 59.185.202.146 dst_ip 47.4.134.193 ip_proto icmp code 9 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11481 flower src_mac 02:83:83:a0:66:79 dst_mac 02:ce:9f:f5:cb:ef action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11482 flower src_mac 02:54:dd:ec:32:9e dst_mac 02:81:9d:6d:53:9c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:03:ba:fe:92:a0 dst_mac 02:50:b0:fb:35:83 vlan_id 377 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:ef:6b:53:5c:dc dst_mac 02:76:07:c3:fe:3f vlan_id 299 vlan_ethtype ip src_ip 107.29.78.76 dst_ip 125.169.192.186 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11485 flower src_mac 02:ab:00:22:65:e8 dst_mac 02:08:8c:e5:d1:76 vlan_id 412 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11486 flower src_mac 02:df:01:42:b2:77 dst_mac 02:d6:1b:9f:c2:11 vlan_id 3725 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11487 flower src_mac 02:c7:0f:e2:3d:e6 dst_mac 02:67:b1:1a:b5:6f vlan_id 2427 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11488 flower src_mac 02:5d:1f:06:7b:6e dst_mac 02:85:7a:3d:22:83 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:3e:a5:2f:e2:e7 dst_mac 02:31:60:e4:fe:38 vlan_id 3040 vlan_ethtype 0x0800 src_ip 86.62.239.186 dst_ip 74.175.49.99 ip_proto udp src_port 1186 dst_port 1201 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11490 flower src_mac 02:a3:a1:bc:0d:ab dst_mac 02:fe:d6:bb:53:f7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11491 flower src_mac 02:97:d6:be:ca:c5 dst_mac 02:b5:1c:5e:c7:64 vlan_id 1513 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11492 flower src_mac 02:47:fd:84:71:a5 dst_mac 02:80:1f:33:7f:65 vlan_id 1177 vlan_ethtype 0x0800 src_ip 57.242.105.174 dst_ip 94.62.50.77 ip_proto tcp src_port 27031 dst_port 19382 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11493 flower src_mac 02:21:e0:5d:77:83 dst_mac 02:a2:1f:da:7e:89 vlan_id 2930 vlan_ethtype 0x0800 src_ip 79.112.49.21 dst_ip 17.107.160.115 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:be:0a:aa:24:60 dst_mac 02:9a:05:10:a0:ff vlan_id 614 vlan_ethtype ipv4 src_ip 107.103.94.129 dst_ip 17.19.20.20 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:02:33:90:c9:9b dst_mac 02:1b:3a:d5:5a:f7 vlan_id 1631 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:d4:0b:b3:cc:67 dst_mac 02:85:08:bd:42:95 vlan_id 3740 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:66:0f:91:43:e9 dst_mac 02:de:03:20:9f:31 src_ip 14.195.238.170 dst_ip 99.124.151.116 ip_proto icmp code 163 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11498 flower src_mac 02:05:fe:61:cc:03 dst_mac 02:68:9a:58:6c:6a vlan_id 4057 vlan_ethtype 0x0800 src_ip 119.88.103.3 dst_ip 52.253.110.118 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11499 flower src_mac 02:2a:b6:93:f2:7b dst_mac 02:81:fb:8a:f1:c2 vlan_id 1070 vlan_ethtype ip src_ip 28.91.90.173 dst_ip 67.29.117.11 ip_proto udp src_port 59599 dst_port 49973 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11500 flower src_mac 02:91:1f:7d:7b:6f dst_mac 02:3d:05:c5:b9:e9 vlan_id 1590 vlan_ethtype 0x0800 src_ip 44.145.36.197 dst_ip 16.128.22.49 action pass && tc filter add dev swp33 ingress protocol ip pref 11501 flower src_mac 02:fe:a4:04:b8:91 dst_mac 02:08:49:51:a2:d2 src_ip 52.139.43.20 dst_ip 121.170.60.127 ip_proto udp src_port 46978 dst_port 12460 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11502 flower src_mac 02:3b:9c:5a:b1:d0 dst_mac 02:bd:16:1f:e7:9c vlan_id 3287 vlan_ethtype ipv4 src_ip 119.29.13.163 dst_ip 124.126.194.236 ip_proto udp src_port 31752 dst_port 65387 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11503 flower src_mac 02:ed:7b:b6:67:e6 dst_mac 02:2b:7f:15:50:26 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11504 flower src_mac 02:20:7a:e4:09:17 dst_mac 02:13:00:19:92:83 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11505 flower src_mac 02:9b:c9:10:07:4e dst_mac 02:e7:96:0f:f9:5a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:56:db:e9:82:21 dst_mac 02:80:75:b9:ce:6a vlan_id 2050 vlan_ethtype ip src_ip 122.191.109.51 dst_ip 111.183.31.213 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11507 flower src_mac 02:0a:1e:b9:17:e7 dst_mac 02:45:b2:1e:20:92 vlan_id 469 vlan_ethtype ip src_ip 95.181.122.141 dst_ip 92.181.20.23 ip_proto tcp src_port 36366 dst_port 13250 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11508 flower src_mac 02:d9:cd:4a:0c:1f dst_mac 02:4b:b6:da:d7:2b vlan_id 2663 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11509 flower src_mac 02:10:1f:6c:ec:d2 dst_mac 02:7f:be:19:06:f4 src_ip 79.26.227.6 dst_ip 95.113.173.17 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:d5:b6:ed:43:34 dst_mac 02:fe:5d:31:f0:7e vlan_id 2404 vlan_ethtype ipv4 src_ip 34.192.39.9 dst_ip 14.30.220.137 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11511 flower src_mac 02:30:58:ab:d7:77 dst_mac 02:55:ac:8a:5f:d6 src_ip 110.91.63.128 dst_ip 96.137.212.54 ip_proto tcp src_port 39755 dst_port 11582 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11512 flower src_mac 02:54:dd:2b:eb:58 dst_mac 02:14:a1:1c:d7:3c vlan_id 3645 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11513 flower src_mac 02:89:8d:c4:ea:81 dst_mac 02:eb:02:e7:8e:e7 src_ip 42.67.196.152 dst_ip 120.124.121.152 ip_proto icmp code 141 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:7c:7f:e4:f7:ed dst_mac 02:9c:6f:72:a4:cc vlan_id 1458 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11515 flower src_mac 02:72:24:32:1d:88 dst_mac 02:db:f9:2c:cb:96 src_ip 45.203.1.232 dst_ip 23.77.147.108 ip_proto tcp src_port 2135 dst_port 8004 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11516 flower src_mac 02:e7:ad:34:00:96 dst_mac 02:dc:84:fb:45:df vlan_id 1899 vlan_ethtype 0x0800 src_ip 37.161.32.234 dst_ip 122.69.175.100 ip_proto tcp src_port 10450 dst_port 31985 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11517 flower src_mac 02:35:1a:8d:90:fc dst_mac 02:a5:43:08:7a:71 vlan_id 39 vlan_ethtype 0x0800 src_ip 88.176.146.140 dst_ip 79.129.48.216 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11518 flower src_mac 02:aa:90:a9:43:89 dst_mac 02:5d:34:22:fd:4b vlan_id 3638 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:f6:4f:f4:59:9b dst_mac 02:bb:8b:ef:5a:f7 vlan_id 3813 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11520 flower src_mac 02:48:d9:a5:b4:8b dst_mac 02:2e:9d:d0:79:c1 src_ip 101.123.48.211 dst_ip 116.126.43.237 ip_proto tcp src_port 12958 dst_port 26297 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11521 flower src_mac 02:31:a0:a1:2c:7a dst_mac 02:53:97:29:f4:e9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11522 flower src_mac 02:5d:bb:70:57:6f dst_mac 02:58:13:d6:34:84 vlan_id 1881 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11523 flower src_mac 02:d8:a6:04:b7:e8 dst_mac 02:e4:cc:a4:3d:e8 src_ip 66.147.156.34 dst_ip 40.53.242.166 ip_proto tcp src_port 15818 dst_port 13628 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11524 flower src_mac 02:ee:0c:05:4b:76 dst_mac 02:bd:53:da:df:d1 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11525 flower src_mac 02:35:8d:a6:7d:62 dst_mac 02:0a:aa:0e:2d:06 src_ip 104.20.4.200 dst_ip 36.171.144.28 ip_proto udp src_port 44812 dst_port 9652 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11526 flower src_mac 02:01:a5:e7:ee:01 dst_mac 02:ea:a6:37:3d:14 vlan_id 2862 vlan_ethtype ip src_ip 103.133.128.230 dst_ip 93.34.86.69 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:d9:e1:f6:e7:34 dst_mac 02:c1:b3:ed:2e:8d src_ip 78.197.63.34 dst_ip 23.97.59.120 ip_proto icmp code 223 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11528 flower src_mac 02:e8:b0:d1:d8:3e dst_mac 02:59:c4:29:2a:4b vlan_id 1176 vlan_ethtype ip src_ip 107.34.211.140 dst_ip 82.78.190.50 ip_proto tcp src_port 35798 dst_port 14774 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11529 flower src_mac 02:b9:d1:9e:ec:c4 dst_mac 02:3f:14:1c:f9:e7 src_ip 106.44.235.32 dst_ip 22.250.49.108 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11530 flower src_mac 02:ac:cc:d4:d3:f0 dst_mac 02:52:3c:8d:a4:c8 vlan_id 1224 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11531 flower src_mac 02:5f:01:47:04:2a dst_mac 02:ee:ea:31:ca:23 vlan_id 4075 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11532 flower src_mac 02:69:ab:6c:f6:34 dst_mac 02:60:e4:d1:a3:05 vlan_id 2827 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11533 flower src_mac 02:93:08:75:1e:ca dst_mac 02:58:74:9f:bd:be src_ip 85.170.119.183 dst_ip 45.148.189.164 ip_proto udp src_port 62158 dst_port 33027 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:36:5a:bc:33:42 dst_mac 02:07:9f:58:61:d2 vlan_id 354 vlan_ethtype 0x0800 src_ip 70.90.248.35 dst_ip 66.235.85.218 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11535 flower src_mac 02:ba:b8:4f:2a:64 dst_mac 02:a8:bc:c7:3f:c9 vlan_id 1972 vlan_ethtype ip src_ip 33.112.133.69 dst_ip 24.150.28.9 ip_proto tcp src_port 28947 dst_port 48722 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 11200 flower src_mac 02:ad:97:4c:42:cb dst_mac 02:67:2d:37:06:3a vlan_id 348 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11201 flower src_mac 02:ac:84:66:d9:55 dst_mac 02:fa:c6:7f:83:7a vlan_id 1769 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11202 flower src_mac 02:2b:20:2f:cb:11 dst_mac 02:f9:f6:5d:21:65 src_ip 79.166.80.223 dst_ip 26.23.48.102 ip_proto icmp code 243 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 11203 flower src_mac 02:7c:8d:7d:bc:26 dst_mac 02:ee:75:99:4e:54 src_ip 31.156.72.224 dst_ip 23.201.238.212 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11204 flower src_mac 02:be:a9:e4:a5:20 dst_mac 02:bd:f3:8d:fa:53 vlan_id 1993 vlan_ethtype 0x0800 src_ip 122.23.47.135 dst_ip 43.21.87.50 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11205 flower src_mac 02:24:3a:aa:24:11 dst_mac 02:14:b0:7c:f4:91 src_ip 60.12.78.174 dst_ip 95.44.235.86 ip_proto udp src_port 16560 dst_port 3725 action trap && tc filter add dev swp33 ingress protocol ip pref 11206 flower src_mac 02:20:90:aa:1d:c0 dst_mac 02:91:03:20:09:83 src_ip 105.219.58.183 dst_ip 113.93.188.129 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11207 flower src_mac 02:b7:7e:01:24:c3 dst_mac 02:03:ee:c3:89:2a vlan_id 691 vlan_ethtype ip src_ip 60.110.57.242 dst_ip 68.57.122.197 ip_proto tcp src_port 50620 dst_port 46098 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11208 flower src_mac 02:19:74:58:d2:35 dst_mac 02:af:60:63:14:52 vlan_id 261 vlan_ethtype ip src_ip 88.15.53.64 dst_ip 33.81.59.172 ip_proto udp src_port 14504 dst_port 51065 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11209 flower src_mac 02:75:ad:ae:48:a2 dst_mac 02:9d:99:fe:ca:98 vlan_id 2480 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11210 flower src_mac 02:48:1f:88:5a:dd dst_mac 02:fd:9e:bb:5c:04 vlan_id 1732 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11211 flower src_mac 02:d5:a3:90:4e:aa dst_mac 02:2e:9a:11:19:1d vlan_id 2701 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11212 flower src_mac 02:7c:0c:2f:8a:ea dst_mac 02:6e:79:ac:af:c1 src_ip 85.120.156.235 dst_ip 91.42.61.90 ip_proto udp src_port 53419 dst_port 12541 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11213 flower src_mac 02:20:7a:c4:09:18 dst_mac 02:c9:2e:48:6d:46 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11214 flower src_mac 02:c2:41:bb:df:86 dst_mac 02:37:f7:a5:5c:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:e7:0f:14:27:d3 dst_mac 02:03:a5:da:e3:18 vlan_id 359 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11216 flower src_mac 02:e6:4a:0f:e2:50 dst_mac 02:8e:60:79:b1:3f vlan_id 3637 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11217 flower src_mac 02:a0:28:df:a5:f5 dst_mac 02:8b:9a:ed:b1:a4 src_ip 108.168.218.199 dst_ip 24.167.127.11 ip_proto tcp src_port 61825 dst_port 17712 action drop && tc filter add dev swp33 ingress protocol ip pref 11218 flower src_mac 02:d2:4e:c0:86:6d dst_mac 02:42:04:07:38:e0 src_ip 14.95.196.58 dst_ip 53.75.99.74 ip_proto tcp src_port 8036 dst_port 35424 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11219 flower src_mac 02:2d:af:1a:53:ab dst_mac 02:6e:43:f3:9a:82 src_ip 57.39.75.201 dst_ip 85.104.190.25 ip_proto tcp src_port 45215 dst_port 8712 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11220 flower src_mac 02:10:3d:14:66:e9 dst_mac 02:92:e3:47:b3:42 vlan_id 1355 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11221 flower src_mac 02:2e:82:76:00:5b dst_mac 02:f8:71:e1:c7:d6 vlan_id 2717 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11222 flower src_mac 02:ca:46:de:83:13 dst_mac 02:5c:98:bd:53:7a vlan_id 1991 vlan_ethtype ip src_ip 13.244.135.11 dst_ip 96.38.105.212 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11223 flower src_mac 02:74:3d:62:82:94 dst_mac 02:90:d0:13:1d:4e action pass && tc filter add dev swp33 ingress protocol ip pref 11224 flower src_mac 02:0b:1a:98:0b:4e dst_mac 02:fd:de:c5:70:27 src_ip 80.60.210.187 dst_ip 102.253.90.80 ip_proto udp src_port 43730 dst_port 12535 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11225 flower src_mac 02:1b:e5:ee:e3:f9 dst_mac 02:47:41:a0:a7:d8 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11226 flower src_mac 02:7e:30:9f:ce:46 dst_mac 02:d5:04:59:36:aa src_ip 26.248.92.160 dst_ip 94.112.250.182 ip_proto tcp src_port 58449 dst_port 31315 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11227 flower src_mac 02:bb:e8:0b:79:5c dst_mac 02:60:f7:59:7b:32 src_ip 120.164.73.226 dst_ip 14.142.230.128 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11228 flower src_mac 02:d8:a6:ab:83:23 dst_mac 02:67:ac:24:74:b2 src_ip 83.52.190.194 dst_ip 60.3.15.155 ip_proto icmp code 114 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11229 flower src_mac 02:47:50:c1:76:1a dst_mac 02:dd:4a:c5:96:7a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11230 flower src_mac 02:6d:a9:6a:62:1d dst_mac 02:72:58:37:02:58 vlan_id 18 vlan_ethtype 0x0800 src_ip 122.10.107.34 dst_ip 48.90.104.36 ip_proto tcp src_port 2701 dst_port 63093 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11231 flower src_mac 02:f9:88:e6:fb:e1 dst_mac 02:ef:bc:94:60:cc action trap && tc filter add dev swp33 ingress protocol ip pref 11232 flower src_mac 02:04:f6:cd:27:d8 dst_mac 02:a3:6d:59:83:5e src_ip 80.39.203.68 dst_ip 72.193.159.107 ip_proto tcp src_port 62520 dst_port 11590 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11233 flower src_mac 02:b3:70:45:17:7c dst_mac 02:9b:75:f3:6b:36 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11234 flower src_mac 02:20:64:27:71:3e dst_mac 02:df:c2:90:0e:15 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11235 flower src_mac 02:bf:b3:d5:f4:13 dst_mac 02:4c:5c:ef:a6:9e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11236 flower src_mac 02:a8:8d:a5:73:f7 dst_mac 02:ac:34:f8:a9:12 vlan_id 3003 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11237 flower src_mac 02:87:88:a0:8e:c4 dst_mac 02:ab:5f:25:8f:7d vlan_id 3762 vlan_ethtype ip src_ip 123.238.18.168 dst_ip 69.133.56.149 ip_proto udp src_port 46304 dst_port 64062 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11238 flower src_mac 02:c9:2b:15:45:1f dst_mac 02:17:74:fd:64:0a action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11239 flower src_mac 02:a5:95:6d:c6:d9 dst_mac 02:b4:f1:d2:a2:00 src_ip 44.9.220.109 dst_ip 69.207.22.79 ip_proto tcp src_port 21126 dst_port 15401 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11240 flower src_mac 02:17:c7:df:6e:63 dst_mac 02:3a:8b:2c:a6:72 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11241 flower src_mac 02:82:47:28:2f:38 dst_mac 02:ac:b3:6f:0c:ba vlan_id 3252 vlan_ethtype 0x0800 src_ip 66.184.127.138 dst_ip 84.147.231.47 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11242 flower src_mac 02:37:b0:45:ec:04 dst_mac 02:11:d4:be:8a:b9 src_ip 30.88.201.218 dst_ip 70.6.175.166 ip_proto tcp src_port 28966 dst_port 31299 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11243 flower src_mac 02:c1:55:85:10:b8 dst_mac 02:89:4d:f4:e0:08 vlan_id 2664 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11244 flower src_mac 02:8b:0f:eb:30:56 dst_mac 02:bf:a7:8e:1e:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11245 flower src_mac 02:c1:5e:95:e4:9d dst_mac 02:b0:81:fc:07:70 vlan_id 1028 vlan_ethtype ipv4 src_ip 96.122.239.163 dst_ip 15.96.71.35 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11246 flower src_mac 02:41:64:cb:ae:44 dst_mac 02:44:52:d1:dd:09 src_ip 14.174.49.198 dst_ip 65.134.36.152 ip_proto tcp src_port 2514 dst_port 15079 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11247 flower src_mac 02:92:e7:4f:10:1a dst_mac 02:b5:5f:42:5e:24 vlan_id 1877 vlan_ethtype 0x0800 src_ip 80.152.65.45 dst_ip 108.13.174.46 ip_proto udp src_port 65091 dst_port 4654 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11248 flower src_mac 02:ec:24:10:68:2c dst_mac 02:ee:75:c3:a9:f9 src_ip 112.41.162.66 dst_ip 101.170.9.17 ip_proto icmp code 138 type 4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:3e:cc:c3:25:45 dst_mac 02:e7:1a:9a:b1:b5 vlan_id 625 vlan_ethtype ip src_ip 96.144.252.101 dst_ip 107.138.120.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11250 flower src_mac 02:64:4f:2a:86:1d dst_mac 02:01:6f:00:30:2b vlan_id 1678 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11251 flower src_mac 02:21:d6:be:6c:55 dst_mac 02:43:f4:38:82:c2 vlan_id 3160 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11252 flower src_mac 02:e0:15:79:7b:c5 dst_mac 02:65:5d:ee:03:e5 vlan_id 1198 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:fd:ba:fc:00:55 dst_mac 02:01:bc:7d:86:d8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:3c:3c:95:e5:0c dst_mac 02:75:0e:42:87:bc action pass && tc filter add dev swp33 ingress protocol ip pref 11255 flower src_mac 02:29:bd:2a:20:e1 dst_mac 02:fc:44:d8:dd:5a src_ip 17.168.17.184 dst_ip 126.203.203.207 ip_proto tcp src_port 14843 dst_port 18202 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11256 flower src_mac 02:67:de:eb:61:77 dst_mac 02:3a:dd:b7:e0:96 vlan_id 682 vlan_ethtype ipv4 src_ip 70.108.123.150 dst_ip 36.226.175.145 ip_proto udp src_port 52761 dst_port 29548 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11257 flower src_mac 02:f2:35:39:99:b6 dst_mac 02:99:ef:20:e2:f7 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11258 flower src_mac 02:11:cd:75:1c:2f dst_mac 02:27:88:d0:15:55 vlan_id 450 vlan_ethtype 0x0800 src_ip 48.119.113.64 dst_ip 15.73.205.198 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11259 flower src_mac 02:ef:98:44:63:2b dst_mac 02:8d:5f:45:05:d2 vlan_id 544 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11260 flower src_mac 02:93:a2:22:0d:53 dst_mac 02:f0:76:8c:5b:c5 vlan_id 1794 vlan_ethtype 0x0800 src_ip 46.196.233.152 dst_ip 94.200.149.81 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11261 flower src_mac 02:e8:bf:88:d3:6c dst_mac 02:a2:67:a9:ce:e1 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11262 flower src_mac 02:7e:e0:e3:39:4c dst_mac 02:35:bc:97:da:b2 src_ip 116.234.7.195 dst_ip 98.142.165.35 ip_proto tcp src_port 18797 dst_port 53356 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11263 flower src_mac 02:c2:92:07:c4:a7 dst_mac 02:98:b7:34:5e:a5 vlan_id 1894 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11264 flower src_mac 02:c2:33:89:51:d4 dst_mac 02:80:47:64:94:b2 src_ip 84.160.216.48 dst_ip 61.0.222.166 ip_proto icmp code 127 type 18 action trap && tc filter add dev swp33 ingress protocol ip pref 11265 flower src_mac 02:ba:7e:4d:6b:0f dst_mac 02:03:19:67:a5:a8 src_ip 79.145.227.16 dst_ip 119.38.18.236 ip_proto icmp code 56 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11266 flower src_mac 02:5b:2a:85:65:47 dst_mac 02:24:36:7e:72:f8 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11267 flower src_mac 02:2e:cc:03:24:9d dst_mac 02:3f:11:74:17:d0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11268 flower src_mac 02:a2:77:30:a1:6a dst_mac 02:8c:29:b0:3e:02 vlan_id 2431 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11269 flower src_mac 02:ea:f7:d4:5a:18 dst_mac 02:0f:65:cd:c7:ae vlan_id 979 vlan_ethtype ip src_ip 105.23.142.220 dst_ip 61.42.185.231 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11270 flower src_mac 02:5d:c9:79:f3:e7 dst_mac 02:4b:ee:1b:3c:1e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11271 flower src_mac 02:5c:a3:6b:bf:7d dst_mac 02:ab:f3:f1:95:40 vlan_id 1088 vlan_ethtype ip src_ip 100.172.77.216 dst_ip 32.217.38.116 ip_proto udp src_port 50253 dst_port 29106 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11272 flower src_mac 02:6b:aa:28:18:9c dst_mac 02:a5:52:10:7a:ec vlan_id 1133 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11273 flower src_mac 02:91:99:8c:9c:09 dst_mac 02:4b:89:42:c7:52 vlan_id 1723 vlan_ethtype ip src_ip 53.21.53.134 dst_ip 12.23.82.3 ip_proto udp src_port 20448 dst_port 4956 action trap && tc filter add dev swp33 ingress protocol ip pref 11274 flower src_mac 02:88:cc:3a:71:50 dst_mac 02:c9:78:1b:eb:1b src_ip 37.25.183.112 dst_ip 95.123.40.233 ip_proto udp src_port 37486 dst_port 61491 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11275 flower src_mac 02:31:3c:ae:8e:e2 dst_mac 02:37:80:52:5a:8b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11276 flower src_mac 02:54:06:3d:6c:7d dst_mac 02:11:9e:fd:54:63 vlan_id 3449 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11277 flower src_mac 02:fc:95:7c:0e:2f dst_mac 02:9d:ee:87:89:55 vlan_id 3997 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11278 flower src_mac 02:14:5c:f2:c4:a8 dst_mac 02:17:e5:51:00:af vlan_id 956 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11279 flower src_mac 02:13:dd:35:0e:50 dst_mac 02:3b:19:0b:9b:ce action drop && tc filter add dev swp33 ingress protocol ip pref 11280 flower src_mac 02:d1:3f:a8:63:80 dst_mac 02:02:c1:32:00:fb src_ip 124.28.151.136 dst_ip 113.236.202.190 ip_proto icmp code 217 type 0 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11281 flower src_mac 02:c2:6e:70:19:f7 dst_mac 02:17:e3:5d:1c:f2 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11282 flower src_mac 02:0b:45:44:11:43 dst_mac 02:01:c7:e9:3b:57 action drop && tc filter add dev swp33 ingress protocol ip pref 11283 flower src_mac 02:60:e5:94:96:fd dst_mac 02:1d:f3:08:5e:1b src_ip 34.17.196.225 dst_ip 46.243.210.110 ip_proto tcp src_port 34907 dst_port 61166 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11284 flower src_mac 02:2a:46:d3:28:41 dst_mac 02:d1:ca:57:db:45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11285 flower src_mac 02:1d:46:73:7a:e2 dst_mac 02:31:87:ce:6c:e4 vlan_id 1205 vlan_ethtype ipv4 src_ip 15.73.145.31 dst_ip 62.90.22.234 action pass && tc filter add dev swp33 ingress protocol ip pref 11286 flower src_mac 02:14:2c:3a:b1:d5 dst_mac 02:bb:e4:90:2e:94 src_ip 110.18.176.143 dst_ip 115.215.250.115 ip_proto icmp code 198 type 12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11287 flower src_mac 02:d6:8f:79:a1:00 dst_mac 02:4b:9c:b5:e2:2b vlan_id 2221 vlan_ethtype ip src_ip 47.226.153.220 dst_ip 40.112.110.201 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11288 flower src_mac 02:86:2a:8b:38:f6 dst_mac 02:77:cc:e8:42:b2 vlan_id 2191 vlan_ethtype 0x0800 src_ip 70.173.128.16 dst_ip 74.6.203.137 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11289 flower src_mac 02:16:b5:fe:71:71 dst_mac 02:a7:cd:3b:c0:e3 vlan_id 772 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11290 flower src_mac 02:00:19:a1:0d:28 dst_mac 02:67:f4:e2:30:94 vlan_id 3090 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11291 flower src_mac 02:b5:e0:ab:58:cb dst_mac 02:99:22:ea:3e:12 src_ip 24.214.240.50 dst_ip 65.108.30.245 ip_proto tcp src_port 50791 dst_port 40279 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11292 flower src_mac 02:50:1b:06:6f:34 dst_mac 02:3c:00:89:fd:b5 vlan_id 3788 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11293 flower src_mac 02:42:ab:eb:a4:3b dst_mac 02:30:1b:6e:4b:f0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11294 flower src_mac 02:8c:a5:aa:04:7f dst_mac 02:9e:1e:b1:cf:64 action pass && tc filter add dev swp33 ingress protocol ip pref 11295 flower src_mac 02:1f:bd:50:30:9a dst_mac 02:9e:cb:f7:59:25 src_ip 77.136.101.38 dst_ip 46.13.78.41 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11296 flower src_mac 02:f7:c6:2b:12:9d dst_mac 02:f8:9b:92:9a:03 vlan_id 1909 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11297 flower src_mac 02:2b:ee:8d:65:a4 dst_mac 02:16:36:17:f5:20 src_ip 55.77.238.221 dst_ip 78.21.53.92 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11298 flower src_mac 02:83:b5:cc:75:30 dst_mac 02:9b:1a:1d:9f:98 vlan_id 2268 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11299 flower src_mac 02:fd:6f:6d:09:90 dst_mac 02:26:77:ad:fd:1f src_ip 108.122.73.150 dst_ip 121.173.10.194 ip_proto tcp src_port 46207 dst_port 7097 action pass && tc filter add dev swp33 ingress protocol ip pref 11300 flower src_mac 02:80:e7:f6:3a:c4 dst_mac 02:fb:2e:10:b6:53 src_ip 29.165.184.94 dst_ip 91.238.19.250 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11301 flower src_mac 02:8a:8a:d4:c5:e1 dst_mac 02:f8:66:69:7d:64 vlan_id 1332 vlan_ethtype 0x0800 src_ip 71.246.217.126 dst_ip 97.162.129.84 ip_proto tcp src_port 19673 dst_port 24338 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11302 flower src_mac 02:3d:9a:bd:bf:f2 dst_mac 02:e8:36:ca:d0:0e src_ip 28.210.199.227 dst_ip 35.94.14.46 ip_proto udp src_port 4529 dst_port 40219 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11303 flower src_mac 02:bd:69:02:a2:e3 dst_mac 02:ac:31:40:f8:16 src_ip 17.181.186.204 dst_ip 71.169.194.209 ip_proto udp src_port 48903 dst_port 49666 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11304 flower src_mac 02:59:ee:6f:18:d8 dst_mac 02:4f:4f:31:cb:aa src_ip 24.133.211.193 dst_ip 103.184.84.211 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11305 flower src_mac 02:91:b9:02:d9:41 dst_mac 02:c7:6a:8a:75:e3 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11306 flower src_mac 02:c6:08:ce:7c:35 dst_mac 02:e8:77:d6:8e:bb src_ip 107.151.51.19 dst_ip 14.181.86.55 ip_proto udp src_port 7552 dst_port 25102 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11307 flower src_mac 02:52:bd:55:d1:d8 dst_mac 02:37:ec:c1:83:72 vlan_id 3477 vlan_ethtype 0x0800 src_ip 38.168.193.221 dst_ip 43.158.105.158 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11308 flower src_mac 02:b5:6f:81:89:c9 dst_mac 02:9e:ba:d7:4d:25 vlan_id 1843 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11309 flower src_mac 02:53:41:c4:32:dd dst_mac 02:11:10:2f:df:3c action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:10:5e:7a:4a:f5 dst_mac 02:cf:f3:6f:e0:6f vlan_id 1709 vlan_ethtype ipv4 src_ip 79.247.170.165 dst_ip 66.168.18.9 ip_proto udp src_port 45837 dst_port 38091 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11311 flower src_mac 02:c7:64:ca:a9:5c dst_mac 02:65:41:c5:47:00 vlan_id 1929 vlan_ethtype 0x0800 src_ip 97.133.161.241 dst_ip 58.92.98.123 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11312 flower src_mac 02:52:0f:0a:45:cc dst_mac 02:e7:d7:57:62:a9 vlan_id 1472 vlan_ethtype ipv4 src_ip 80.123.143.21 dst_ip 45.125.234.39 ip_proto tcp src_port 10942 dst_port 29017 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11313 flower src_mac 02:65:e3:47:57:19 dst_mac 02:56:0d:42:c5:27 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11314 flower src_mac 02:b0:00:75:f4:8b dst_mac 02:ae:d5:c3:e4:7c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11315 flower src_mac 02:d9:da:d7:86:e7 dst_mac 02:b7:e7:7e:9c:f1 vlan_id 1918 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11316 flower src_mac 02:ba:f7:fc:bc:35 dst_mac 02:d9:7d:82:7d:42 vlan_id 2476 vlan_ethtype 0x0800 src_ip 112.22.196.152 dst_ip 82.109.112.168 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11317 flower src_mac 02:4f:6e:ac:51:8c dst_mac 02:48:7a:c0:ea:f8 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11318 flower src_mac 02:68:75:e0:95:64 dst_mac 02:51:a2:6b:40:28 action drop && tc filter add dev swp33 ingress protocol ip pref 11319 flower src_mac 02:5c:65:11:d9:ff dst_mac 02:05:59:52:79:0b src_ip 37.132.175.80 dst_ip 83.237.9.136 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11320 flower src_mac 02:e2:d4:6c:98:38 dst_mac 02:ce:f2:21:32:ba action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:fc:21:ed:c5:5e dst_mac 02:a1:a3:7a:a1:46 vlan_id 2736 vlan_ethtype ipv4 src_ip 71.220.216.9 dst_ip 51.150.239.58 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11322 flower src_mac 02:8d:22:f7:9c:39 dst_mac 02:78:8c:1c:68:45 vlan_id 2975 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:cf:db:fb:6f:c2 dst_mac 02:45:e6:a8:d1:d0 vlan_id 532 vlan_ethtype ipv4 src_ip 88.55.13.46 dst_ip 25.39.55.53 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11324 flower src_mac 02:f8:68:ac:98:3c dst_mac 02:86:a9:68:9b:10 vlan_id 3816 vlan_ethtype ipv4 src_ip 103.198.87.243 dst_ip 102.1.239.243 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11325 flower src_mac 02:18:21:b3:2d:1f dst_mac 02:72:9f:e8:4b:45 src_ip 106.181.208.61 dst_ip 105.209.73.221 ip_proto icmp code 197 type 5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11326 flower src_mac 02:22:b7:fe:44:5a dst_mac 02:af:bd:ae:af:b3 vlan_id 2047 vlan_ethtype ip src_ip 119.87.159.157 dst_ip 52.160.142.146 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11327 flower src_mac 02:8b:46:cd:f5:a2 dst_mac 02:92:46:b0:20:ce action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11328 flower src_mac 02:77:9c:86:3b:e4 dst_mac 02:ce:f5:40:b5:51 src_ip 65.20.42.103 dst_ip 79.118.174.199 ip_proto tcp src_port 959 dst_port 12180 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11329 flower src_mac 02:25:c7:1a:3c:6e dst_mac 02:96:e4:d9:85:77 vlan_id 1841 vlan_ethtype ipv4 src_ip 42.93.179.32 dst_ip 99.252.200.230 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11330 flower src_mac 02:c7:a8:f5:5c:84 dst_mac 02:0a:3e:26:57:5d vlan_id 2557 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11331 flower src_mac 02:b7:4e:d9:f8:59 dst_mac 02:bb:7e:8e:22:1b vlan_id 3399 vlan_ethtype 0x0800 src_ip 125.108.51.77 dst_ip 86.68.198.130 ip_proto udp src_port 32223 dst_port 36231 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:c3:9e:da:8e:68 dst_mac 02:d6:b9:9b:d8:d8 vlan_id 3194 vlan_ethtype 0x0800 src_ip 74.210.36.49 dst_ip 75.176.170.127 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11333 flower src_mac 02:b8:1d:de:33:0a dst_mac 02:83:9f:3c:eb:fd vlan_id 2931 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11334 flower src_mac 02:8f:8a:0c:20:a7 dst_mac 02:e8:68:59:34:ab vlan_id 1223 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11335 flower src_mac 02:0b:41:53:c8:47 dst_mac 02:e1:7b:9d:0e:6b src_ip 115.91.135.225 dst_ip 76.254.247.132 ip_proto tcp src_port 16882 dst_port 27940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:8d:cd:df:c0:0b dst_mac 02:dc:aa:f3:4d:71 vlan_id 2745 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11337 flower src_mac 02:7a:96:21:4a:e8 dst_mac 02:16:ab:ba:c7:6f src_ip 98.17.121.89 dst_ip 123.250.7.178 ip_proto udp src_port 27990 dst_port 44796 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11338 flower src_mac 02:d4:8b:80:80:d5 dst_mac 02:04:8a:30:5f:2c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11339 flower src_mac 02:7f:06:f7:81:fa dst_mac 02:ce:2c:ef:64:8a vlan_id 3374 vlan_ethtype ipv4 src_ip 61.46.79.98 dst_ip 94.66.164.182 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11340 flower src_mac 02:97:03:3c:69:b9 dst_mac 02:fc:16:dc:51:b6 src_ip 125.69.243.22 dst_ip 105.106.184.121 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11341 flower src_mac 02:45:5f:c9:b7:2a dst_mac 02:bb:f9:19:4c:b2 vlan_id 39 vlan_ethtype ip src_ip 101.101.180.84 dst_ip 38.199.90.206 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11342 flower src_mac 02:bc:6a:45:47:4d dst_mac 02:00:2b:fd:55:6b src_ip 47.4.193.42 dst_ip 63.47.65.28 action trap && tc filter add dev swp33 ingress protocol ip pref 11343 flower src_mac 02:c8:0c:44:e6:37 dst_mac 02:24:f1:c7:a3:97 src_ip 63.52.126.247 dst_ip 42.195.210.249 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11344 flower src_mac 02:e6:cd:1f:7f:cb dst_mac 02:f3:c2:61:f6:74 src_ip 119.227.44.98 dst_ip 20.32.67.97 ip_proto tcp src_port 16185 dst_port 10823 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11345 flower src_mac 02:cb:f8:ec:48:89 dst_mac 02:33:45:86:9d:c3 vlan_id 3144 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11346 flower src_mac 02:0f:bd:19:c9:29 dst_mac 02:d8:24:a1:3a:89 vlan_id 941 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11347 flower src_mac 02:8d:bd:c8:d8:f6 dst_mac 02:db:ce:04:56:a3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11348 flower src_mac 02:89:a9:71:5d:3f dst_mac 02:0b:8d:92:64:98 vlan_id 1941 vlan_ethtype ipv4 src_ip 56.124.182.204 dst_ip 34.76.31.101 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11349 flower src_mac 02:90:5f:9f:70:be dst_mac 02:97:2c:ee:09:ba vlan_id 30 vlan_ethtype ip src_ip 31.154.24.153 dst_ip 80.252.244.16 ip_proto tcp src_port 41819 dst_port 8154 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11350 flower src_mac 02:5f:f5:b1:61:27 dst_mac 02:8d:5d:76:dd:2a vlan_id 2361 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 11351 flower src_mac 02:de:b4:6e:bd:bd dst_mac 02:57:ac:f1:10:a3 src_ip 75.243.149.168 dst_ip 119.210.112.174 ip_proto udp src_port 60390 dst_port 11936 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11352 flower src_mac 02:0f:98:3e:ce:23 dst_mac 02:03:50:a3:b0:f9 vlan_id 3358 vlan_ethtype ip src_ip 92.17.226.43 dst_ip 70.153.116.216 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:b0:1d:66:6f:f1 dst_mac 02:86:7a:1d:48:c1 vlan_id 1438 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11354 flower src_mac 02:78:c1:aa:f9:b1 dst_mac 02:db:80:09:76:20 vlan_id 1059 vlan_ethtype ip src_ip 88.126.19.186 dst_ip 24.143.232.234 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11355 flower src_mac 02:a2:22:fd:27:78 dst_mac 02:e2:65:d0:4b:e2 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11356 flower src_mac 02:5b:f9:52:e0:a1 dst_mac 02:08:f9:d1:86:54 vlan_id 2750 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:52:ac:5f:ef:e9 dst_mac 02:0f:e8:59:f8:43 vlan_id 3852 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11358 flower src_mac 02:89:81:d7:fe:34 dst_mac 02:75:20:63:e0:64 vlan_id 1658 vlan_ethtype ipv4 src_ip 104.22.40.201 dst_ip 44.15.215.214 ip_proto udp src_port 34301 dst_port 24073 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:79:f5:f2:ee:d8 dst_mac 02:50:28:11:c7:4d vlan_id 1252 vlan_ethtype ip src_ip 84.100.64.207 dst_ip 20.85.142.27 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11360 flower src_mac 02:e7:02:ad:9c:19 dst_mac 02:45:f2:33:cb:9e vlan_id 3735 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11361 flower src_mac 02:6c:9d:5c:83:fe dst_mac 02:eb:4c:28:48:bc vlan_id 2295 vlan_ethtype ip src_ip 124.61.54.21 dst_ip 42.27.178.223 ip_proto tcp src_port 51194 dst_port 43015 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11362 flower src_mac 02:31:65:83:4f:21 dst_mac 02:eb:3a:12:d8:03 src_ip 58.85.133.122 dst_ip 73.1.255.76 ip_proto icmp code 22 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11363 flower src_mac 02:39:16:00:8c:40 dst_mac 02:ae:30:35:72:7a vlan_id 2783 vlan_ethtype ip src_ip 106.238.68.9 dst_ip 78.133.118.147 action drop && tc filter add dev swp33 ingress protocol ip pref 11364 flower src_mac 02:01:b0:99:4a:b4 dst_mac 02:3e:10:56:85:52 src_ip 52.108.42.238 dst_ip 59.4.246.100 ip_proto tcp src_port 62426 dst_port 5714 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11365 flower src_mac 02:3a:c0:15:a7:28 dst_mac 02:3f:1a:2b:0d:b9 vlan_id 2738 vlan_ethtype ipv4 src_ip 44.96.178.185 dst_ip 115.21.161.217 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11366 flower src_mac 02:fa:b5:83:36:af dst_mac 02:fc:eb:75:b1:cf vlan_id 1804 vlan_ethtype 0x0800 src_ip 17.125.53.215 dst_ip 18.80.73.79 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11367 flower src_mac 02:4f:56:1a:04:cb dst_mac 02:72:a3:37:c7:0c action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11368 flower src_mac 02:0c:e8:bd:a0:5b dst_mac 02:4d:e6:a0:c8:39 vlan_id 296 vlan_ethtype ip src_ip 23.37.85.155 dst_ip 22.191.16.55 ip_proto tcp src_port 19866 dst_port 8592 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:5b:91:70:ab:63 dst_mac 02:7b:4a:5d:9e:8d vlan_id 68 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:a1:ba:5a:4a:29 dst_mac 02:41:dd:af:fd:db vlan_id 2260 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11371 flower src_mac 02:4b:00:3f:18:2a dst_mac 02:e9:79:15:d6:e2 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11372 flower src_mac 02:e2:7f:4d:e0:dc dst_mac 02:00:14:97:e3:d8 vlan_id 2650 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11373 flower src_mac 02:56:b8:98:d1:bd dst_mac 02:6c:f3:3d:b7:c5 src_ip 54.83.19.10 dst_ip 125.100.93.192 ip_proto tcp src_port 56539 dst_port 8212 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11374 flower src_mac 02:16:a3:ac:ad:69 dst_mac 02:d1:7b:77:3b:ab src_ip 77.11.201.26 dst_ip 39.242.53.44 ip_proto icmp code 126 type 14 action pass && tc filter add dev swp33 ingress protocol ip pref 11375 flower src_mac 02:c4:d9:8f:d2:a5 dst_mac 02:64:56:60:67:b8 src_ip 110.198.211.36 dst_ip 46.222.143.195 ip_proto tcp src_port 13678 dst_port 3602 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11376 flower src_mac 02:70:ff:e0:6a:9f dst_mac 02:06:34:91:2b:ac vlan_id 4005 vlan_ethtype 0x0800 src_ip 48.152.198.77 dst_ip 90.139.130.213 ip_proto tcp src_port 27489 dst_port 60463 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:f6:35:d4:4b:13 dst_mac 02:e8:e3:a8:2a:2c vlan_id 3368 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11378 flower src_mac 02:13:00:cc:67:65 dst_mac 02:60:64:f6:a7:95 src_ip 54.30.205.196 dst_ip 95.30.190.18 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11379 flower src_mac 02:d0:6d:5f:71:9b dst_mac 02:cb:d1:b6:6b:b6 vlan_id 2930 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11380 flower src_mac 02:80:3e:01:28:4f dst_mac 02:ae:69:4a:39:5a src_ip 28.98.34.82 dst_ip 22.153.241.123 ip_proto icmp code 0 type 13 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11381 flower src_mac 02:9f:fd:8f:bf:96 dst_mac 02:5e:3c:5e:7e:06 vlan_id 3068 vlan_ethtype ipv4 src_ip 26.165.191.153 dst_ip 97.67.21.136 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11382 flower src_mac 02:96:c9:68:a7:2c dst_mac 02:c9:c9:65:2e:e2 vlan_id 2382 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11383 flower src_mac 02:52:02:83:cf:09 dst_mac 02:c3:7c:76:44:e0 src_ip 39.98.232.18 dst_ip 70.189.188.8 ip_proto udp src_port 4949 dst_port 25417 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11384 flower src_mac 02:d6:b7:eb:07:3a dst_mac 02:a9:f3:b2:35:29 src_ip 102.153.78.230 dst_ip 85.35.20.234 ip_proto icmp code 164 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11385 flower src_mac 02:d7:f6:5b:16:e1 dst_mac 02:dc:2a:af:39:f3 vlan_id 2629 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11386 flower src_mac 02:d5:1a:a6:99:59 dst_mac 02:2c:e6:d5:a6:b3 src_ip 14.3.104.197 dst_ip 12.129.126.161 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11387 flower src_mac 02:18:0a:fd:c0:25 dst_mac 02:f0:4c:26:39:4b action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11388 flower src_mac 02:2f:33:fd:7b:9e dst_mac 02:3b:8c:3e:45:23 vlan_id 2187 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 11389 flower src_mac 02:b5:c2:40:bb:7d dst_mac 02:c5:35:94:45:8e src_ip 97.26.206.229 dst_ip 28.140.145.233 ip_proto icmp code 133 type 14 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11390 flower src_mac 02:71:2b:12:2e:1d dst_mac 02:29:f2:f3:74:63 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11391 flower src_mac 02:0c:1c:b1:64:0a dst_mac 02:66:e7:01:20:83 vlan_id 2118 vlan_ethtype 0x0800 src_ip 17.24.58.103 dst_ip 91.27.232.144 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11392 flower src_mac 02:4d:83:39:74:60 dst_mac 02:15:72:11:11:72 vlan_id 654 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11393 flower src_mac 02:11:69:e0:62:06 dst_mac 02:d3:c2:9e:a3:7f vlan_id 903 vlan_ethtype 0x0800 src_ip 45.49.110.132 dst_ip 112.52.216.145 ip_proto tcp src_port 29818 dst_port 27554 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:17:da:94:e2:20 dst_mac 02:33:fb:97:e8:b6 vlan_id 1025 vlan_ethtype ipv4 src_ip 47.179.197.201 dst_ip 106.225.91.156 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11395 flower src_mac 02:1f:7e:b2:e1:eb dst_mac 02:ef:78:aa:dc:d7 vlan_id 1111 vlan_ethtype 0x0800 src_ip 57.144.215.238 dst_ip 104.222.67.135 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11396 flower src_mac 02:44:d4:72:61:60 dst_mac 02:fb:78:41:84:4a vlan_id 2737 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11397 flower src_mac 02:45:74:f1:e0:50 dst_mac 02:8c:9e:b5:0d:3c vlan_id 2527 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11398 flower src_mac 02:0e:47:ba:40:23 dst_mac 02:09:b6:f7:24:a9 vlan_id 1886 vlan_ethtype ipv4 src_ip 36.226.70.249 dst_ip 110.106.78.217 ip_proto udp src_port 4022 dst_port 48471 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11399 flower src_mac 02:34:6e:ac:00:cd dst_mac 02:d2:fb:49:78:97 vlan_id 2530 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11400 flower src_mac 02:de:c0:b8:59:64 dst_mac 02:cf:e6:87:d9:b5 vlan_id 742 vlan_ethtype 0x0800 src_ip 120.253.124.194 dst_ip 106.156.32.138 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:ab:0a:83:47:9e dst_mac 02:82:55:6c:10:f8 vlan_id 3553 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:1b:9b:19:80:b7 dst_mac 02:46:1a:6b:3b:a3 vlan_id 856 vlan_ethtype ip src_ip 56.101.8.19 dst_ip 90.239.81.92 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11403 flower src_mac 02:17:3f:c7:62:4c dst_mac 02:22:74:18:94:65 src_ip 54.118.28.250 dst_ip 48.126.161.13 ip_proto udp src_port 40876 dst_port 45799 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11404 flower src_mac 02:d0:00:1e:f4:c1 dst_mac 02:0c:1b:0f:2b:9d vlan_id 50 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11405 flower src_mac 02:2c:34:88:7b:c9 dst_mac 02:95:65:e6:7e:77 vlan_id 2622 vlan_ethtype ip src_ip 41.151.88.41 dst_ip 79.65.98.134 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11406 flower src_mac 02:6d:c0:46:8e:cf dst_mac 02:41:88:0b:21:2d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11407 flower src_mac 02:ae:14:b5:93:2e dst_mac 02:df:09:00:5c:7d vlan_id 1641 vlan_ethtype ip src_ip 110.60.241.197 dst_ip 11.187.145.63 ip_proto tcp src_port 27677 dst_port 64746 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11408 flower src_mac 02:1d:ce:0c:f1:c3 dst_mac 02:dc:0a:c3:7c:6b vlan_id 1509 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11409 flower src_mac 02:9f:0a:98:e1:bd dst_mac 02:8a:bf:09:e0:5d src_ip 38.254.105.59 dst_ip 110.141.63.166 ip_proto udp src_port 42783 dst_port 47728 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11410 flower src_mac 02:05:07:7d:eb:d1 dst_mac 02:4e:a5:81:a8:66 vlan_id 213 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11411 flower src_mac 02:3d:f5:1a:35:a1 dst_mac 02:87:8c:5d:ae:fd src_ip 22.130.195.203 dst_ip 71.49.146.132 action pass && tc filter add dev swp33 ingress protocol ip pref 11412 flower src_mac 02:58:39:59:9c:cf dst_mac 02:bd:ca:b7:8f:01 src_ip 39.9.156.40 dst_ip 35.71.84.58 ip_proto icmp code 125 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11413 flower src_mac 02:28:2b:59:9e:ea dst_mac 02:8e:97:82:db:f6 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11414 flower src_mac 02:49:43:c3:47:a0 dst_mac 02:40:14:e8:1a:b3 src_ip 29.237.1.192 dst_ip 92.201.88.218 ip_proto tcp src_port 58888 dst_port 60884 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11415 flower src_mac 02:5a:57:9a:41:3f dst_mac 02:9f:a7:47:f8:dd action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11416 flower src_mac 02:20:cf:26:e5:99 dst_mac 02:35:4f:81:ce:11 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11417 flower src_mac 02:d6:d8:67:13:a0 dst_mac 02:84:e8:81:45:80 src_ip 67.161.49.245 dst_ip 78.57.182.215 ip_proto icmp code 114 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11418 flower src_mac 02:f5:ac:98:be:7d dst_mac 02:23:df:d6:ec:a0 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11419 flower src_mac 02:c5:ea:d7:f8:d0 dst_mac 02:83:42:5a:be:a5 vlan_id 2133 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11420 flower src_mac 02:48:3a:d6:64:f5 dst_mac 02:71:ad:44:73:de vlan_id 3953 vlan_ethtype ip src_ip 80.130.178.27 dst_ip 50.136.181.61 ip_proto tcp src_port 56756 dst_port 43909 action trap && tc filter add dev swp33 ingress protocol ip pref 11421 flower src_mac 02:df:14:81:3f:44 dst_mac 02:f3:1f:21:e3:99 src_ip 50.211.171.119 dst_ip 108.92.220.239 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11422 flower src_mac 02:f3:c9:54:80:70 dst_mac 02:71:23:bc:2a:d6 src_ip 22.138.137.130 dst_ip 126.74.113.67 ip_proto tcp src_port 10660 dst_port 52847 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11423 flower src_mac 02:ec:80:96:8b:80 dst_mac 02:d2:cb:f7:6e:b7 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11424 flower src_mac 02:49:67:c5:43:2f dst_mac 02:60:13:51:da:9b vlan_id 3766 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11425 flower src_mac 02:6e:bd:75:fd:07 dst_mac 02:f7:8c:12:eb:b6 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11426 flower src_mac 02:db:d1:88:f2:3c dst_mac 02:e1:9f:de:72:fa action pass && tc filter add dev swp33 ingress protocol ip pref 11427 flower src_mac 02:3c:58:96:3b:d1 dst_mac 02:f7:55:b4:5e:2f src_ip 42.161.97.21 dst_ip 122.213.138.172 ip_proto icmp code 236 type 5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11428 flower src_mac 02:ec:b7:cf:88:d3 dst_mac 02:3b:7d:15:79:56 vlan_id 2621 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11429 flower src_mac 02:90:df:ce:db:21 dst_mac 02:df:28:79:88:06 vlan_id 1231 vlan_ethtype ip src_ip 67.57.115.177 dst_ip 78.3.47.96 ip_proto udp src_port 56955 dst_port 32645 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11430 flower src_mac 02:7c:89:55:fd:69 dst_mac 02:81:ff:ec:b0:ae action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11431 flower src_mac 02:e5:44:46:ee:29 dst_mac 02:7b:ec:67:e6:3e action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11432 flower src_mac 02:40:e1:2c:b5:67 dst_mac 02:a1:07:b0:17:7d vlan_id 3113 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11433 flower src_mac 02:a2:f3:1f:a8:05 dst_mac 02:f9:fe:14:69:1f action trap && tc filter add dev swp33 ingress protocol ip pref 11434 flower src_mac 02:ac:15:31:02:84 dst_mac 02:38:ed:23:53:44 src_ip 53.202.230.56 dst_ip 24.175.142.78 ip_proto icmp code 250 type 8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11435 flower src_mac 02:7b:b2:e6:f2:de dst_mac 02:af:98:ec:d1:cb vlan_id 2216 vlan_ethtype 0x0800 src_ip 73.120.188.152 dst_ip 49.71.96.29 ip_proto udp src_port 51874 dst_port 43468 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11436 flower src_mac 02:19:72:18:9a:dd dst_mac 02:90:0c:fd:36:bb vlan_id 267 vlan_ethtype ip src_ip 66.215.153.57 dst_ip 86.84.109.129 ip_proto tcp src_port 59548 dst_port 43327 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11437 flower src_mac 02:c4:7b:6f:39:1f dst_mac 02:0b:80:b5:3e:da vlan_id 1101 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11438 flower src_mac 02:e0:7e:b9:8b:d0 dst_mac 02:94:12:f4:bb:7e src_ip 64.29.96.101 dst_ip 94.57.30.245 ip_proto udp src_port 2143 dst_port 8502 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11439 flower src_mac 02:27:3c:bf:50:22 dst_mac 02:9f:fe:09:64:8e vlan_id 1251 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11440 flower src_mac 02:ad:db:2f:2f:df dst_mac 02:cf:db:62:0c:1b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11441 flower src_mac 02:f9:e9:62:e7:86 dst_mac 02:20:de:94:60:01 src_ip 42.213.79.242 dst_ip 61.22.245.173 ip_proto udp src_port 3215 dst_port 2316 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11442 flower src_mac 02:36:a2:35:3b:a3 dst_mac 02:13:81:6b:d6:15 vlan_id 1347 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:58:42:eb:38:9b dst_mac 02:5e:59:11:58:aa vlan_id 2494 vlan_ethtype 0x0800 src_ip 100.5.184.13 dst_ip 119.211.21.25 ip_proto udp src_port 11149 dst_port 30803 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11444 flower src_mac 02:72:26:1d:12:3c dst_mac 02:e2:1c:95:f1:bc vlan_id 1131 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11445 flower src_mac 02:27:5c:9f:4d:3c dst_mac 02:9c:57:9a:18:0a vlan_id 2587 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11446 flower src_mac 02:44:c5:a2:f0:03 dst_mac 02:b8:34:e7:94:d9 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11447 flower src_mac 02:88:59:3b:ca:27 dst_mac 02:79:ed:e8:60:8a src_ip 87.193.99.228 dst_ip 34.6.94.36 ip_proto tcp src_port 36061 dst_port 60735 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11448 flower src_mac 02:a2:7c:ee:ca:24 dst_mac 02:0d:e8:5c:77:42 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11449 flower src_mac 02:17:b9:c9:c9:42 dst_mac 02:d7:fc:5f:b1:eb src_ip 58.123.15.8 dst_ip 17.172.151.147 ip_proto tcp src_port 65000 dst_port 37144 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11450 flower src_mac 02:93:a3:6f:0b:65 dst_mac 02:40:c4:6a:e2:c1 vlan_id 795 vlan_ethtype ip src_ip 70.183.43.243 dst_ip 90.133.195.115 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11451 flower src_mac 02:da:b1:b2:a7:92 dst_mac 02:cd:01:87:cb:9a vlan_id 3767 vlan_ethtype ipv4 src_ip 21.231.31.90 dst_ip 61.125.74.8 ip_proto udp src_port 20286 dst_port 8464 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11452 flower src_mac 02:e1:02:c3:1b:5e dst_mac 02:34:54:b0:4c:50 vlan_id 2927 vlan_ethtype ip src_ip 58.88.203.113 dst_ip 53.108.164.193 ip_proto tcp src_port 33864 dst_port 30312 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11453 flower src_mac 02:9d:ce:a3:6c:98 dst_mac 02:73:d0:b3:87:db action trap && tc filter add dev swp33 ingress protocol ip pref 11454 flower src_mac 02:4e:82:b5:af:2c dst_mac 02:89:74:76:28:7e src_ip 100.215.18.11 dst_ip 44.185.107.135 ip_proto udp src_port 8001 dst_port 51197 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11455 flower src_mac 02:a4:95:2d:f1:b0 dst_mac 02:19:cc:3a:56:6b vlan_id 2026 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11456 flower src_mac 02:4f:cf:ff:20:cb dst_mac 02:79:cb:77:d7:a8 vlan_id 3097 vlan_ethtype ip src_ip 43.247.206.222 dst_ip 50.13.84.220 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:84:5f:73:71:df dst_mac 02:b2:ec:0b:e1:1a vlan_id 3126 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11458 flower src_mac 02:65:cb:55:c5:95 dst_mac 02:9a:1b:5e:8a:64 vlan_id 1543 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11459 flower src_mac 02:f4:86:7e:da:45 dst_mac 02:10:09:43:1b:05 vlan_id 2479 vlan_ethtype ip src_ip 31.136.224.178 dst_ip 50.229.84.2 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11460 flower src_mac 02:8d:5d:d9:20:fb dst_mac 02:26:f2:53:6a:d6 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11461 flower src_mac 02:45:d3:9b:af:29 dst_mac 02:92:7e:09:7f:38 src_ip 13.74.163.181 dst_ip 64.193.163.235 ip_proto tcp src_port 32964 dst_port 45906 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11462 flower src_mac 02:47:a3:07:ea:48 dst_mac 02:b6:6a:bd:6c:1e action drop && tc filter add dev swp33 ingress protocol ip pref 11463 flower src_mac 02:b2:5b:ef:08:c1 dst_mac 02:e1:53:3c:fd:98 src_ip 59.173.243.57 dst_ip 17.234.138.206 ip_proto tcp src_port 51067 dst_port 23922 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11464 flower src_mac 02:91:23:3c:d2:fb dst_mac 02:f4:8b:fb:ef:36 vlan_id 2860 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11465 flower src_mac 02:19:b2:66:3d:f3 dst_mac 02:4c:d3:6b:7b:25 vlan_id 3759 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11466 flower src_mac 02:cd:f9:d7:aa:34 dst_mac 02:23:d6:c4:41:a5 src_ip 79.51.107.41 dst_ip 14.87.149.250 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:9f:06:c2:04:cf dst_mac 02:7d:ad:c1:c2:7c vlan_id 2556 vlan_ethtype 0x0800 src_ip 85.181.210.74 dst_ip 84.169.88.54 ip_proto udp src_port 65279 dst_port 58008 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11468 flower src_mac 02:71:bf:e1:79:79 dst_mac 02:b8:7d:9c:20:b0 vlan_id 1540 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11469 flower src_mac 02:41:b3:6d:49:11 dst_mac 02:82:f0:c6:60:b2 vlan_id 3944 vlan_ethtype ip src_ip 47.173.105.66 dst_ip 53.123.247.137 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11470 flower src_mac 02:45:32:ca:1b:16 dst_mac 02:9c:ad:a6:7c:62 vlan_id 2502 vlan_ethtype ipv4 src_ip 80.242.161.199 dst_ip 13.223.42.110 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11471 flower src_mac 02:dc:53:27:7e:bc dst_mac 02:5b:f2:ed:65:46 vlan_id 3543 vlan_ethtype 0x0800 src_ip 62.225.119.76 dst_ip 99.172.252.16 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:bc:da:92:fb:f0 dst_mac 02:f0:b4:c0:f1:92 vlan_id 3449 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11473 flower src_mac 02:cd:ab:a6:81:84 dst_mac 02:82:b2:91:75:ab action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11474 flower src_mac 02:1c:65:84:a1:37 dst_mac 02:44:08:35:f9:f3 vlan_id 1123 vlan_ethtype ipv4 src_ip 78.3.50.79 dst_ip 111.181.173.171 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11475 flower src_mac 02:a9:ac:40:d3:42 dst_mac 02:9f:bb:5d:6d:35 vlan_id 2017 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11476 flower src_mac 02:ed:a9:01:4b:72 dst_mac 02:31:69:58:3e:6e src_ip 40.58.31.186 dst_ip 110.225.8.52 ip_proto icmp code 90 type 14 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11477 flower src_mac 02:9f:99:4b:c7:76 dst_mac 02:11:8b:f7:42:e1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11478 flower src_mac 02:76:53:3e:6c:8b dst_mac 02:48:66:91:45:2b vlan_id 3297 vlan_ethtype 0x0800 src_ip 122.165.147.207 dst_ip 117.82.208.226 ip_proto tcp src_port 64251 dst_port 64997 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11479 flower src_mac 02:6e:d9:06:ce:ce dst_mac 02:50:7b:0e:ea:c9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11480 flower src_mac 02:b7:b9:11:6a:42 dst_mac 02:87:dd:a6:5a:41 src_ip 59.185.202.146 dst_ip 47.4.134.193 ip_proto icmp code 9 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11481 flower src_mac 02:83:83:a0:66:79 dst_mac 02:ce:9f:f5:cb:ef action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11482 flower src_mac 02:54:dd:ec:32:9e dst_mac 02:81:9d:6d:53:9c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:03:ba:fe:92:a0 dst_mac 02:50:b0:fb:35:83 vlan_id 377 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11484 flower src_mac 02:ef:6b:53:5c:dc dst_mac 02:76:07:c3:fe:3f vlan_id 299 vlan_ethtype ip src_ip 107.29.78.76 dst_ip 125.169.192.186 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11485 flower src_mac 02:ab:00:22:65:e8 dst_mac 02:08:8c:e5:d1:76 vlan_id 412 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11486 flower src_mac 02:df:01:42:b2:77 dst_mac 02:d6:1b:9f:c2:11 vlan_id 3725 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11487 flower src_mac 02:c7:0f:e2:3d:e6 dst_mac 02:67:b1:1a:b5:6f vlan_id 2427 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11488 flower src_mac 02:5d:1f:06:7b:6e dst_mac 02:85:7a:3d:22:83 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:3e:a5:2f:e2:e7 dst_mac 02:31:60:e4:fe:38 vlan_id 3040 vlan_ethtype 0x0800 src_ip 86.62.239.186 dst_ip 74.175.49.99 ip_proto udp src_port 1186 dst_port 1201 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11490 flower src_mac 02:a3:a1:bc:0d:ab dst_mac 02:fe:d6:bb:53:f7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11491 flower src_mac 02:97:d6:be:ca:c5 dst_mac 02:b5:1c:5e:c7:64 vlan_id 1513 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11492 flower src_mac 02:47:fd:84:71:a5 dst_mac 02:80:1f:33:7f:65 vlan_id 1177 vlan_ethtype 0x0800 src_ip 57.242.105.174 dst_ip 94.62.50.77 ip_proto tcp src_port 27031 dst_port 19382 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11493 flower src_mac 02:21:e0:5d:77:83 dst_mac 02:a2:1f:da:7e:89 vlan_id 2930 vlan_ethtype 0x0800 src_ip 79.112.49.21 dst_ip 17.107.160.115 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:be:0a:aa:24:60 dst_mac 02:9a:05:10:a0:ff vlan_id 614 vlan_ethtype ipv4 src_ip 107.103.94.129 dst_ip 17.19.20.20 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:02:33:90:c9:9b dst_mac 02:1b:3a:d5:5a:f7 vlan_id 1631 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:d4:0b:b3:cc:67 dst_mac 02:85:08:bd:42:95 vlan_id 3740 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11497 flower src_mac 02:66:0f:91:43:e9 dst_mac 02:de:03:20:9f:31 src_ip 14.195.238.170 dst_ip 99.124.151.116 ip_proto icmp code 163 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11498 flower src_mac 02:05:fe:61:cc:03 dst_mac 02:68:9a:58:6c:6a vlan_id 4057 vlan_ethtype 0x0800 src_ip 119.88.103.3 dst_ip 52.253.110.118 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11499 flower src_mac 02:2a:b6:93:f2:7b dst_mac 02:81:fb:8a:f1:c2 vlan_id 1070 vlan_ethtype ip src_ip 28.91.90.173 dst_ip 67.29.117.11 ip_proto udp src_port 59599 dst_port 49973 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11500 flower src_mac 02:91:1f:7d:7b:6f dst_mac 02:3d:05:c5:b9:e9 vlan_id 1590 vlan_ethtype 0x0800 src_ip 44.145.36.197 dst_ip 16.128.22.49 action pass && tc filter add dev swp33 ingress protocol ip pref 11501 flower src_mac 02:fe:a4:04:b8:91 dst_mac 02:08:49:51:a2:d2 src_ip 52.139.43.20 dst_ip 121.170.60.127 ip_proto udp src_port 46978 dst_port 12460 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11502 flower src_mac 02:3b:9c:5a:b1:d0 dst_mac 02:bd:16:1f:e7:9c vlan_id 3287 vlan_ethtype ipv4 src_ip 119.29.13.163 dst_ip 124.126.194.236 ip_proto udp src_port 31752 dst_port 65387 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11503 flower src_mac 02:ed:7b:b6:67:e6 dst_mac 02:2b:7f:15:50:26 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11504 flower src_mac 02:20:7a:e4:09:17 dst_mac 02:13:00:19:92:83 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11505 flower src_mac 02:9b:c9:10:07:4e dst_mac 02:e7:96:0f:f9:5a action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11506 flower src_mac 02:56:db:e9:82:21 dst_mac 02:80:75:b9:ce:6a vlan_id 2050 vlan_ethtype ip src_ip 122.191.109.51 dst_ip 111.183.31.213 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11507 flower src_mac 02:0a:1e:b9:17:e7 dst_mac 02:45:b2:1e:20:92 vlan_id 469 vlan_ethtype ip src_ip 95.181.122.141 dst_ip 92.181.20.23 ip_proto tcp src_port 36366 dst_port 13250 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11508 flower src_mac 02:d9:cd:4a:0c:1f dst_mac 02:4b:b6:da:d7:2b vlan_id 2663 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11509 flower src_mac 02:10:1f:6c:ec:d2 dst_mac 02:7f:be:19:06:f4 src_ip 79.26.227.6 dst_ip 95.113.173.17 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11510 flower src_mac 02:d5:b6:ed:43:34 dst_mac 02:fe:5d:31:f0:7e vlan_id 2404 vlan_ethtype ipv4 src_ip 34.192.39.9 dst_ip 14.30.220.137 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11511 flower src_mac 02:30:58:ab:d7:77 dst_mac 02:55:ac:8a:5f:d6 src_ip 110.91.63.128 dst_ip 96.137.212.54 ip_proto tcp src_port 39755 dst_port 11582 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11512 flower src_mac 02:54:dd:2b:eb:58 dst_mac 02:14:a1:1c:d7:3c vlan_id 3645 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11513 flower src_mac 02:89:8d:c4:ea:81 dst_mac 02:eb:02:e7:8e:e7 src_ip 42.67.196.152 dst_ip 120.124.121.152 ip_proto icmp code 141 type 8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:7c:7f:e4:f7:ed dst_mac 02:9c:6f:72:a4:cc vlan_id 1458 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11515 flower src_mac 02:72:24:32:1d:88 dst_mac 02:db:f9:2c:cb:96 src_ip 45.203.1.232 dst_ip 23.77.147.108 ip_proto tcp src_port 2135 dst_port 8004 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11516 flower src_mac 02:e7:ad:34:00:96 dst_mac 02:dc:84:fb:45:df vlan_id 1899 vlan_ethtype 0x0800 src_ip 37.161.32.234 dst_ip 122.69.175.100 ip_proto tcp src_port 10450 dst_port 31985 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11517 flower src_mac 02:35:1a:8d:90:fc dst_mac 02:a5:43:08:7a:71 vlan_id 39 vlan_ethtype 0x0800 src_ip 88.176.146.140 dst_ip 79.129.48.216 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11518 flower src_mac 02:aa:90:a9:43:89 dst_mac 02:5d:34:22:fd:4b vlan_id 3638 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:f6:4f:f4:59:9b dst_mac 02:bb:8b:ef:5a:f7 vlan_id 3813 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11520 flower src_mac 02:48:d9:a5:b4:8b dst_mac 02:2e:9d:d0:79:c1 src_ip 101.123.48.211 dst_ip 116.126.43.237 ip_proto tcp src_port 12958 dst_port 26297 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11521 flower src_mac 02:31:a0:a1:2c:7a dst_mac 02:53:97:29:f4:e9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11522 flower src_mac 02:5d:bb:70:57:6f dst_mac 02:58:13:d6:34:84 vlan_id 1881 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11523 flower src_mac 02:d8:a6:04:b7:e8 dst_mac 02:e4:cc:a4:3d:e8 src_ip 66.147.156.34 dst_ip 40.53.242.166 ip_proto tcp src_port 15818 dst_port 13628 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11524 flower src_mac 02:ee:0c:05:4b:76 dst_mac 02:bd:53:da:df:d1 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11525 flower src_mac 02:35:8d:a6:7d:62 dst_mac 02:0a:aa:0e:2d:06 src_ip 104.20.4.200 dst_ip 36.171.144.28 ip_proto udp src_port 44812 dst_port 9652 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11526 flower src_mac 02:01:a5:e7:ee:01 dst_mac 02:ea:a6:37:3d:14 vlan_id 2862 vlan_ethtype ip src_ip 103.133.128.230 dst_ip 93.34.86.69 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11527 flower src_mac 02:d9:e1:f6:e7:34 dst_mac 02:c1:b3:ed:2e:8d src_ip 78.197.63.34 dst_ip 23.97.59.120 ip_proto icmp code 223 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11528 flower src_mac 02:e8:b0:d1:d8:3e dst_mac 02:59:c4:29:2a:4b vlan_id 1176 vlan_ethtype ip src_ip 107.34.211.140 dst_ip 82.78.190.50 ip_proto tcp src_port 35798 dst_port 14774 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11529 flower src_mac 02:b9:d1:9e:ec:c4 dst_mac 02:3f:14:1c:f9:e7 src_ip 106.44.235.32 dst_ip 22.250.49.108 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11530 flower src_mac 02:ac:cc:d4:d3:f0 dst_mac 02:52:3c:8d:a4:c8 vlan_id 1224 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11531 flower src_mac 02:5f:01:47:04:2a dst_mac 02:ee:ea:31:ca:23 vlan_id 4075 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11532 flower src_mac 02:69:ab:6c:f6:34 dst_mac 02:60:e4:d1:a3:05 vlan_id 2827 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11533 flower src_mac 02:93:08:75:1e:ca dst_mac 02:58:74:9f:bd:be src_ip 85.170.119.183 dst_ip 45.148.189.164 ip_proto udp src_port 62158 dst_port 33027 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11534 flower src_mac 02:36:5a:bc:33:42 dst_mac 02:07:9f:58:61:d2 vlan_id 354 vlan_ethtype 0x0800 src_ip 70.90.248.35 dst_ip 66.235.85.218 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11535 flower src_mac 02:ba:b8:4f:2a:64 dst_mac 02:a8:bc:c7:3f:c9 vlan_id 1972 vlan_ethtype ip src_ip 33.112.133.69 dst_ip 24.150.28.9 ip_proto tcp src_port 28947 dst_port 48722 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG infra2:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG infra2:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT infrastructure 2] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic | 169.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1404' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.3, port 56396 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:40:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 123.3.251.106 dst_ip 107.67.82.218 ip_proto udp src_port 23349 dst_port 46690 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 123.3.251.106 dst_ip 107.67.82.218 ip_proto udp src_port 23349 dst_port 46690 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"107.67.82.218","src_ip":"123.3.251.106","dst_port":46690,"src_port":23349},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cc310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 99811 Rx 99811 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 Tx Frames: 99811, Rx Frames: 99811, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cff10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 86464 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 Tx Frames: 86464, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 123.3.251.106 dst_ip 107.67.82.218 ip_proto udp src_port 23349 dst_port 46690 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 49000 flower skip_sw src_ip 123.3.251.106 dst_ip 107.67.82.218 ip_proto udp src_port 23349 dst_port 46690 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cc1f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 89174 Rx 89174 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_107.67.82.218_src_ip_123.3.251.106_dst_port_46690_src_port_23349 Tx Frames: 89174, Rx Frames: 89174, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:43:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:43:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:43:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] | 189.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1473' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.3, port 46012 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:43:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2810 && bridge vlan add dev swp34 vid 2810 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp33 vid 2810 && bridge vlan add dev swp34 vid 2810 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:55:5e:bb:62:ec dst_mac 02:4d:c5:76:c0:62 vlan_id 2810 vlan_ethtype ip src_ip 59.171.112.140 dst_ip 96.227.251.3 ip_proto udp src_port 18807 dst_port 3798 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:55:5e:bb:62:ec dst_mac 02:4d:c5:76:c0:62 vlan_id 2810 vlan_ethtype ip src_ip 59.171.112.140 dst_ip 96.227.251.3 ip_proto udp src_port 18807 dst_port 3798 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2810,"vlan_ethtype":"ip","dst_mac":"02:4d:c5:76:c0:62","src_mac":"02:55:5e:bb:62:ec","eth_type":"ipv4","ip_proto":"udp","dst_ip":"96.227.251.3","src_ip":"59.171.112.140","dst_port":3798,"src_port":18807},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2810, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2810, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb720d30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807 SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcMac SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstMac SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_vlanID SIP-DIP N/A Tx 60234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcIp SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstIp SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcPort SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstPort SIP-DIP N/A Tx 60234 Rx 60234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807 Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcMac Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstMac Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_vlanID Tx Frames: 60234, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcIp Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstIp Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_srcPort Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2810_vlan_ethtype_ip_dst_mac_02:4d:c5:76:c0:62_src_mac_02:55:5e:bb:62:ec_eth_type_ipv4_ip_proto_udp_dst_ip_96.227.251.3_src_ip_59.171.112.140_dst_port_3798_src_port_18807_unmatch_dstPort Tx Frames: 60234, Rx Frames: 60234, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2810,"vlan_ethtype":"ip","dst_mac":"02:4d:c5:76:c0:62","src_mac":"02:55:5e:bb:62:ec","eth_type":"ipv4","ip_proto":"udp","dst_ip":"96.227.251.3","src_ip":"59.171.112.140","dst_port":3798,"src_port":18807},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":187,"stats":{"bytes":15419904,"packets":60234,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15419904,"hw_packets":60234,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60234, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60234, packets = 60234, expected = 60234, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60234, hw_packets = 60234, expected = 60234, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:46:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:46:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:46:28 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] | 185.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1542' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.3, port 48228 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:46:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1230 && bridge vlan add dev swp34 vid 1230 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp33 vid 1230 && bridge vlan add dev swp34 vid 1230 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:c5:76:56:7a:78 dst_mac 02:77:0b:41:8d:0d vlan_id 1230 vlan_ethtype ip src_ip 55.104.17.173 dst_ip 64.50.75.209 ip_proto udp src_port 46120 dst_port 49849 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:c5:76:56:7a:78 dst_mac 02:77:0b:41:8d:0d vlan_id 1230 vlan_ethtype ip src_ip 55.104.17.173 dst_ip 64.50.75.209 ip_proto udp src_port 46120 dst_port 49849 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1230,"vlan_ethtype":"ip","dst_mac":"02:77:0b:41:8d:0d","src_mac":"02:c5:76:56:7a:78","eth_type":"ipv4","ip_proto":"udp","dst_ip":"64.50.75.209","src_ip":"55.104.17.173","dst_port":49849,"src_port":46120},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1230, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1230, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7e11e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120 SIP-DIP N/A Tx 60447 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcMac SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstMac SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_vlanID SIP-DIP N/A Tx 60446 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcIp SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstIp SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcPort SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstPort SIP-DIP N/A Tx 60446 Rx 60446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120 Tx Frames: 60447, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcMac Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstMac Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_vlanID Tx Frames: 60446, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcIp Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstIp Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_srcPort Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1230_vlan_ethtype_ip_dst_mac_02:77:0b:41:8d:0d_src_mac_02:c5:76:56:7a:78_eth_type_ipv4_ip_proto_udp_dst_ip_64.50.75.209_src_ip_55.104.17.173_dst_port_49849_src_port_46120_unmatch_dstPort Tx Frames: 60446, Rx Frames: 60446, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1230,"vlan_ethtype":"ip","dst_mac":"02:77:0b:41:8d:0d","src_mac":"02:c5:76:56:7a:78","eth_type":"ipv4","ip_proto":"udp","dst_ip":"64.50.75.209","src_ip":"55.104.17.173","dst_port":49849,"src_port":46120},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":183,"stats":{"bytes":15474432,"packets":60447,"drops":60447,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15474432,"hw_packets":60447,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60447, drops = 60447, expected = 60447, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60447, packets = 60447, expected = 60447, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60447, hw_packets = 60447, expected = 60447, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:49:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:49:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:49:33 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] | 187.14 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1611' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.3, port 58558 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:49:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1149 && bridge vlan add dev swp34 vid 1149 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp33 vid 1149 && bridge vlan add dev swp34 vid 1149 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:fd:8f:23:56:93 dst_mac 02:b0:0f:75:2e:2b vlan_id 1149 vlan_ethtype ip src_ip 60.129.184.88 dst_ip 72.70.148.192 ip_proto udp src_port 1250 dst_port 45983 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:fd:8f:23:56:93 dst_mac 02:b0:0f:75:2e:2b vlan_id 1149 vlan_ethtype ip src_ip 60.129.184.88 dst_ip 72.70.148.192 ip_proto udp src_port 1250 dst_port 45983 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1149,"vlan_ethtype":"ip","dst_mac":"02:b0:0f:75:2e:2b","src_mac":"02:fd:8f:23:56:93","eth_type":"ipv4","ip_proto":"udp","dst_ip":"72.70.148.192","src_ip":"60.129.184.88","dst_port":45983,"src_port":1250},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1149, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1149, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7e1d50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250 SIP-DIP N/A Tx 60455 Rx 24272 Loss 59.851 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcMac SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstMac SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_vlanID SIP-DIP N/A Tx 60455 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcIp SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstIp SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcPort SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstPort SIP-DIP N/A Tx 60455 Rx 60455 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250 Tx Frames: 60455, Rx Frames: 24272, loss = 59.851, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcMac Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstMac Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_vlanID Tx Frames: 60455, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcIp Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstIp Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_srcPort Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1149_vlan_ethtype_ip_dst_mac_02:b0:0f:75:2e:2b_src_mac_02:fd:8f:23:56:93_eth_type_ipv4_ip_proto_udp_dst_ip_72.70.148.192_src_ip_60.129.184.88_dst_port_45983_src_port_1250_unmatch_dstPort Tx Frames: 60455, Rx Frames: 60455, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1149,"vlan_ethtype":"ip","dst_mac":"02:b0:0f:75:2e:2b","src_mac":"02:fd:8f:23:56:93","eth_type":"ipv4","ip_proto":"udp","dst_ip":"72.70.148.192","src_ip":"60.129.184.88","dst_port":45983,"src_port":1250},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":185,"stats":{"bytes":15476480,"packets":60455,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15476480,"hw_packets":60455,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60455, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60455, packets = 60455, expected = 60455, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60455, hw_packets = 60455, expected = 60455, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:52:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:52:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:52:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] | 180.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1680' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.3, port 37052 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:52:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ea:f7:67:80:65 dst_mac 02:58:38:1a:7b:5a src_ip 102.92.208.55 dst_ip 61.80.86.75 ip_proto udp src_port 7049 dst_port 59954 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ea:f7:67:80:65 dst_mac 02:58:38:1a:7b:5a src_ip 102.92.208.55 dst_ip 61.80.86.75 ip_proto udp src_port 7049 dst_port 59954 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:58:38:1a:7b:5a","src_mac":"02:ea:f7:67:80:65","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.80.86.75","src_ip":"102.92.208.55","dst_port":59954,"src_port":7049},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782da0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049 SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcMac SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstMac SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcIp SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstIp SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcPort SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstPort SIP-DIP N/A Tx 60308 Rx 60308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049 Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcMac Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstMac Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcIp Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstIp Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_srcPort Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:58:38:1a:7b:5a_src_mac_02:ea:f7:67:80:65_eth_type_ipv4_ip_proto_udp_dst_ip_61.80.86.75_src_ip_102.92.208.55_dst_port_59954_src_port_7049_unmatch_dstPort Tx Frames: 60308, Rx Frames: 60308, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:58:38:1a:7b:5a","src_mac":"02:ea:f7:67:80:65","eth_type":"ipv4","ip_proto":"udp","dst_ip":"61.80.86.75","src_ip":"102.92.208.55","dst_port":59954,"src_port":7049},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":15438848,"packets":60308,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15438848,"hw_packets":60308,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60308, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60308, packets = 60308, expected = 60308, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60308, hw_packets = 60308, expected = 60308, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:55:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:55:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:55:41 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] | 175.32 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1747' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.3, port 48262 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:55:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a9:19:80:06:7b dst_mac 02:79:50:51:38:41 src_ip 103.59.184.143 dst_ip 113.76.214.175 ip_proto udp src_port 39624 dst_port 54310 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a9:19:80:06:7b dst_mac 02:79:50:51:38:41 src_ip 103.59.184.143 dst_ip 113.76.214.175 ip_proto udp src_port 39624 dst_port 54310 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:79:50:51:38:41","src_mac":"02:a9:19:80:06:7b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.76.214.175","src_ip":"103.59.184.143","dst_port":54310,"src_port":39624},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7e29e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624 SIP-DIP N/A Tx 60372 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcMac SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstMac SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcIp SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstIp SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcPort SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstPort SIP-DIP N/A Tx 60372 Rx 60372 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624 Tx Frames: 60372, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcMac Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstMac Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcIp Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstIp Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_srcPort Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:79:50:51:38:41_src_mac_02:a9:19:80:06:7b_eth_type_ipv4_ip_proto_udp_dst_ip_113.76.214.175_src_ip_103.59.184.143_dst_port_54310_src_port_39624_unmatch_dstPort Tx Frames: 60372, Rx Frames: 60372, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:79:50:51:38:41","src_mac":"02:a9:19:80:06:7b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"113.76.214.175","src_ip":"103.59.184.143","dst_port":54310,"src_port":39624},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":173,"stats":{"bytes":15455232,"packets":60372,"drops":60372,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15455232,"hw_packets":60372,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60372, drops = 60372, expected = 60372, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60372, packets = 60372, expected = 60372, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60372, hw_packets = 60372, expected = 60372, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:58:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:58:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:58:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] | 180.93 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1814' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.3, port 53962 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 16:58:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a6:9c:14:dd:08 dst_mac 02:02:2c:65:82:4e src_ip 79.128.186.157 dst_ip 82.56.69.126 ip_proto udp src_port 53418 dst_port 24979 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:a6:9c:14:dd:08 dst_mac 02:02:2c:65:82:4e src_ip 79.128.186.157 dst_ip 82.56.69.126 ip_proto udp src_port 53418 dst_port 24979 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:02:2c:65:82:4e","src_mac":"02:a6:9c:14:dd:08","eth_type":"ipv4","ip_proto":"udp","dst_ip":"82.56.69.126","src_ip":"79.128.186.157","dst_port":24979,"src_port":53418},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7e3520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418 SIP-DIP N/A Tx 59909 Rx 24045 Loss 59.864 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcMac SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstMac SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcIp SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstIp SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcPort SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstPort SIP-DIP N/A Tx 59909 Rx 59909 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418 Tx Frames: 59909, Rx Frames: 24045, loss = 59.864, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcMac Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstMac Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcIp Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstIp Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_srcPort Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:02:2c:65:82:4e_src_mac_02:a6:9c:14:dd:08_eth_type_ipv4_ip_proto_udp_dst_ip_82.56.69.126_src_ip_79.128.186.157_dst_port_24979_src_port_53418_unmatch_dstPort Tx Frames: 59909, Rx Frames: 59909, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:02:2c:65:82:4e","src_mac":"02:a6:9c:14:dd:08","eth_type":"ipv4","ip_proto":"udp","dst_ip":"82.56.69.126","src_ip":"79.128.186.157","dst_port":24979,"src_port":53418},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":179,"stats":{"bytes":15336704,"packets":59909,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15336704,"hw_packets":59909,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59909, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59909, packets = 59909, expected = 59909, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59909, hw_packets = 59909, expected = 59909, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:01:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:01:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:01:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] | 187.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1881' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.3, port 35352 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:01:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 791 && bridge vlan add dev swp34 vid 791 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp33 vid 791 && bridge vlan add dev swp34 vid 791 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:c3:4d:a5:a7:a3 dst_mac 02:ec:47:79:03:d1 vlan_id 791 vlan_ethtype ip src_ip 26.82.33.72 dst_ip 17.133.34.148 ip_proto udp src_port 43472 dst_port 35691 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:c3:4d:a5:a7:a3 dst_mac 02:ec:47:79:03:d1 vlan_id 791 vlan_ethtype ip src_ip 26.82.33.72 dst_ip 17.133.34.148 ip_proto udp src_port 43472 dst_port 35691 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":791,"vlan_ethtype":"ip","dst_mac":"02:ec:47:79:03:d1","src_mac":"02:c3:4d:a5:a7:a3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.133.34.148","src_ip":"26.82.33.72","dst_port":35691,"src_port":43472},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 791, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 791, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb8fbb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472 SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcMac SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstMac SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_vlanID SIP-DIP N/A Tx 60322 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcIp SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstIp SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcPort SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstPort SIP-DIP N/A Tx 60322 Rx 60322 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472 Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcMac Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstMac Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_vlanID Tx Frames: 60322, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcIp Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstIp Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_srcPort Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_791_vlan_ethtype_ip_dst_mac_02:ec:47:79:03:d1_src_mac_02:c3:4d:a5:a7:a3_eth_type_ipv4_ip_proto_udp_dst_ip_17.133.34.148_src_ip_26.82.33.72_dst_port_35691_src_port_43472_unmatch_dstPort Tx Frames: 60322, Rx Frames: 60322, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":791,"vlan_ethtype":"ip","dst_mac":"02:ec:47:79:03:d1","src_mac":"02:c3:4d:a5:a7:a3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.133.34.148","src_ip":"26.82.33.72","dst_port":35691,"src_port":43472},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":185,"stats":{"bytes":15442432,"packets":60322,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15442432,"hw_packets":60322,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60322, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60322, packets = 60322, expected = 60322, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60322, hw_packets = 60322, expected = 60322, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:04:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:04:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:04:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] | 191.16 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1950' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.3, port 54596 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:04:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2505 && bridge vlan add dev swp34 vid 2505 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp33 vid 2505 && bridge vlan add dev swp34 vid 2505 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:92:88:64:4b:79 dst_mac 02:37:d6:6f:b1:f5 vlan_id 2505 vlan_ethtype ip src_ip 23.87.170.229 dst_ip 79.55.114.17 ip_proto udp src_port 58939 dst_port 32709 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:92:88:64:4b:79 dst_mac 02:37:d6:6f:b1:f5 vlan_id 2505 vlan_ethtype ip src_ip 23.87.170.229 dst_ip 79.55.114.17 ip_proto udp src_port 58939 dst_port 32709 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2505,"vlan_ethtype":"ip","dst_mac":"02:37:d6:6f:b1:f5","src_mac":"02:92:88:64:4b:79","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.55.114.17","src_ip":"23.87.170.229","dst_port":32709,"src_port":58939},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2505, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2505, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939 SIP-DIP N/A Tx 60353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcMac SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstMac SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_vlanID SIP-DIP N/A Tx 60353 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcIp SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstIp SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcPort SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstPort SIP-DIP N/A Tx 60353 Rx 60353 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939 Tx Frames: 60353, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcMac Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstMac Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_vlanID Tx Frames: 60353, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcIp Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstIp Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_srcPort Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2505_vlan_ethtype_ip_dst_mac_02:37:d6:6f:b1:f5_src_mac_02:92:88:64:4b:79_eth_type_ipv4_ip_proto_udp_dst_ip_79.55.114.17_src_ip_23.87.170.229_dst_port_32709_src_port_58939_unmatch_dstPort Tx Frames: 60353, Rx Frames: 60353, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2505,"vlan_ethtype":"ip","dst_mac":"02:37:d6:6f:b1:f5","src_mac":"02:92:88:64:4b:79","eth_type":"ipv4","ip_proto":"udp","dst_ip":"79.55.114.17","src_ip":"23.87.170.229","dst_port":32709,"src_port":58939},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":189,"stats":{"bytes":15450368,"packets":60353,"drops":60353,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15450368,"hw_packets":60353,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60353, drops = 60353, expected = 60353, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60353, packets = 60353, expected = 60353, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60353, hw_packets = 60353, expected = 60353, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:07:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:07:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:07:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] | 188.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2019' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.3, port 49716 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:07:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2967 && bridge vlan add dev swp34 vid 2967 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp33 vid 2967 && bridge vlan add dev swp34 vid 2967 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6c:ed:e7:dd:22 dst_mac 02:04:04:d6:43:0b vlan_id 2967 vlan_ethtype ip src_ip 15.255.221.52 dst_ip 102.81.119.166 ip_proto udp src_port 34459 dst_port 14756 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:6c:ed:e7:dd:22 dst_mac 02:04:04:d6:43:0b vlan_id 2967 vlan_ethtype ip src_ip 15.255.221.52 dst_ip 102.81.119.166 ip_proto udp src_port 34459 dst_port 14756 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2967,"vlan_ethtype":"ip","dst_mac":"02:04:04:d6:43:0b","src_mac":"02:6c:ed:e7:dd:22","eth_type":"ipv4","ip_proto":"udp","dst_ip":"102.81.119.166","src_ip":"15.255.221.52","dst_port":14756,"src_port":34459},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2967, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2967, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb783940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459 SIP-DIP N/A Tx 60319 Rx 24235 Loss 59.822 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcMac SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstMac SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_vlanID SIP-DIP N/A Tx 60319 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcIp SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstIp SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcPort SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstPort SIP-DIP N/A Tx 60319 Rx 60319 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459 Tx Frames: 60319, Rx Frames: 24235, loss = 59.822, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcMac Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstMac Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_vlanID Tx Frames: 60319, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcIp Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstIp Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_srcPort Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2967_vlan_ethtype_ip_dst_mac_02:04:04:d6:43:0b_src_mac_02:6c:ed:e7:dd:22_eth_type_ipv4_ip_proto_udp_dst_ip_102.81.119.166_src_ip_15.255.221.52_dst_port_14756_src_port_34459_unmatch_dstPort Tx Frames: 60319, Rx Frames: 60319, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2967,"vlan_ethtype":"ip","dst_mac":"02:04:04:d6:43:0b","src_mac":"02:6c:ed:e7:dd:22","eth_type":"ipv4","ip_proto":"udp","dst_ip":"102.81.119.166","src_ip":"15.255.221.52","dst_port":14756,"src_port":34459},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":187,"stats":{"bytes":15441664,"packets":60319,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15441664,"hw_packets":60319,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60319, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60319, packets = 60319, expected = 60319, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60319, hw_packets = 60319, expected = 60319, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:11:04 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:11:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:11:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] | 179.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2088' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.3, port 47848 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:11:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ee:60:f1:69:73 dst_mac 02:bc:3e:7e:77:f6 src_ip 53.89.22.35 dst_ip 42.174.231.193 ip_proto udp src_port 12351 dst_port 57095 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ee:60:f1:69:73 dst_mac 02:bc:3e:7e:77:f6 src_ip 53.89.22.35 dst_ip 42.174.231.193 ip_proto udp src_port 12351 dst_port 57095 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:bc:3e:7e:77:f6","src_mac":"02:ee:60:f1:69:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.174.231.193","src_ip":"53.89.22.35","dst_port":57095,"src_port":12351},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7838e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351 SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcMac SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstMac SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcIp SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstIp SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcPort SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstPort SIP-DIP N/A Tx 60424 Rx 60424 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351 Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcMac Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstMac Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcIp Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstIp Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_srcPort Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:bc:3e:7e:77:f6_src_mac_02:ee:60:f1:69:73_eth_type_ipv4_ip_proto_udp_dst_ip_42.174.231.193_src_ip_53.89.22.35_dst_port_57095_src_port_12351_unmatch_dstPort Tx Frames: 60424, Rx Frames: 60424, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:bc:3e:7e:77:f6","src_mac":"02:ee:60:f1:69:73","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.174.231.193","src_ip":"53.89.22.35","dst_port":57095,"src_port":12351},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":177,"stats":{"bytes":15468544,"packets":60424,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15468544,"hw_packets":60424,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60424, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60424, packets = 60424, expected = 60424, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60424, hw_packets = 60424, expected = 60424, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:14:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:14:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:14:03 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] | 175.83 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2155' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.3, port 51042 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:14:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ff:50:c8:16:ed dst_mac 02:3e:cb:45:c0:e9 src_ip 82.60.88.238 dst_ip 92.37.222.170 ip_proto udp src_port 4773 dst_port 17437 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ff:50:c8:16:ed dst_mac 02:3e:cb:45:c0:e9 src_ip 82.60.88.238 dst_ip 92.37.222.170 ip_proto udp src_port 4773 dst_port 17437 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3e:cb:45:c0:e9","src_mac":"02:ff:50:c8:16:ed","eth_type":"ipv4","ip_proto":"udp","dst_ip":"92.37.222.170","src_ip":"82.60.88.238","dst_port":17437,"src_port":4773},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb781840>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773 SIP-DIP N/A Tx 60368 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcMac SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstMac SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcIp SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstIp SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcPort SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstPort SIP-DIP N/A Tx 60368 Rx 60368 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773 Tx Frames: 60368, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcMac Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstMac Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcIp Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstIp Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_srcPort Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:cb:45:c0:e9_src_mac_02:ff:50:c8:16:ed_eth_type_ipv4_ip_proto_udp_dst_ip_92.37.222.170_src_ip_82.60.88.238_dst_port_17437_src_port_4773_unmatch_dstPort Tx Frames: 60368, Rx Frames: 60368, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3e:cb:45:c0:e9","src_mac":"02:ff:50:c8:16:ed","eth_type":"ipv4","ip_proto":"udp","dst_ip":"92.37.222.170","src_ip":"82.60.88.238","dst_port":17437,"src_port":4773},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":174,"stats":{"bytes":15454208,"packets":60368,"drops":60368,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15454208,"hw_packets":60368,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60368, drops = 60368, expected = 60368, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60368, packets = 60368, expected = 60368, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60368, hw_packets = 60368, expected = 60368, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:16:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:16:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:16:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] | 175.55 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2222' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.3, port 36958 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:17:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:0f:be:c9:19:9c dst_mac 02:15:27:9a:c8:9f src_ip 44.58.225.160 dst_ip 42.247.161.111 ip_proto udp src_port 36257 dst_port 48320 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:0f:be:c9:19:9c dst_mac 02:15:27:9a:c8:9f src_ip 44.58.225.160 dst_ip 42.247.161.111 ip_proto udp src_port 36257 dst_port 48320 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:15:27:9a:c8:9f","src_mac":"02:0f:be:c9:19:9c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.247.161.111","src_ip":"44.58.225.160","dst_port":48320,"src_port":36257},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb780d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257 SIP-DIP N/A Tx 60339 Rx 24203 Loss 59.888 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcMac SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstMac SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcIp SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstIp SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcPort SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstPort SIP-DIP N/A Tx 60339 Rx 60339 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257 Tx Frames: 60339, Rx Frames: 24203, loss = 59.888, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcMac Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstMac Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcIp Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstIp Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_srcPort Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:27:9a:c8:9f_src_mac_02:0f:be:c9:19:9c_eth_type_ipv4_ip_proto_udp_dst_ip_42.247.161.111_src_ip_44.58.225.160_dst_port_48320_src_port_36257_unmatch_dstPort Tx Frames: 60339, Rx Frames: 60339, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:15:27:9a:c8:9f","src_mac":"02:0f:be:c9:19:9c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.247.161.111","src_ip":"44.58.225.160","dst_port":48320,"src_port":36257},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":173,"stats":{"bytes":15446784,"packets":60339,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15446784,"hw_packets":60339,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60339, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60339, packets = 60339, expected = 60339, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60339, hw_packets = 60339, expected = 60339, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc | 0.94 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2287' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.3, port 60062 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG infra2:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up | 204.62 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2336' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.3, port 60068 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:19:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb653340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782320>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 314 Rx 0 Frames Delta 314 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 314 Rx 0 Frames Delta 314 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 314 Rx 0 Frames Delta 314 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 314 Rx 0 Frames Delta 314 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:23:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:23:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh | 299.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2370' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.3, port 33206 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:23:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7830a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 204 Rx 204 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:4b:e8:30","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782020>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 204 Rx 204 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:4b:e8:30","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7829b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 3790 Rx 3790 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:4b:e8:30","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:28:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:28:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue | 203.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2404' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.3, port 58958 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:28:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6509d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 2194 Rx 2193 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 2194 Rx 2193 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 2194 Rx 2193 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 2194 Rx 2193 Frames Delta 1 Loss 0.046 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:df:67:0f","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:31:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:31:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif | 262.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2435' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.3, port 60278 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:31:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb780ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG infra2:Logger.py:156 17:35:47.596606 LLDP, length 230: dentlab-infra2 17:35:47.763405 IP6 fe80::845c:7eff:fea5:7dc4 > ff02::2: ICMP6, router solicitation, length 16 17:35:50.770973 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.771069 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.771135 LLDP, length 82 [|LLDP] 17:35:50.771138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009b 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.771142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.771160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.771165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.771169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.771182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.771189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.771224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.771231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.771236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.771238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.771244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.779182 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.779218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.779248 LLDP, length 82 [|LLDP] 17:35:50.779250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a1 729b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.779252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.779261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.779264 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.779271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.779297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.779311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.779315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.779317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.779322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.779336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.779342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.790179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.790203 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.790225 LLDP, length 82 [|LLDP] 17:35:50.790226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a9 d901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.790229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.790235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.790239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.790242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.790254 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.790260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.790280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.790285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.790288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.790290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.790295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.798436 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.798458 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.798479 LLDP, length 82 [|LLDP] 17:35:50.798480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b0 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.798482 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.798488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.798509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.798516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.798519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.798522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.798527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.798531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.798535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.798547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.798552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.809442 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.809466 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.809485 LLDP, length 82 [|LLDP] 17:35:50.809487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b8 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.809489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.809495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.809499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.809502 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.809508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.809528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.809534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.809536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.809539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.809551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.809556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.820458 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.820480 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.820500 LLDP, length 82 [|LLDP] 17:35:50.820501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c0 f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.820503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.820509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.820513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.820517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.820528 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.820534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.820554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.820560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.820563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.820565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.820569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.828707 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.828730 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.828748 LLDP, length 82 [|LLDP] 17:35:50.828750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c7 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.828752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.828758 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.828763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.828773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.828777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.828781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.828783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.828786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.828790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.828802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.828808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.839719 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.839743 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.839762 LLDP, length 82 [|LLDP] 17:35:50.839764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cf a5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.839766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.839772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.839776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.839780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.839792 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.839798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.839809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.839813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.839816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.839818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.839823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.850730 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.850752 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.850773 LLDP, length 82 [|LLDP] 17:35:50.850775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.850777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.850784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.850787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.850791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.850803 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.850809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.850820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.850824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.850828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.850830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.850835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.858987 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.859013 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.859033 LLDP, length 82 [|LLDP] 17:35:50.859035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00de 5901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.859036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.859043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.859046 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.859052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.859062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.859067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.859070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.859072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.859076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.859088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.859093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.869999 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.870022 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.870042 LLDP, length 82 [|LLDP] 17:35:50.870044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e6 bf68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.870046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.870052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.870056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.870059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.870071 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.870077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.870086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.870091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.870094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.870096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.870101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.878257 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.878278 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.878297 LLDP, length 82 [|LLDP] 17:35:50.878299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.878301 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.878307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.878316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.878322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.878325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.878327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.878332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.878335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.878339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.878351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.878357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.889264 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.889285 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.889304 LLDP, length 82 [|LLDP] 17:35:50.889306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f5 729b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.889308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.889314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.889317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.889321 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.889326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.889337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.889341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.889344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.889347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.889358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.889364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.900275 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.900297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.900316 LLDP, length 82 [|LLDP] 17:35:50.900318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fd d909 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.900319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.900325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.900329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.900333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.900345 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.900351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.900361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.900365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.900368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.900370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.900375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.908532 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.908553 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.908571 LLDP, length 82 [|LLDP] 17:35:50.908573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0104 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.908575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.908581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.908587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.908596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.908601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.908604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.908607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.908610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.908614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.908626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.908632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.919544 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.919569 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.919590 LLDP, length 82 [|LLDP] 17:35:50.919592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010c 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.919594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.919600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.919604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.919607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.919619 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.919625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.919636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.919641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.919644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.919646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.919651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.930558 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.930582 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.930601 LLDP, length 82 [|LLDP] 17:35:50.930603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0114 f29c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.930605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.930613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.930617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.930620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.930632 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.930638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.930647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.930652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.930655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.930658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.930662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.938810 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.938831 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.938851 LLDP, length 82 [|LLDP] 17:35:50.938852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011b 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.938854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.938860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.938863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.938869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.938878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.938883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.938886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.938888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.938892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.938904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.938909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.949819 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.949840 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.949859 LLDP, length 82 [|LLDP] 17:35:50.949860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0123 a5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.949863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.949869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.949872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.949876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.949888 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.949893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.949902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.949907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.949910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.949912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.949917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.960830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.960852 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.960871 LLDP, length 82 [|LLDP] 17:35:50.960873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.960874 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.960880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.960890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.960894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.960897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.960900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.960905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.960908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.960912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.960923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.960929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.969086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.969112 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.969132 LLDP, length 82 [|LLDP] 17:35:50.969133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0132 5902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.969136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.969141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.969145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.969149 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.969155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.969165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.969169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.969172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.969174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.969186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.969191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.980097 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.980119 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.980138 LLDP, length 82 [|LLDP] 17:35:50.980139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013a bf69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.980141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.980147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.980151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.980155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.980167 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.980172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.980182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.980186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.980189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.980191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.980196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.988355 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.988378 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.988396 LLDP, length 82 [|LLDP] 17:35:50.988398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.988400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.988405 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.988411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.988421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.988425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.988428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.988430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.988434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.988438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.988450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.988456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.999366 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.999388 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.999406 LLDP, length 82 [|LLDP] 17:35:50.999408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0149 729c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.999409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.999415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.999419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.999423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.999434 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.999440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.999450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.999454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.999457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.999459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.999464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.010376 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.010400 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.010420 LLDP, length 82 [|LLDP] 17:35:51.010422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0151 d902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.010424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.010431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.010434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.010438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.010449 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.010455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.010465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.010470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.010473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.010475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.010480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.018634 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.018657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.018679 LLDP, length 82 [|LLDP] 17:35:51.018681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0158 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.018683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.018689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.018692 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.018697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.018707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.018712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.018715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.018717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.018721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.018732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.018739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.029640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.029662 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.029682 LLDP, length 82 [|LLDP] 17:35:51.029684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0160 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.029686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.029692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.029696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.029700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.029711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.029717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.029727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.029732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.029735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.029737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.029742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.040649 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.040670 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.040689 LLDP, length 82 [|LLDP] 17:35:51.040691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0168 f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.040693 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.040698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.040708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.040713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.040716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.040718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.040723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.040726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.040730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.040742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.040748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.048907 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.048927 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.048945 LLDP, length 82 [|LLDP] 17:35:51.048947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016f 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.048949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.048955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.048959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.048962 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.048968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.048977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.048982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.048985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.048987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.048999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.049004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.059916 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.059937 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.059956 LLDP, length 82 [|LLDP] 17:35:51.059957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0177 a5cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.059959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.059965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.059968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.059972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.059984 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.059990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.060001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.060005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.060008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.060010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.060015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.068179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.068201 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.068219 LLDP, length 82 [|LLDP] 17:35:51.068220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017d f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.068222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.068228 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.068234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.068243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.068248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.068251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.068253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.068257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.068260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.068272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.068278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.079185 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.079209 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.079227 LLDP, length 82 [|LLDP] 17:35:51.079229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0186 5902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.079231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.079236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.079240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.079244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.079256 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.079262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.079272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.079277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.079279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.079282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.079286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.090193 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.090214 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.090233 LLDP, length 82 [|LLDP] 17:35:51.090235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018e bf69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.090237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.090242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.090246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.090249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.090261 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.090267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.090277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.090281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.090284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.090287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.090292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.098451 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.098473 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.098491 LLDP, length 82 [|LLDP] 17:35:51.098493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 0c3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.098494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.098500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.098504 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.098509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.098518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.098523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.098526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.098528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.098531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.098543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.098549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.109460 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.109481 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.109502 LLDP, length 82 [|LLDP] 17:35:51.109503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019d 729c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.109505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.109511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.109515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.109519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.109530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.109536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.109546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.109550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.109554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.109556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.109561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.120471 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.120494 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.120513 LLDP, length 82 [|LLDP] 17:35:51.120515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a5 d902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.120517 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.120522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.120532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.120537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.120540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.120543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.120548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.120551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.120555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.120566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.120572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.128728 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.128750 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.128769 LLDP, length 82 [|LLDP] 17:35:51.128771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ac 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.128773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.128778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.128782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.128785 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.128791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.128801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.128805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.128808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.128811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.128822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.128828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.139739 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.139760 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.139777 LLDP, length 82 [|LLDP] 17:35:51.139779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b4 8c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.139781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.139786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.139790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.139794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.139805 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.139811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.139821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.139825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.139828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.139830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.139835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.150749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.150770 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.150788 LLDP, length 82 [|LLDP] 17:35:51.150790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bc f2a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.150792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.150797 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.150803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.150812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.150817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.150820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.150822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.150826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.150830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.150842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.150847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.159005 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.159027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.159045 LLDP, length 82 [|LLDP] 17:35:51.159046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c3 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.159048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.159053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.159057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.159060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.159072 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.159077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.159087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.159091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.159094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.159096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.159101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.170018 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.170040 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.170060 LLDP, length 82 [|LLDP] 17:35:51.170061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cb a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.170063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.170069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.170073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.170076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.170088 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.170094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.170104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.170108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.170111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.170113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.170118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.178273 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.178295 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.178325 LLDP, length 82 [|LLDP] 17:35:51.178326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d1 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.178328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.178334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.178338 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.178343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.178354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.178358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.178361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.178363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.178367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.178379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.178384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.189286 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.189310 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.189331 LLDP, length 82 [|LLDP] 17:35:51.189332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01da 592a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.189335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.189340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.189344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.189347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.189359 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.189364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.189374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.189379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.189382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.189384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.189388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.200296 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.200316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.200335 LLDP, length 82 [|LLDP] 17:35:51.200337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e2 bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.200338 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.200344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.200354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.200358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.200361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.200364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.200369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.200372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.200376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.200387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.200393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.208552 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.208574 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.208594 LLDP, length 82 [|LLDP] 17:35:51.208595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.208597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.208603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.208606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.208610 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.208615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.208625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.208629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.208632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.208634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.208646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.208652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.219563 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.219584 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.219602 LLDP, length 82 [|LLDP] 17:35:51.219604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f1 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.219606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.219611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.219615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.219619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.219630 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.219636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.219646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.219650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.219653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.219655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.219660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.230571 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.230593 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.230611 LLDP, length 82 [|LLDP] 17:35:51.230613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f9 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.230615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.230621 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.230626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.230635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.230640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.230642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.230644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.230648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.230652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.230664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.230669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.238825 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.238844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.238860 LLDP, length 82 [|LLDP] 17:35:51.238861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0200 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.238863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.238869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.238872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.238876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.238888 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.238893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.238903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.238907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.238910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.238912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.238917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.249836 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.249855 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.249872 LLDP, length 82 [|LLDP] 17:35:51.249874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0208 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.249875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.249881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.249885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.249888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.249899 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.249905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.249915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.249919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.249922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.249924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.249928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.260849 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.260868 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.260885 LLDP, length 82 [|LLDP] 17:35:51.260887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0210 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.260889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.260895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.260898 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.260904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.260914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.260918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.260921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.260923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.260927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.260939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.260944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.269104 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.269123 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.269141 LLDP, length 82 [|LLDP] 17:35:51.269143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0217 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.269145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.269151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.269155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.269158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.269169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.269175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.269184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.269189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.269192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.269194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.269198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.280112 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.280132 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.280149 LLDP, length 82 [|LLDP] 17:35:51.280151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021f a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.280153 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.280158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.280167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.280172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.280175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.280177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.280182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.280186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.280189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.280201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.280207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.288371 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.288392 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.288409 LLDP, length 82 [|LLDP] 17:35:51.288411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0225 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.288413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.288419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.288422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.288426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.288431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.288441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.288445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.288448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.288450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.288462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.288467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.299381 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.299404 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.299421 LLDP, length 82 [|LLDP] 17:35:51.299422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022e 5924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.299424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.299430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.299433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.299437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.299448 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.299454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.299464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.299468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.299471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.299473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.299477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.310391 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.310410 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.310427 LLDP, length 82 [|LLDP] 17:35:51.310429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0236 bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.310431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.310436 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.310441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.310450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.310455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.310458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.310460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.310464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.310467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.310479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.310485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.318653 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.318667 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.318683 LLDP, length 82 [|LLDP] 17:35:51.318685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.318686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.318692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.318695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.318699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.318711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.318716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.318726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.318731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.318733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.318735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.318740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.329660 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.329681 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.329699 LLDP, length 82 [|LLDP] 17:35:51.329700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0245 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.329702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.329708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.329712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.329715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.329727 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.329733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.329742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.329746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.329749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.329751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.329756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.340668 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.340688 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.340705 LLDP, length 82 [|LLDP] 17:35:51.340706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024d d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.340708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.340714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.340717 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.340722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.340732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.340737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.340739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.340741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.340745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.340757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.340762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.348925 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.348945 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.348962 LLDP, length 82 [|LLDP] 17:35:51.348963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0254 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.348965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.348971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.348974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.348978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.348989 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.348995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.349005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.349009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.349012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.349014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.349019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.359935 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.359953 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.359970 LLDP, length 82 [|LLDP] 17:35:51.359972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025c 8c59 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.359974 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.359979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.359988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.359993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.359996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.359998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.360003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.360006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.360010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.360022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.360027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.368199 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.368219 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.368236 LLDP, length 82 [|LLDP] 17:35:51.368237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0262 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.368239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.368245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.368248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.368252 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.368257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.368267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.368271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.368274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.368276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.368288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.368293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.379204 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.379224 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.379240 LLDP, length 82 [|LLDP] 17:35:51.379242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026b 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.379244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.379249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.379253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.379257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.379268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.379274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.379283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.379288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.379291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.379293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.379297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.390221 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.390248 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.390269 LLDP, length 82 [|LLDP] 17:35:51.390271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0273 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.390273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.390279 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.390285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.390295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.390300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.390303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.390305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.390308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.390312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.390324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.390329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.398478 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.398501 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.398521 LLDP, length 82 [|LLDP] 17:35:51.398522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0279 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.398524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.398531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.398534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.398538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.398549 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.398555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.398565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.398570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.398572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.398574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.398579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.409485 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.409508 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.409528 LLDP, length 82 [|LLDP] 17:35:51.409529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0282 5925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.409531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.409537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.409541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.409544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.409556 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.409562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.409572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.409577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.409579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.409581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.409586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.420495 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.420518 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.420538 LLDP, length 82 [|LLDP] 17:35:51.420539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028a bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.420541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.420547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.420551 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.420556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.420566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.420571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.420574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.420575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.420579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.420591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.420597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.428757 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.428773 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.428794 LLDP, length 82 [|LLDP] 17:35:51.428796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.428797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.428803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.428807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.428811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.428822 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.428827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.428837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.428842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.428845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.428847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.428852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.439765 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.439787 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.439807 LLDP, length 82 [|LLDP] 17:35:51.439809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0299 72c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.439811 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.439816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.439826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.439831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.439833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.439836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.439841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.439844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.439848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.439859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.439864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.450773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.450796 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.450815 LLDP, length 82 [|LLDP] 17:35:51.450817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a1 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.450819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.450825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.450830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.450833 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.450839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.450849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.450854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.450857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.450859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.450871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.450876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.459031 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.459053 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.459074 LLDP, length 82 [|LLDP] 17:35:51.459075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a8 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.459077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.459083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.459087 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.459090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.459102 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.459108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.459118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.459123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.459125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.459127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.459132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.470041 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.470066 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.470088 LLDP, length 82 [|LLDP] 17:35:51.470089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b0 8c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.470092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.470098 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.470104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.470114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.470119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.470122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.470124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.470128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.470132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.470143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.470149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.478314 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.478347 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.478375 LLDP, length 82 [|LLDP] 17:35:51.478377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b6 d925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.478379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.478387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.478391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.478395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.478407 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.478413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.478425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.478430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.478433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.478435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.478440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.489319 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.489343 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.489368 LLDP, length 82 [|LLDP] 17:35:51.489370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bf 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.489372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.489379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.489383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.489386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.489398 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.489404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.489416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.489421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.489424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.489426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.489431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.500326 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.500354 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.500378 LLDP, length 82 [|LLDP] 17:35:51.500380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c7 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.500382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.500388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.500401 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.500407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.500418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.500423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.500426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.500428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.500432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.500445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.500450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.508580 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.508607 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.508630 LLDP, length 82 [|LLDP] 17:35:51.508632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cd f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.508634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.508640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.508644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.508647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.508659 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.508665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.508676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.508680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.508683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.508686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.508691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.519591 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.519618 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.519640 LLDP, length 82 [|LLDP] 17:35:51.519642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d6 5924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.519644 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.519650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.519661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.519666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.519669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.519671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.519677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.519689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.519693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.519706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.519712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.530604 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.530631 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.530654 LLDP, length 82 [|LLDP] 17:35:51.530656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02de bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.530661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.530668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.530672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.530675 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.530681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.530691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.530696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.530699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.530702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.530714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.530719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.538860 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.538888 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.538914 LLDP, length 82 [|LLDP] 17:35:51.538916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 0c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.538918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.538925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.538929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.538932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.538945 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.538951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.538962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.538966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.538970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.538972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.538976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.549875 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.549906 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.549930 LLDP, length 82 [|LLDP] 17:35:51.549932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ed 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.549934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.549940 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.549947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.549958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.549962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.549965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.549968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.549972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.549976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.549987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.549993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.558130 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.558157 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.558187 LLDP, length 82 [|LLDP] 17:35:51.558189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f3 bf91 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.558191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.558197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.558201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.558205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.558217 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.558224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.558236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.558240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.558243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.558245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.558250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.569139 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.569166 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.569188 LLDP, length 82 [|LLDP] 17:35:51.569190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fc 25f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.569192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.569199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.569202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.569206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.569218 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.569224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.569234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.569239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.569242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.569245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.569250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.580156 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.580185 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.580205 LLDP, length 82 [|LLDP] 17:35:51.580207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0304 8c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.580209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.580215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.580219 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.580224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.580234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.580239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.580241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.580244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.580248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.580260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.580265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.588400 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.588422 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.588442 LLDP, length 82 [|LLDP] 17:35:51.588443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030a d925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.588446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.588452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.588455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.588459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.588470 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.588476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.588486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.588491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.588493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.588496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.588500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.599424 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.599446 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.599469 LLDP, length 82 [|LLDP] 17:35:51.599471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0313 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.599473 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.599479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.599489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.599494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.599498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.599500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.599505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.599509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.599513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.599525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.599531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.610436 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.610473 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.610502 LLDP, length 82 [|LLDP] 17:35:51.610504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031b a5f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.610506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.610514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.610518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.610521 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.610527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.610540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.610544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.610548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.610550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.610562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.610568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.618684 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.618710 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.618730 LLDP, length 82 [|LLDP] 17:35:51.618731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0321 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.618733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.618739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.618743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.618747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.618758 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.618764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.618775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.618780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.618783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.618785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.618790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.629688 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.629712 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.629732 LLDP, length 82 [|LLDP] 17:35:51.629747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032a 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.629750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.629756 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.629762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.629772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.629776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.629779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.629781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.629785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.629789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.629801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.629807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.640724 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.640761 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.640790 LLDP, length 82 [|LLDP] 17:35:51.640792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0332 bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.640795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.640806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.640810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.640814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.640827 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.640834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.640854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.640861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.640866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.640869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.640876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.648974 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.649005 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.649040 LLDP, length 82 [|LLDP] 17:35:51.649042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 0c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.649044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.649051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.649055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.649059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.649071 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.649077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.649088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.649093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.649097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.649099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.649104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.659972 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.659990 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.660012 LLDP, length 82 [|LLDP] 17:35:51.660013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0341 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.660015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.660022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.660026 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.660031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.660041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.660046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.660049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.660051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.660055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.660067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.660072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.668227 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.668247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.668269 LLDP, length 82 [|LLDP] 17:35:51.668271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0347 bf89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.668273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.668279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.668283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.668287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.668299 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.668304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.668315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.668319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.668323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.668325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.668330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.679236 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.679260 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.679281 LLDP, length 82 [|LLDP] 17:35:51.679283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0350 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.679285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.679290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.679311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.679318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.679321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.679323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.679328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.679332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.679335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.679348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.679354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.690250 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.690279 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.690304 LLDP, length 82 [|LLDP] 17:35:51.690306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0358 8c5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.690308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.690315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.690318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.690322 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.690328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.690339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.690344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.690347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.690349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.690361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.690366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.698504 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.698531 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.698554 LLDP, length 82 [|LLDP] 17:35:51.698556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035e d923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.698558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.698566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.698569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.698573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.698584 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.698591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.698602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.698607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.698610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.698612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.698618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.709510 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.709535 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.709556 LLDP, length 82 [|LLDP] 17:35:51.709557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0367 3f89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.709559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.709565 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.709570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.709581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.709585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.709588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.709591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.709594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.709598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.709610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.709616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.720521 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.720537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.720556 LLDP, length 82 [|LLDP] 17:35:51.720558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036f a5f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.720560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.720566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.720570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.720573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.720584 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.720590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.720600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.720605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.720608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.720610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.720615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.728779 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.728802 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.728822 LLDP, length 82 [|LLDP] 17:35:51.728824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0375 f2bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.728826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.728831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.728835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.728839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.728850 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.728856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.728866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.728870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.728873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.728875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.728880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.739794 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.739817 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.739838 LLDP, length 82 [|LLDP] 17:35:51.739839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037e 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.739841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.739848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.739852 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.739856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.739867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.739871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.739875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.739877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.739881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.739892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.739898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.750796 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.750821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.750842 LLDP, length 82 [|LLDP] 17:35:51.750843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0386 bf89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.750845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.750852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.750856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.750859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.750870 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.750877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.750887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.750891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.750894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.750896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.750901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.759055 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.759078 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.759098 LLDP, length 82 [|LLDP] 17:35:51.759099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d 0c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.759102 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.759107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.759118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.759123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.759126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.759128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.759134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.759137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.759141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.759153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.759158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.770071 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.770088 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.770108 LLDP, length 82 [|LLDP] 17:35:51.770109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0395 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.770111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.770117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.770121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.770124 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.770129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.770153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.770159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.770162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.770164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.770176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.770182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.778321 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.778346 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.778365 LLDP, length 82 [|LLDP] 17:35:51.778367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039b bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.778369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.778375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.778379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.778383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.778395 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.778400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.778411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.778415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.778418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.778421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.778426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.789332 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.789355 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.789375 LLDP, length 82 [|LLDP] 17:35:51.789377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a4 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.789379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.789385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.789390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.789400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.789405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.789408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.789410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.789414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.789417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.789430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.789436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.800345 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.800369 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.800390 LLDP, length 82 [|LLDP] 17:35:51.800391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ac 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.800393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.800399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.800403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.800406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.800418 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.800424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.800435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.800439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.800442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.800444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.800449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.808598 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.808623 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.808645 LLDP, length 82 [|LLDP] 17:35:51.808646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b2 d92a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.808648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.808654 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.808658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.808662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.808674 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.808680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.808690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.808695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.808697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.808699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.808704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.819608 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.819631 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.819653 LLDP, length 82 [|LLDP] 17:35:51.819654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bb 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.819657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.819662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.819666 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.819671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.819681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.819686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.819689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.819692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.819696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.819707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.819713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.830623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.830640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.830659 LLDP, length 82 [|LLDP] 17:35:51.830661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c3 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.830663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.830669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.830673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.830676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.830688 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.830694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.830704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.830708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.830712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.830714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.830719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.838876 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.838900 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.838920 LLDP, length 82 [|LLDP] 17:35:51.838921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c9 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.838923 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.838929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.838939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.838944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.838947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.838950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.838955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.838958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.838962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.838974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.838980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.849885 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.849909 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.849929 LLDP, length 82 [|LLDP] 17:35:51.849931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d2 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.849933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.849938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.849942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.849946 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.849951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.849961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.849966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.849969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.849971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.849983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.849988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.858144 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.858167 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.858187 LLDP, length 82 [|LLDP] 17:35:51.858188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 a5f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.858190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.858197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.858201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.858205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.858216 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.858222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.858233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.858237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.858240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.858242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.858247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.869160 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.869190 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.869214 LLDP, length 82 [|LLDP] 17:35:51.869216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.869218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.869225 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.869231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.869242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.869247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.869250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.869252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.869256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.869260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.869272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.869278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.880170 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.880188 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.880209 LLDP, length 82 [|LLDP] 17:35:51.880211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e9 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.880213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.880220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.880223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.880227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.880239 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.880245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.880255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.880259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.880263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.880265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.880270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.888423 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.888447 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.888466 LLDP, length 82 [|LLDP] 17:35:51.888468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ef bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.888470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.888476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.888480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.888484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.888496 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.888502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.888512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.888517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.888520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.888522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.888527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.899430 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.899454 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.899474 LLDP, length 82 [|LLDP] 17:35:51.899476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f8 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.899478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.899484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.899487 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.899493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.899504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.899508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.899511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.899513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.899517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.899530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.899536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.910440 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.910464 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.910484 LLDP, length 82 [|LLDP] 17:35:51.910486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0400 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.910488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.910493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.910497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.910501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.910513 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.910519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.910529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.910533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.910536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.910538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.910543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.918698 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.918720 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.918740 LLDP, length 82 [|LLDP] 17:35:51.918742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0406 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.918744 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.918750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.918760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.918765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.918767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.918770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.918774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.918778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.918782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.918794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.918800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.929708 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.929732 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.929752 LLDP, length 82 [|LLDP] 17:35:51.929753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040f 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.929755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.929762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.929766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.929769 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.929775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.929786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.929790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.929793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.929795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.929807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.929813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.940721 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.940738 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.940757 LLDP, length 82 [|LLDP] 17:35:51.940759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0417 a5f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.940761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.940766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.940770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.940774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.940786 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.940792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.940802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.940807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.940810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.940812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.940817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.948974 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.948997 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.949016 LLDP, length 82 [|LLDP] 17:35:51.949018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041d f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.949020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.949026 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.949032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.949042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.949047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.949050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.949052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.949056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.949059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.949071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.949076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.959984 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.960010 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.960030 LLDP, length 82 [|LLDP] 17:35:51.960031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0426 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.960034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.960040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.960043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.960047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.960058 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.960064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.960074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.960079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.960082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.960084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.960089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.968245 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.968267 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.968287 LLDP, length 82 [|LLDP] 17:35:51.968288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.968290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.968296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.968299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.968303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.968315 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.968321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.968332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.968336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.968339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.968341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.968346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.979251 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.979275 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.979294 LLDP, length 82 [|LLDP] 17:35:51.979296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.979298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.979315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.979319 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.979324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.979334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.979339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.979342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.979344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.979348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.979361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.979366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.990264 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.990286 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.990305 LLDP, length 82 [|LLDP] 17:35:51.990307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043d 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.990309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.990315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.990319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.990322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.990334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.990340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.990350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.990354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.990357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.990360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.990364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.998522 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.998545 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.998565 LLDP, length 82 [|LLDP] 17:35:51.998567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0443 bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.998569 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.998574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.998585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.998589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.998592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.998594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.998599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.998603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.998606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.998618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.998624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.009533 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.009556 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.009577 LLDP, length 82 [|LLDP] 17:35:52.009579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044c 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.009581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.009587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.009591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.009595 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.009600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.009611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.009616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.009619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.009621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.009633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.009638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.020539 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.020563 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.020583 LLDP, length 82 [|LLDP] 17:35:52.020585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0454 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.020587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.020593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.020597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.020600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.020612 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.020618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.020628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.020633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.020636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.020638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.020642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.028799 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.028821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.028840 LLDP, length 82 [|LLDP] 17:35:52.028842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045a d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.028844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.028849 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.028855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.028865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.028870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.028873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.028875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.028878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.028882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.028894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.028900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.039807 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.039829 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.039850 LLDP, length 82 [|LLDP] 17:35:52.039851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0463 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.039853 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.039859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.039862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.039866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.039878 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.039884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.039894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.039898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.039902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.039904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.039909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.050820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.050842 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.050862 LLDP, length 82 [|LLDP] 17:35:52.050863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046b a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.050865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.050871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.050876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.050880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.050892 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.050897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.050907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.050912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.050915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.050917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.050921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.059074 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.059101 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.059124 LLDP, length 82 [|LLDP] 17:35:52.059125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0471 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.059127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.059133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.059137 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.059142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.059153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.059158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.059161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.059163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.059167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.059180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.059185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.070087 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.070109 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.070130 LLDP, length 82 [|LLDP] 17:35:52.070132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047a 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.070133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.070139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.070143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.070147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.070159 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.070165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.070175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.070179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.070182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.070185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.070189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.078344 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.078367 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.078387 LLDP, length 82 [|LLDP] 17:35:52.078389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.078391 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.078396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.078406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.078411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.078414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.078416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.078421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.078425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.078429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.078441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.078446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.089354 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.089379 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.089398 LLDP, length 82 [|LLDP] 17:35:52.089400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.089402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.089408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.089412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.089416 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.089421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.089432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.089436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.089443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.089445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.089457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.089463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.100363 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.100386 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.100407 LLDP, length 82 [|LLDP] 17:35:52.100408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0491 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.100410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.100416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.100420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.100423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.100435 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.100441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.100451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.100455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.100458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.100461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.100465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.108623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.108640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.108659 LLDP, length 82 [|LLDP] 17:35:52.108661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0497 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.108663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.108669 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.108675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.108686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.108690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.108693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.108695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.108699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.108703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.108714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.108720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.119630 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.119654 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.119674 LLDP, length 82 [|LLDP] 17:35:52.119676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a0 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.119678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.119684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.119688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.119692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.119703 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.119709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.119719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.119723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.119727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.119729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.119733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.130642 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.130664 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.130685 LLDP, length 82 [|LLDP] 17:35:52.130687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a8 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.130689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.130695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.130699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.130702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.130714 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.130720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.130730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.130734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.130737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.130739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.130744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.138897 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.138919 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.138939 LLDP, length 82 [|LLDP] 17:35:52.138941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ae d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.138943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.138949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.138953 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.138958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.138969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.138973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.138976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.138978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.138982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.138994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.138999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.149908 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.149931 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.149951 LLDP, length 82 [|LLDP] 17:35:52.149953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b7 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.149955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.149961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.149965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.149968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.149980 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.149986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.149997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.150001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.150004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.150006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.150011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.158164 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.158188 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.158208 LLDP, length 82 [|LLDP] 17:35:52.158209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.158212 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.158217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.158228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.158233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.158236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.158238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.158243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.158247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.158251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.158263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.158269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.169179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.169198 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.169218 LLDP, length 82 [|LLDP] 17:35:52.169220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c5 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.169222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.169228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.169232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.169235 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.169241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.169251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.169256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.169258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.169261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.169273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.169278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.180198 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.180228 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.180256 LLDP, length 82 [|LLDP] 17:35:52.180258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ce 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.180260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.180268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.180271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.180275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.180287 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.180302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.180314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.180319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.180323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.180325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.180330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.188452 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.188481 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.188507 LLDP, length 82 [|LLDP] 17:35:52.188509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.188512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.188519 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.188525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.188537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.188542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.188545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.188547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.188551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.188554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.188567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.188573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.199477 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.199500 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.199526 LLDP, length 82 [|LLDP] 17:35:52.199528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.199530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.199538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.199541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.199545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.199557 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.199563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.199573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.199578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.199581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.199583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.199589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.210472 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.210499 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.210526 LLDP, length 82 [|LLDP] 17:35:52.210528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e5 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.210530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.210537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.210541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.210544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.210557 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.210563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.210573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.210578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.210581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.210583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.210588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.218729 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.218752 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.218774 LLDP, length 82 [|LLDP] 17:35:52.218776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04eb bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.218778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.218785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.218788 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.218794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.218805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.218810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.218814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.218816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.218820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.218842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.218848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.229738 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.229758 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.229781 LLDP, length 82 [|LLDP] 17:35:52.229782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f4 2619 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.229784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.229791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.229794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.229798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.229810 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.229817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.229828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.229832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.229835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.229838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.229842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.240742 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.240775 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.240796 LLDP, length 82 [|LLDP] 17:35:52.240798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fc 8c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.240800 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.240806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.240816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.240821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.240824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.240826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.240832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.240836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.240839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.240851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.240857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.249001 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.249027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.249050 LLDP, length 82 [|LLDP] 17:35:52.249052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0502 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.249054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.249060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.249064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.249068 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.249073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.249083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.249088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.249091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.249093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.249105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.249111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.260008 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.260035 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.260057 LLDP, length 82 [|LLDP] 17:35:52.260058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050b 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.260060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.260066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.260069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.260073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.260085 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.260090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.260101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.260105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.260109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.260111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.260116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.268277 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.268301 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.268324 LLDP, length 82 [|LLDP] 17:35:52.268325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 8c7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.268327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.268333 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.268339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.268349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.268354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.268361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.268364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.268368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.268371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.268383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.268389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.279288 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.279316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.279339 LLDP, length 82 [|LLDP] 17:35:52.279341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0519 f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.279342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.279350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.279353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.279357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.279373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.279379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.279390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.279395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.279398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.279400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.279405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.290290 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.290316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.290340 LLDP, length 82 [|LLDP] 17:35:52.290342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0522 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.290345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.290351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.290355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.290358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.290370 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.290376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.290386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.290391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.290394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.290396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.290401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.298548 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.298573 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.298595 LLDP, length 82 [|LLDP] 17:35:52.298596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.298598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.298604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.298608 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.298613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.298624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.298628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.298631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.298633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.298637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.298649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.298655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.309555 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.309578 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.309598 LLDP, length 82 [|LLDP] 17:35:52.309600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.309602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.309607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.309611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.309615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.309626 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.309632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.309642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.309647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.309650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.309652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.309657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.320563 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.320588 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.320607 LLDP, length 82 [|LLDP] 17:35:52.320609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0539 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.320611 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.320617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.320627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.320632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.320635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.320637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.320642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.320646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.320649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.320661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.320666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.328820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.328844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.328865 LLDP, length 82 [|LLDP] 17:35:52.328866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053f bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.328868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.328874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.328878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.328882 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.328887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.328898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.328903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.328906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.328908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.328920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.328925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.339832 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.339855 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.339874 LLDP, length 82 [|LLDP] 17:35:52.339876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0548 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.339878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.339884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.339888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.339892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.339903 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.339909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.339920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.339925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.339928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.339930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.339935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.348089 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.348112 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.348132 LLDP, length 82 [|LLDP] 17:35:52.348134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054e 72e7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.348136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.348142 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.348147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.348157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.348162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.348165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.348167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.348171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.348174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.348186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.348191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.359099 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.359122 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.359141 LLDP, length 82 [|LLDP] 17:35:52.359143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0556 d947 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.359144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.359150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.359154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.359157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.359169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.359175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.359185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.359190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.359193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.359195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.359200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.370110 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.370137 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.370159 LLDP, length 82 [|LLDP] 17:35:52.370161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055f 3fad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.370163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.370169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.370173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.370177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.370189 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.370195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.370206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.370210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.370213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.370216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.370221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.378366 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.378389 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.378409 LLDP, length 82 [|LLDP] 17:35:52.378411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.378413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.378419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.378423 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.378428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.378438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.378443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.378446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.378448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.378452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.378464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.378470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.389380 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.389397 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.389417 LLDP, length 82 [|LLDP] 17:35:52.389418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056d f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.389420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.389427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.389431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.389435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.389447 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.389452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.389462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.389467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.389470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.389472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.389476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.400384 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.400407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.400427 LLDP, length 82 [|LLDP] 17:35:52.400429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0576 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.400430 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.400436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.400446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.400451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.400454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.400456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.400461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.400465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.400469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.400481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.400486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.408643 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.408668 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.408688 LLDP, length 82 [|LLDP] 17:35:52.408690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.408692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.408698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.408701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.408705 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.408710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.408720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.408725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.408728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.408730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.408742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.408748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.419654 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.419677 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.419697 LLDP, length 82 [|LLDP] 17:35:52.419698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.419700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.419707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.419710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.419714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.419726 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.419732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.419751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.419757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.419760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.419762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.419767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.430661 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.430684 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.430705 LLDP, length 82 [|LLDP] 17:35:52.430706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058d 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.430708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.430714 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.430719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.430730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.430735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.430738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.430740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.430744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.430747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.430759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.430765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.438918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.438942 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.438962 LLDP, length 82 [|LLDP] 17:35:52.438963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0593 bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.438965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.438971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.438975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.438978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.438990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.438996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.439006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.439010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.439013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.439016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.439020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.449938 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.449955 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.449974 LLDP, length 82 [|LLDP] 17:35:52.449976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059c 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.449978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.449984 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.449987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.449991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.450003 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.450009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.450019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.450024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.450026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.450029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.450034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.458192 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.458208 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.458228 LLDP, length 82 [|LLDP] 17:35:52.458229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a2 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.458231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.458237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.458241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.458246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.458256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.458261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.458264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.458266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.458270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.458282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.458287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.469198 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.469220 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.469239 LLDP, length 82 [|LLDP] 17:35:52.469241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05aa d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.469243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.469249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.469253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.469257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.469268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.469274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.469285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.469289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.469292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.469294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.469299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.480206 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.480229 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.480249 LLDP, length 82 [|LLDP] 17:35:52.480250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b3 3fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.480252 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.480258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.480269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.480274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.480276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.480279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.480284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.480288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.480291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.480303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.480310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.488465 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.488491 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.488511 LLDP, length 82 [|LLDP] 17:35:52.488513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.488515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.488520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.488538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.488543 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.488548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.488559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.488563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.488566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.488568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.488580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.488586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.499511 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.499548 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.499578 LLDP, length 82 [|LLDP] 17:35:52.499580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c1 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.499583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.499593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.499596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.499600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.499612 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.499619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.499634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.499640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.499643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.499645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.499650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.510492 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.510513 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.510540 LLDP, length 82 [|LLDP] 17:35:52.510542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ca 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.510544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.510550 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.510556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.510566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.510571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.510574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.510576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.510580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.510584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.510597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.510602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.518741 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.518764 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.518784 LLDP, length 82 [|LLDP] 17:35:52.518786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 a615 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.518788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.518794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.518797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.518801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.518812 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.518818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.518829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.518834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.518837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.518839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.518844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.529750 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.529773 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.529794 LLDP, length 82 [|LLDP] 17:35:52.529796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.529798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.529804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.529807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.529811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.529823 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.529829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.529840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.529844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.529847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.529850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.529855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.540760 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.540782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.540802 LLDP, length 82 [|LLDP] 17:35:52.540804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e1 72de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.540806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.540812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.540815 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.540820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.540830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.540835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.540838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.540840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.540844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.540856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.540862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.549027 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.549048 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.549070 LLDP, length 82 [|LLDP] 17:35:52.549072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e7 bfab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.549074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.549081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.549085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.549089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.549101 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.549107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.549118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.549122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.549125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.549127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.549132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.560051 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.560084 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.560114 LLDP, length 82 [|LLDP] 17:35:52.560117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f0 2611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.560119 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.560125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.560137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.560142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.560146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.560148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.560155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.560158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.560162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.560175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.560181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.568297 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.568324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.568354 LLDP, length 82 [|LLDP] 17:35:52.568356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f6 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.568357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.568364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.568368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.568372 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.568378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.568388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.568393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.568396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.568398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.568411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.568417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.579299 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.579338 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.579361 LLDP, length 82 [|LLDP] 17:35:52.579362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fe d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.579365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.579371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.579375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.579378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.579390 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.579397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.579408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.579413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.579417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.579419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.579424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.590310 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.590337 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.590363 LLDP, length 82 [|LLDP] 17:35:52.590365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0607 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.590367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.590373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.590379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.590390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.590395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.590397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.590400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.590404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.590407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.590420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.590426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.598568 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.598594 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.598616 LLDP, length 82 [|LLDP] 17:35:52.598618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.598620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.598626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.598630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.598635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.598647 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.598652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.598663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.598667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.598670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.598673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.598677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.609581 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.609600 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.609622 LLDP, length 82 [|LLDP] 17:35:52.609624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0615 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.609626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.609633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.609637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.609640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.609652 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.609659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.609670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.609682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.609686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.609688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.609694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.620602 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.620625 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.620650 LLDP, length 82 [|LLDP] 17:35:52.620652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061e 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.620654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.620661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.620665 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.620670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.620682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.620687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.620698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.620701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.620705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.620719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.620725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.628847 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.628870 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.628892 LLDP, length 82 [|LLDP] 17:35:52.628893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.628896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.628906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.628910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.628913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.628926 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.628932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.628943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.628947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.628951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.628953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.628958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.639856 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.639881 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.639903 LLDP, length 82 [|LLDP] 17:35:52.639905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.639906 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.639912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.639923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.639928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.639932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.639934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.639940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.639948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.639952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.639964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.639970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.648115 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.648141 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.648163 LLDP, length 82 [|LLDP] 17:35:52.648165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0633 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.648167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.648173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.648177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.648180 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.648186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.648197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.648202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.648205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.648207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.648219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.648225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.659118 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.659140 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.659160 LLDP, length 82 [|LLDP] 17:35:52.659161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063b bfab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.659163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.659169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.659173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.659176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.659188 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.659193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.659204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.659208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.659211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.659213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.659218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.670144 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.670173 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.670197 LLDP, length 82 [|LLDP] 17:35:52.670199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0644 2611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.670201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.670208 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.670214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.670225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.670230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.670233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.670235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.670239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.670243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.670255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.670260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.678390 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.678415 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.678436 LLDP, length 82 [|LLDP] 17:35:52.678437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064a 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.678439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.678446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.678449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.678453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.678465 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.678470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.678481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.678485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.678489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.678491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.678496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.689406 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.689434 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.689457 LLDP, length 82 [|LLDP] 17:35:52.689459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0652 d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.689461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.689467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.689471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.689475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.689487 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.689493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.689503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.689508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.689511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.689513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.689518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.700411 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.700439 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.700462 LLDP, length 82 [|LLDP] 17:35:52.700464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065b 3fab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.700466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.700472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.700476 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.700482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.700493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.700498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.700501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.700503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.700507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.700519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.700524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.708668 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.708691 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.708711 LLDP, length 82 [|LLDP] 17:35:52.708713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.708715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.708721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.708724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.708728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.708740 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.708746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.708756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.708761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.708764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.708766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.708770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.719675 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.719698 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.719718 LLDP, length 82 [|LLDP] 17:35:52.719719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0669 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.719722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.719727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.719737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.719742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.719745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.719747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.719752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.719756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.719760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.719771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.719777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.730687 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.730711 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.730730 LLDP, length 82 [|LLDP] 17:35:52.730732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0672 594b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.730734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.730740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.730743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.730747 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.730753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.730763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.730767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.730771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.730773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.730784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.730789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.738944 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.738967 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.738989 LLDP, length 82 [|LLDP] 17:35:52.738991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.738993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.739000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.739003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.739007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.739019 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.739025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.739035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.739040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.739043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.739045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.739049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.749952 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.749976 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.749996 LLDP, length 82 [|LLDP] 17:35:52.749998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.750000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.750006 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.750011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.750022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.750026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.750029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.750031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.750035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.750039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.750051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.750056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.758207 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.758231 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.758251 LLDP, length 82 [|LLDP] 17:35:52.758253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0687 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.758254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.758260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.758264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.758267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.758279 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.758284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.758295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.758299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.758302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.758304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.758309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.769223 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.769247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.769268 LLDP, length 82 [|LLDP] 17:35:52.769270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068f bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.769272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.769278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.769282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.769285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.769297 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.769303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.769326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.769332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.769335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.769338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.769342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.780234 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.780251 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.780272 LLDP, length 82 [|LLDP] 17:35:52.780273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0698 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.780275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.780281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.780285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.780290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.780301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.780305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.780309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.780311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.780315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.780326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.780332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.788491 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.788515 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.788536 LLDP, length 82 [|LLDP] 17:35:52.788537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069e 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.788539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.788545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.788549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.788553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.788565 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.788570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.788581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.788586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.788589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.788591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.788595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.799501 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.799518 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.799539 LLDP, length 82 [|LLDP] 17:35:52.799541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a6 d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.799543 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.799549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.799559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.799565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.799568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.799570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.799576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.799579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.799583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.799594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.799600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.810508 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.810533 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.810554 LLDP, length 82 [|LLDP] 17:35:52.810556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06af 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.810558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.810565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.810569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.810572 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.810578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.810588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.810593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.810596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.810598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.810610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.810615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.818766 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.818790 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.818809 LLDP, length 82 [|LLDP] 17:35:52.818810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.818812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.818818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.818822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.818826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.818837 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.818843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.818853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.818857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.818860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.818863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.818868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.829775 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.829799 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.829819 LLDP, length 82 [|LLDP] 17:35:52.829821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bd f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.829823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.829829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.829835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.829846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.829851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.829853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.829856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.829860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.829863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.829875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.829880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.838032 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.838055 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.838076 LLDP, length 82 [|LLDP] 17:35:52.838077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c4 3fab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.838080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.838085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.838089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.838092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.838103 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.838109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.838119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.838124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.838127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.838130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.838134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.849034 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.849051 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.849071 LLDP, length 82 [|LLDP] 17:35:52.849073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cc a619 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.849075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.849082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.849085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.849097 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.849103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.849114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860054 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.860077 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.860096 LLDP, length 82 [|LLDP] 17:35:52.860098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.860100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.860106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.860110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.860114 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.860119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.860128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.860143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.860148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.860155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.868307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.868331 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.868350 LLDP, length 82 [|LLDP] 17:35:52.868352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06db 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.868354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.868360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.868363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.868367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.868378 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.868384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.868394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.868397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.868402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.868404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.868408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.879328 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.879352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.879372 LLDP, length 82 [|LLDP] 17:35:52.879374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e3 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.879376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.879382 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.879387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.879397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.879400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.879404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.879408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.879420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.879425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.879427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.879432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.890327 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.890350 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.890369 LLDP, length 82 [|LLDP] 17:35:52.890371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ec 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.890373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.890379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.890383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.890386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.890398 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.890403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.890413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.890416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.890421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.890423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.890428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.898613 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.898640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.898668 LLDP, length 82 [|LLDP] 17:35:52.898670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f2 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.898672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.898680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.898684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.898688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.898699 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.898705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.898717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.898721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.898725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.898728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.898733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.909607 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.909634 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.909657 LLDP, length 82 [|LLDP] 17:35:52.909658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fa d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.909661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.909668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.909672 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.909677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.909688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.909691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.909695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.909707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.909713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.909715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.909720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.920609 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.920632 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.920653 LLDP, length 82 [|LLDP] 17:35:52.920655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0703 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.920656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.920662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.920666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.920670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.920681 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.920687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.920697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.920701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.920705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.920707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.920712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.928867 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.928891 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.928912 LLDP, length 82 [|LLDP] 17:35:52.928914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.928916 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.928922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.928932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.928935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.928941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.928944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.928949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.928961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.928966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.928969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.928973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.939875 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.939898 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.939918 LLDP, length 82 [|LLDP] 17:35:52.939919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0711 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.939921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.939928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.939931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.939936 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.939940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.939950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.939954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.939965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.939971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.939973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.939979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.948131 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.948148 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.948168 LLDP, length 82 [|LLDP] 17:35:52.948170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0718 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.948172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.948178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.948181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.948185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.948196 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.948202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.948212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.948215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.948219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.948221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.948226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.959145 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.959163 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.959183 LLDP, length 82 [|LLDP] 17:35:52.959184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0720 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.959186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.959192 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.959198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.959208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.959211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.959215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.959219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.959231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.959236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.959238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.959243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.970154 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.970178 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.970198 LLDP, length 82 [|LLDP] 17:35:52.970200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.970202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.970208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.970212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.970215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.970227 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.970233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.970243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.970246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.970251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.970253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.970258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.978412 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.978435 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.978455 LLDP, length 82 [|LLDP] 17:35:52.978457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072f 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.978459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.978465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.978468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.978472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.978483 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.978489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.978499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.978502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.978506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.978508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.978513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.989419 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.989442 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.989461 LLDP, length 82 [|LLDP] 17:35:52.989462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0737 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.989464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.989470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.989474 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.989479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.989489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.989492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.989495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.989507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.989512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.989515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.989519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.000430 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.000455 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.000474 LLDP, length 82 [|LLDP] 17:35:53.000476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0740 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.000478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.000484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.000488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.000492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.000503 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.000509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.000519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.000522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.000527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.000529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.000534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.008690 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.008707 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.008728 LLDP, length 82 [|LLDP] 17:35:53.008729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0746 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.008731 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.008737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.008748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.008751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.008756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.008760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.008764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.008776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.008781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.008783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.008788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.019698 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.019723 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.019743 LLDP, length 82 [|LLDP] 17:35:53.019745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074e d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.019747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.019753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.019757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.019761 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.019766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.019776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.019779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.019791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.019796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.019798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.019803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.030709 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.030727 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.030746 LLDP, length 82 [|LLDP] 17:35:53.030747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0757 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.030749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.030755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.030759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.030763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.030774 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.030780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.030790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.030793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.030797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.030800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.030804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.038964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.038987 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.039006 LLDP, length 82 [|LLDP] 17:35:53.039008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.039010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.039016 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.039021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.039032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.039036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.039040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.039043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.039055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.039060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.039063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.039067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.049975 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.049999 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.050020 LLDP, length 82 [|LLDP] 17:35:53.050022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0765 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.050024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.050030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.050034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.050038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.050049 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.050055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.050065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.050069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.050074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.050076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.050081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.058232 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.058254 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.058274 LLDP, length 82 [|LLDP] 17:35:53.058276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076c 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.058278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.058284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.058287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.058291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.058303 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.058309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.058319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.058321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.058326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.058328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.058333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.069248 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.069266 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.069285 LLDP, length 82 [|LLDP] 17:35:53.069287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0774 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.069289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.069295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.069298 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.069304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.069314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.069317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.069321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.069333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.069338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.069340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.069345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.080251 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.080275 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.080295 LLDP, length 82 [|LLDP] 17:35:53.080297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.080299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.080305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.080309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.080313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.080324 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.080330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.080340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.080343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.080348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.080350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.080354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.088513 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.088537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.088557 LLDP, length 82 [|LLDP] 17:35:53.088558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0783 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.088560 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.088565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.088575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.088579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.088584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.088588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.088592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.088604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.088609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.088611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.088616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.099518 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.099541 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.099563 LLDP, length 82 [|LLDP] 17:35:53.099565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078b bfb4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.099567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.099573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.099577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.099581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.099586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.099596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.099599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.099611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.099616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.099618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.099623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.110527 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.110551 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.110571 LLDP, length 82 [|LLDP] 17:35:53.110573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0794 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.110575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.110581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.110585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.110589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.110600 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.110606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.110616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.110619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.110624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.110627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.110631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.118786 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.118808 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.118829 LLDP, length 82 [|LLDP] 17:35:53.118831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079a 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.118833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.118839 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.118844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.118854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.118857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.118861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.118865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.118877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.118881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.118884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.118888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.129798 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.129815 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.129835 LLDP, length 82 [|LLDP] 17:35:53.129837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a2 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.129839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.129845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.129848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.129852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.129863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.129869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.129879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.129882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.129887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.129889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.129894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.138055 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.138081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.138101 LLDP, length 82 [|LLDP] 17:35:53.138102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a9 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.138104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.138110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.138114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.138118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.138130 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.138135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.138145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.138148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.138152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.138154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.138159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.149069 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.149086 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.149106 LLDP, length 82 [|LLDP] 17:35:53.149108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b1 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.149110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.149116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.149120 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.149125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.149136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.149139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.149143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.149155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.149160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.149163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.149167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.160076 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.160100 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.160120 LLDP, length 82 [|LLDP] 17:35:53.160122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b9 f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.160123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.160129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.160133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.160137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.160148 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.160154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.160164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.160167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.160171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.160173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.160178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.168329 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.168352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.168372 LLDP, length 82 [|LLDP] 17:35:53.168374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c0 3fad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.168376 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.168382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.168392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.168395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.168400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.168404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.168408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.168420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.168425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.168427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.168432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.179352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.179375 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.179397 LLDP, length 82 [|LLDP] 17:35:53.179398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c8 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.179400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.179407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.179411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.179415 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.179420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.179430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.179434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.179445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.179451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.179453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.179458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.190352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.190375 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.190395 LLDP, length 82 [|LLDP] 17:35:53.190397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.190399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.190404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.190409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.190413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.190425 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.190430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.190440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.190443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.190447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.190450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.190454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.198611 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.198634 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.198654 LLDP, length 82 [|LLDP] 17:35:53.198655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d7 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.198657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.198663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.198668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.198678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.198681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.198685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.198689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.198701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.198706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.198709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.198714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.209623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.209641 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.209660 LLDP, length 82 [|LLDP] 17:35:53.209661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07df bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.209663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.209670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.209673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.209677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.209688 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.209694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.209704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.209708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.209712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.209715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.209719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.220633 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.220650 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.220670 LLDP, length 82 [|LLDP] 17:35:53.220671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e8 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.220673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.220679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.220683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.220687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.220698 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.220704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.220713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.220716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.220721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.220723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.220728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.228886 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.228910 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.228930 LLDP, length 82 [|LLDP] 17:35:53.228931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ee 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.228934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.228939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.228943 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.228949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.228959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.228962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.228966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.228977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.228982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.228985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.228989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.239902 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.239919 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.239940 LLDP, length 82 [|LLDP] 17:35:53.239941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f6 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.239943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.239949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.239953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.239956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.239968 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.239974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.239984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.239987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.239992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.239994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.239999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.248153 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.248176 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.248196 LLDP, length 82 [|LLDP] 17:35:53.248197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fd 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.248200 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.248205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.248215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.248219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.248224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.248227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.248231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.248243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.248248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.248251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.248255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.259164 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.259187 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.259207 LLDP, length 82 [|LLDP] 17:35:53.259209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0805 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.259211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.259217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.259221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.259224 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.259229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.259240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.259243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.259255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.259260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.259262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.259267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.270181 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.270200 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.270221 LLDP, length 82 [|LLDP] 17:35:53.270222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080d f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.270224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.270230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.270234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.270238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.270249 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.270255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.270266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.270269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.270274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.270276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.270281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.278437 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.278461 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.278481 LLDP, length 82 [|LLDP] 17:35:53.278483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0814 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.278485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.278490 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.278496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.278506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.278509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.278513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.278517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.278528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.278533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.278536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.278540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.289443 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.289466 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.289485 LLDP, length 82 [|LLDP] 17:35:53.289487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.289489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.289495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.289499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.289502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.289514 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.289519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.289530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.289533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.289537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.289539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.289544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.300454 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.300478 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.300498 LLDP, length 82 [|LLDP] 17:35:53.300500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.300502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.300508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.300512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.300515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.300526 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.300532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.300542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.300545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.300549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.300552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.300557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.308710 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.308733 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.308754 LLDP, length 82 [|LLDP] 17:35:53.308755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082b 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.308757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.308763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.308767 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.308772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.308782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.308785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.308790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.308801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.308807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.308809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.308814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.319731 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.319765 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.319795 LLDP, length 82 [|LLDP] 17:35:53.319797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0833 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.319799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.319807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.319811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.319815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.319827 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.319833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.319846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.319849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.319854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.319856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.319861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.330740 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.330768 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.330791 LLDP, length 82 [|LLDP] 17:35:53.330792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083c 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.330795 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.330801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.330812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.330816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.330822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.330825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.330829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.330853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.330858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.330861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.330866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.338998 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.339015 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.339037 LLDP, length 82 [|LLDP] 17:35:53.339039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0842 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.339041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.339051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.339055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.339059 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.339064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.339074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.339078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.339090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.339095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.339097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.339101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.350005 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.350028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.350050 LLDP, length 82 [|LLDP] 17:35:53.350052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084a d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.350054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.350060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.350064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.350068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.350080 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.350086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.350096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.350099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.350104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.350110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.350130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.358307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.358341 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.358372 LLDP, length 82 [|LLDP] 17:35:53.358373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0851 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.358376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.358386 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.358393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.358410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.358414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.358419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.358422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.358435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.358441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.358443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.358449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.369307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.369339 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.369370 LLDP, length 82 [|LLDP] 17:35:53.369372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0859 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.369375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.369384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.369388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.369392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.369405 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.369412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.369427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.369431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.369436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.369439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.369444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.380305 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.380336 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.380373 LLDP, length 82 [|LLDP] 17:35:53.380375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0861 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.380377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.380385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.380389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.380392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.380404 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.380411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.380424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.380428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.380433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.380435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.380440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.388538 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.388564 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.388586 LLDP, length 82 [|LLDP] 17:35:53.388588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0868 3fd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.388590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.388597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.388600 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.388606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.388617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.388624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.388629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.388641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.388646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.388649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.388654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.399551 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.399580 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.399603 LLDP, length 82 [|LLDP] 17:35:53.399605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0870 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.399607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.399614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.399618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.399621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.399633 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.399639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.399650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.399654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.399658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.399661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.399666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.410559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.410580 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.410604 LLDP, length 82 [|LLDP] 17:35:53.410605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.410607 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.410614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.410625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.410628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.410634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.410638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.410642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.410654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.410667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.410670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.410676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.418819 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.418847 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.418872 LLDP, length 82 [|LLDP] 17:35:53.418874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087f 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.418876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.418883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.418887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.418891 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.418897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.418908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.418911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.418924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.418929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.418932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.418936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.429823 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.429849 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.429873 LLDP, length 82 [|LLDP] 17:35:53.429875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0887 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.429877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.429883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.429887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.429891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.429902 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.429908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.429919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.429923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.429927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.429930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.429934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.438081 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.438110 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.438132 LLDP, length 82 [|LLDP] 17:35:53.438134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.438136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.438142 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.438147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.438158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.438161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.438165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.438169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.438181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.438190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.438192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.438198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.449100 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.449126 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.449147 LLDP, length 82 [|LLDP] 17:35:53.449149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0896 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.449151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.449157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.449161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.449165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.449176 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.449182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.449197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.449200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.449204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.449207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.449212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.460123 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.460149 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.460172 LLDP, length 82 [|LLDP] 17:35:53.460174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089e d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.460176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.460183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.460190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.460194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.460206 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.460212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.460223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.460226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.460230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.460232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.460237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.468357 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.468383 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.468404 LLDP, length 82 [|LLDP] 17:35:53.468406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a5 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.468408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.468414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.468418 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.468423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.468434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.468437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.468441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.468453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.468458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.468460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.468465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.479394 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.479424 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.479447 LLDP, length 82 [|LLDP] 17:35:53.479448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ad 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.479450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.479456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.479460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.479464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.479475 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.479481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.479493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.479496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.479501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.479503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.479507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.490381 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.490410 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.490434 LLDP, length 82 [|LLDP] 17:35:53.490435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b5 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.490437 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.490443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.490455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.490458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.490464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.490468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.490472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.490484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.490488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.490491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.490496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.498633 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.498657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.498678 LLDP, length 82 [|LLDP] 17:35:53.498680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bc 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.498681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.498688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.498692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.498696 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.498701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.498712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.498715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.498727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.498731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.498738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.498743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.509640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.509663 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.509688 LLDP, length 82 [|LLDP] 17:35:53.509690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c4 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.509691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.509698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.509702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.509706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.509718 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.509724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.509734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.509737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.509742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.509744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.509749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.520659 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.520685 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.520713 LLDP, length 82 [|LLDP] 17:35:53.520714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.520716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.520722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.520727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.520738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.520741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.520745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.520749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.520761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.520766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.520769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.520774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.528910 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.528935 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.528956 LLDP, length 82 [|LLDP] 17:35:53.528958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d3 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.528960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.528966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.528970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.528974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.528985 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.528991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.529002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.529006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.529010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.529012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.529017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.539922 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.539947 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.539968 LLDP, length 82 [|LLDP] 17:35:53.539970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08db bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.539972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.539978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.539982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.539985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.539997 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.540003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.540013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.540016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.540021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.540023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.540027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.548179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.548203 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.548224 LLDP, length 82 [|LLDP] 17:35:53.548226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.548228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.548234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.548238 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.548243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.548254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.548256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.548260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.548272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.548276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.548279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.548284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.559187 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.559210 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.559232 LLDP, length 82 [|LLDP] 17:35:53.559233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ea 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.559235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.559241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.559245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.559248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.559259 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.559266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.559276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.559279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.559283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.559286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.559291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.570205 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.570246 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.570274 LLDP, length 82 [|LLDP] 17:35:53.570276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f2 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.570278 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.570284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.570297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.570301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.570307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.570311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.570314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.570326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.570331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.570334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.570338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.578462 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.578489 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.578513 LLDP, length 82 [|LLDP] 17:35:53.578515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f9 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.578517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.578523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.578526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.578530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.578536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.578547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.578550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.578563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.578567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.578570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.578574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.589471 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.589497 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.589520 LLDP, length 82 [|LLDP] 17:35:53.589522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0901 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.589524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.589531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.589535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.589539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.589555 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.589561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.589572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.589575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.589579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.589582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.589587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.600484 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.600519 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.600546 LLDP, length 82 [|LLDP] 17:35:53.600548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0909 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.600551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.600558 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.600563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.600576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.600580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.600584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.600588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.600600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.600605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.600612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.600617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.608735 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.608766 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.608789 LLDP, length 82 [|LLDP] 17:35:53.608791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0910 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.608793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.608800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.608804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.608807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.608819 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.608826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.608836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.608839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.608843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.608845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.608850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.619751 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.619782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.619808 LLDP, length 82 [|LLDP] 17:35:53.619810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0918 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.619812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.619820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.619823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.619827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.619839 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.619845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.619856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.619859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.619863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.619866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.619871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.628000 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.628026 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.628048 LLDP, length 82 [|LLDP] 17:35:53.628050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.628052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.628058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.628062 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.628067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.628078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.628081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.628085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.628097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.628102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.628105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.628110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.639013 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.639040 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.639063 LLDP, length 82 [|LLDP] 17:35:53.639064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0927 596c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.639066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.639073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.639077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.639081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.639092 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.639098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.639109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.639113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.639117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.639119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.639124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.650019 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.650043 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.650065 LLDP, length 82 [|LLDP] 17:35:53.650067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092f bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.650069 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.650075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.650085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.650089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.650094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.650098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.650102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.650114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.650118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.650121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.650126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.658282 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.658309 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.658333 LLDP, length 82 [|LLDP] 17:35:53.658335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.658337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.658343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.658347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.658351 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.658357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.658369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.658376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.658388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.658394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.658396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.658401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.669292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.669324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.669348 LLDP, length 82 [|LLDP] 17:35:53.669350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093e 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.669352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.669360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.669364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.669368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.669380 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.669386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.669398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.669401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.669406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.669408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.669413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.680306 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.680329 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.680358 LLDP, length 82 [|LLDP] 17:35:53.680359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0946 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.680362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.680369 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.680374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.680386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.680389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.680393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.680396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.680409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.680414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.680417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.680422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.688581 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.688613 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.688657 LLDP, length 82 [|LLDP] 17:35:53.688660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094d 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.688662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.688671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.688675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.688678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.688690 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.688697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.688710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.688713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.688718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.688720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.688725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.699577 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.699606 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.699631 LLDP, length 82 [|LLDP] 17:35:53.699633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0955 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.699635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.699642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.699646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.699649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.699661 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.699667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.699678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.699682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.699687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.699689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.699694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.710586 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.710606 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.710628 LLDP, length 82 [|LLDP] 17:35:53.710630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095d f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.710632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.710639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.710643 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.710649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.710660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.710663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.710666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.710679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.710684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.710686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.710691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.718830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.718854 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.718878 LLDP, length 82 [|LLDP] 17:35:53.718880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0964 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.718883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.718889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.718893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.718896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.718909 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.718914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.718925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.718929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.718933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.718936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.718940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.729847 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.729874 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.729901 LLDP, length 82 [|LLDP] 17:35:53.729903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.729905 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.729911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.729922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.729926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.729932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.729935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.729939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.729952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.729957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.729959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.729964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.738099 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.738128 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.738149 LLDP, length 82 [|LLDP] 17:35:53.738151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0972 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.738153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.738159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.738163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.738167 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.738173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.738185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.738188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.738200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.738205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.738207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.738212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.749111 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.749139 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.749161 LLDP, length 82 [|LLDP] 17:35:53.749163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.749165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.749171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.749175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.749178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.749190 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.749196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.749207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.749210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.749215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.749218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.749231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.760131 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.760163 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.760192 LLDP, length 82 [|LLDP] 17:35:53.760194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0983 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.760196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.760204 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.760210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.760222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.760225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.760229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.760233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.760245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.760250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.760253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.760258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.768380 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.768407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.768430 LLDP, length 82 [|LLDP] 17:35:53.768432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.768434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.768441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.768445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.768448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.768460 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.768466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.768499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.768503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.768508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.768510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.768515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.779412 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.779433 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.779455 LLDP, length 82 [|LLDP] 17:35:53.779456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0992 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.779458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.779465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.779469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.779472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.779485 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.779490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.779502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.779505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.779509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.779511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.779516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.790395 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.790418 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.790439 LLDP, length 82 [|LLDP] 17:35:53.790441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099a d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.790443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.790449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.790452 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.790458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.790468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.790471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.790475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.790487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.790492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.790495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.790500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.798655 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.798672 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.798693 LLDP, length 82 [|LLDP] 17:35:53.798694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a1 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.798696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.798702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.798706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.798710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.798721 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.798727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.798738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.798741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.798745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.798747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.798752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.809662 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.809684 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.809702 LLDP, length 82 [|LLDP] 17:35:53.809704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a9 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.809706 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.809711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.809721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.809725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.809730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.809734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.809737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.809750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.809755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.809758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.809762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.820677 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.820700 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.820723 LLDP, length 82 [|LLDP] 17:35:53.820725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b1 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.820726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.820732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.820736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.820739 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.820744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.820754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.820757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.820770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.820775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.820777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.820782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.828930 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.828954 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.828973 LLDP, length 82 [|LLDP] 17:35:53.828975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b8 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.828977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.828982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.828986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.828989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.829002 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.829007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.829017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.829020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.829024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.829026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.829031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.839938 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.839960 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.839980 LLDP, length 82 [|LLDP] 17:35:53.839982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c0 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.839984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.839990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.839995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.840005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.840007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.840011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.840015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.840027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.840032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.840034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.840039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.848196 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.848218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.848238 LLDP, length 82 [|LLDP] 17:35:53.848239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c6 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.848241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.848247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.848250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.848254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.848266 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.848272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.848282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.848284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.848289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.848291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.848296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.859210 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.859226 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.859245 LLDP, length 82 [|LLDP] 17:35:53.859247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cf 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.859249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.859255 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.859259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.859262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.859274 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.859280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.859290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.859293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.859298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.859300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.859316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.870216 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.870239 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.870258 LLDP, length 82 [|LLDP] 17:35:53.870260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d7 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.870262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.870268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.870272 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.870278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.870288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.870291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.870294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.870307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.870312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.870314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.870319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.878476 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.878498 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.878516 LLDP, length 82 [|LLDP] 17:35:53.878518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.878519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.878525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.878529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.878533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.878545 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.878551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.878561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.878565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.878569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.878571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.878577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.889484 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.889507 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.889526 LLDP, length 82 [|LLDP] 17:35:53.889528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e6 7306 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.889530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.889535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.889545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.889548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.889553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.889557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.889560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.889572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.889578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.889580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.889584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.900493 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.900516 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.900535 LLDP, length 82 [|LLDP] 17:35:53.900537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ee d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.900538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.900544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.900548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.900552 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.900557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.900568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.900571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.900583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.900588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.900590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.900594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.908749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.908772 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.908790 LLDP, length 82 [|LLDP] 17:35:53.908792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f5 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.908794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.908800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.908804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.908808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.908820 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.908825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.908835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.908838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.908842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.908844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.908849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.919764 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.919780 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.919799 LLDP, length 82 [|LLDP] 17:35:53.919801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fd 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.919803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.919809 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.919814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.919824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.919827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.919830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.919834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.919846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.919851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.919854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.919858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.928026 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.928048 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.928067 LLDP, length 82 [|LLDP] 17:35:53.928068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a03 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.928071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.928076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.928080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.928083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.928095 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.928100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.928110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.928113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.928118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.928120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.928125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.941168 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.941184 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.941203 LLDP, length 82 [|LLDP] 17:35:53.941205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0c 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.941207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.941214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.941217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.941221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.941233 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.941238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.941248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.941251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.941256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.941258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.941262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.950037 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.950060 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.950079 LLDP, length 82 [|LLDP] 17:35:53.950081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a14 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.950083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.950088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.950092 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.950097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.950107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.950109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.950113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.950125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.950130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.950132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.950137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.958294 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.958317 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.958335 LLDP, length 82 [|LLDP] 17:35:53.958337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.958339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.958344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.958348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.958352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.958363 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.958368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.958379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.958382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.958386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.958388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.958393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.969308 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.969330 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.969349 LLDP, length 82 [|LLDP] 17:35:53.969350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a23 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.969352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.969358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.969368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.969371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.969377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.969380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.969384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.969396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.969401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.969403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.969408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.980314 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.980336 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.980355 LLDP, length 82 [|LLDP] 17:35:53.980357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2b bfcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.980359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.980364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.980368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.980371 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.980377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.980387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.980390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.980402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.980407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.980409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.980413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.988573 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.988595 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.988614 LLDP, length 82 [|LLDP] 17:35:53.988616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.988618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.988624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.988627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.988631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.988643 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.988648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.988658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.988661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.988665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.988668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.988673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.001855 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.001871 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.001890 LLDP, length 82 [|LLDP] 17:35:54.001891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3a 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.001893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.001899 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.001904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.001914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.001917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.001921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.001925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.001937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.001943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.001945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.001950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.010601 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.010616 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.010635 LLDP, length 82 [|LLDP] 17:35:54.010637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a42 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.010638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.010644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.010648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.010652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.010663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.010669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.010678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.010681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.010685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.010688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.010693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.018903 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.018949 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.018996 LLDP, length 82 [|LLDP] 17:35:54.018998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a49 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.019000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.019011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.019014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.019018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.019031 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.019038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.019054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.019059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.019064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.019066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.019072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.029923 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.029974 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.030024 LLDP, length 82 [|LLDP] 17:35:54.030027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a51 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.030029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.030042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.030046 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.030055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.030073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.030077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.030081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.030095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.030102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.030105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.030111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.038182 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.038238 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.038287 LLDP, length 82 [|LLDP] 17:35:54.038289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a57 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.038292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.038303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.038307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.038311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.038323 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.038332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.038350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.038354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.038359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.038361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.038367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.049184 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.049253 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.049306 LLDP, length 82 [|LLDP] 17:35:54.049309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a60 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.049312 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.049319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.049340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.049346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.049359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.049363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.049367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.049381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.049387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.049390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.049396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.062573 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.062618 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.062666 LLDP, length 82 [|LLDP] 17:35:54.062668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a68 a63c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.062671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.062681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.062685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.062689 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.062695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.062714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.062718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.062732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.062738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.062740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.062746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.068453 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.068509 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.068557 LLDP, length 82 [|LLDP] 17:35:54.068559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.068561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.068573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.068577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.068580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.068593 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.068600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.068622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.068627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.068633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.068635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.068641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.079449 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.079501 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.079546 LLDP, length 82 [|LLDP] 17:35:54.079548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a77 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.079551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.079562 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.079568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.079585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.079589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.079594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.079598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.079611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.079618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.079621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.079628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.090468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.090527 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.090582 LLDP, length 82 [|LLDP] 17:35:54.090584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7f bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.090586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.090598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.090602 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.090606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.090620 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.090628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.090647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.090652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.090658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.090660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.090667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.098712 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.098751 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.098793 LLDP, length 82 [|LLDP] 17:35:54.098795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.098797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.098807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.098811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.098814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.098826 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.098834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.098850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.098854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.098860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.098862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.098867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.109693 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.109721 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.109746 LLDP, length 82 [|LLDP] 17:35:54.109747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8e 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.109749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.109757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.109760 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.109766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.109778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.109781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.109784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.109796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.109802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.109804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.109809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.117945 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.117971 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.117991 LLDP, length 82 [|LLDP] 17:35:54.117993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a94 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.117995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.118001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.118005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.118008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.118020 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.118026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.118037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.118041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.118045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.118047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.118052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.128956 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.128973 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.128993 LLDP, length 82 [|LLDP] 17:35:54.128995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9d 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.128996 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.129002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.129012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.129016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.129021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.129025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.129028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.129042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.129047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.129049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.129054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.139964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.139991 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.140011 LLDP, length 82 [|LLDP] 17:35:54.140014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa5 8c9d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.140015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.140022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.140025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.140029 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.140034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.140045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.140048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.140060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.140065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.140067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.140072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.148219 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.148241 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.148260 LLDP, length 82 [|LLDP] 17:35:54.148262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aab d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.148263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.148269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.148273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.148277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.148289 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.148294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.148305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.148308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.148312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.148315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.148320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.159230 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.159255 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.159275 LLDP, length 82 [|LLDP] 17:35:54.159277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab4 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.159279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.159285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.159290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.159301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.159315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.159320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.159324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.159339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.159344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.159346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.159351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.170240 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.170264 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.170284 LLDP, length 82 [|LLDP] 17:35:54.170286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abc a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.170287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.170294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.170297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.170301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.170313 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.170319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.170329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.170332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.170337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.170340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.170344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.178500 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.178516 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.178537 LLDP, length 82 [|LLDP] 17:35:54.178539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac2 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.178541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.178547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.178550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.178554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.178566 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.178572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.178581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.178585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.178589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.178591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.178596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.189510 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.189527 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.189546 LLDP, length 82 [|LLDP] 17:35:54.189548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acb 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.189550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.189556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.189559 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.189565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.189575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.189578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.189582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.189594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.189598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.189601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.189606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.200521 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.200538 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.200557 LLDP, length 82 [|LLDP] 17:35:54.200559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad3 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.200561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.200567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.200570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.200574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.200586 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.200591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.200602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.200606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.200610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.200612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.200617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.208776 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.208803 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.208825 LLDP, length 82 [|LLDP] 17:35:54.208827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.208829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.208834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.208845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.208849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.208854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.208858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.208861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.208874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.208878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.208881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.208885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.219785 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.219822 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.219845 LLDP, length 82 [|LLDP] 17:35:54.219847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae2 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.219849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.219856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.219859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.219863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.219869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.219879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.219882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.219894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.219899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.219902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.219906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.228079 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.228120 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.228147 LLDP, length 82 [|LLDP] 17:35:54.228150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae8 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.228152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.228162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.228166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.228170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.228182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.228189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.228204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.228207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.228212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.228215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.228220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.239058 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.239081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.239108 LLDP, length 82 [|LLDP] 17:35:54.239110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af1 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.239112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.239118 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.239123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.239135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.239138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.239142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.239146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.239158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.239163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.239166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.239171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.250065 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.250081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.250102 LLDP, length 82 [|LLDP] 17:35:54.250104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af9 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.250106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.250112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.250115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.250119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.250131 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.250137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.250147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.250149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.250154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.250156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.250161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.258320 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.258338 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.258359 LLDP, length 82 [|LLDP] 17:35:54.258360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aff d96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.258362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.258368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.258372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.258375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.258387 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.258393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.258403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.258406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.258410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.258413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.258417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.269327 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.269351 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.269372 LLDP, length 82 [|LLDP] 17:35:54.269373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b08 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.269376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.269381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.269385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.269390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.269400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.269403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.269407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.269419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.269424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.269426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.269431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.280340 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.280362 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.280381 LLDP, length 82 [|LLDP] 17:35:54.280383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b10 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.280384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.280390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.280394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.280397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.280409 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.280414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.280424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.280428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.280432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.280435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.280439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.288617 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.288648 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.288676 LLDP, length 82 [|LLDP] 17:35:54.288678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b16 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.288680 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.288686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.288698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.288703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.288709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.288712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.288716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.288729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.288734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.288736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.288741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.299615 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.299645 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.299679 LLDP, length 82 [|LLDP] 17:35:54.299681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1f 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.299683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.299694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.299698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.299702 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.299707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.299719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.299723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.299736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.299741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.299744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.299749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.310628 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.310650 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.310674 LLDP, length 82 [|LLDP] 17:35:54.310676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b27 bfd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.310678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.310685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.310689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.310692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.310711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.310718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.310729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.310733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.310737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.310740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.310744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.318882 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.318906 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.318931 LLDP, length 82 [|LLDP] 17:35:54.318933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.318935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.318942 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.318948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.318960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.318963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.318967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.318971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.318992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.318998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.319000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.319005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.329891 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.329912 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.329935 LLDP, length 82 [|LLDP] 17:35:54.329937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b36 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.329939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.329946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.329950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.329954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.329966 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.329971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.329983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.329986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.329990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.329992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.329998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.338146 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.338170 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.338191 LLDP, length 82 [|LLDP] 17:35:54.338193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3c bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.338195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.338201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.338205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.338208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.338224 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.338230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.338241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.338244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.338248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.338251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.338256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.349157 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.349183 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.349205 LLDP, length 82 [|LLDP] 17:35:54.349207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b45 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.349209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.349215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.349218 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.349224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.349234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.349237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.349241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.349258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.349263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.349266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.349271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.360166 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.360191 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.360211 LLDP, length 82 [|LLDP] 17:35:54.360212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4d 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.360214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.360221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.360225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.360228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.360240 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.360246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.360261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.360265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.360269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.360272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.360277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.368422 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.368447 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.368469 LLDP, length 82 [|LLDP] 17:35:54.368470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b53 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.368472 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.368478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.368488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.368491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.368497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.368501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.368505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.368517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.368522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.368525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.368530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.379439 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.379459 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.379482 LLDP, length 82 [|LLDP] 17:35:54.379483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5c 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.379486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.379492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.379496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.379500 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.379506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.379517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.379520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.379532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.379537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.379540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.379545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.390448 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.390469 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.390493 LLDP, length 82 [|LLDP] 17:35:54.390494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b64 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.390496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.390503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.390507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.390510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.390522 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.390528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.390539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.390542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.390546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.390549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.390554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.398699 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.398722 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.398743 LLDP, length 82 [|LLDP] 17:35:54.398744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6a f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.398746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.398753 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.398758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.398769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.398772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.398776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.398779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.398792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.398797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.398799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.398804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.409705 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.409727 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.409747 LLDP, length 82 [|LLDP] 17:35:54.409749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b73 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.409751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.409756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.409760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.409764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.409775 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.409781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.409792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.409795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.409799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.409802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.409807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.417964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.417985 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.418004 LLDP, length 82 [|LLDP] 17:35:54.418006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.418008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.418014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.418018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.418021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.418033 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.418039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.418049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.418052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.418056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.418059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.418064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.428981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.428999 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.429019 LLDP, length 82 [|LLDP] 17:35:54.429020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.429023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.429028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.429032 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.429037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.429048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.429051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.429055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.429068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.429073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.429076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.429080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.439983 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.440006 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.440025 LLDP, length 82 [|LLDP] 17:35:54.440027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8a 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.440029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.440035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.440039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.440043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.440055 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.440060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.440070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.440073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.440078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.440081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.440085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.448242 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.448264 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.448284 LLDP, length 82 [|LLDP] 17:35:54.448286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b90 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.448288 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.448294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.448304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.448307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.448312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.448316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.448320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.448333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.448338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.448340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.448345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.459248 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.459270 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.459290 LLDP, length 82 [|LLDP] 17:35:54.459291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b99 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.459293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.459299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.459312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.459318 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.459323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.459334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.459337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.459350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.459355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.459357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.459362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.470259 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.470280 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.470299 LLDP, length 82 [|LLDP] 17:35:54.470301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba1 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.470303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.470309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.470312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.470316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.470328 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.470333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.470344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.470347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.470351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.470353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.470358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.478514 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.478537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.478557 LLDP, length 82 [|LLDP] 17:35:54.478558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba7 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.478560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.478566 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.478571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.478581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.478584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.478588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.478591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.478603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.478608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.478611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.478615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.489527 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.489551 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.489570 LLDP, length 82 [|LLDP] 17:35:54.489572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb0 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.489574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.489580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.489583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.489587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.489598 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.489604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.489614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.489617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.489621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.489624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.489629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.500536 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.500558 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.500578 LLDP, length 82 [|LLDP] 17:35:54.500580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb8 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.500582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.500587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.500591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.500595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.500607 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.500613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.500623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.500626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.500631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.500633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.500638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.508795 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.508817 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.508836 LLDP, length 82 [|LLDP] 17:35:54.508838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbe f308 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.508840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.508845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.508849 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.508855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.508864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.508867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.508871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.508883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.508888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.508890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.508895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.519803 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.519825 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.519844 LLDP, length 82 [|LLDP] 17:35:54.519845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc7 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.519847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.519853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.519857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.519861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.519873 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.519879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.519889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.519892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.519896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.519899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.519903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.528060 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.528083 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.528103 LLDP, length 82 [|LLDP] 17:35:54.528105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.528107 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.528113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.528123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.528126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.528131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.528135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.528138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.528151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.528156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.528158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.528163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.539072 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.539096 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.539116 LLDP, length 82 [|LLDP] 17:35:54.539118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.539120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.539126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.539130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.539134 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.539139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.539150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.539153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.539165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.539170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.539173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.539178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.550086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.550103 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.550122 LLDP, length 82 [|LLDP] 17:35:54.550124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bde 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.550126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.550132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.550136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.550140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.550152 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.550158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.550169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.550172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.550176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.550178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.550183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.558340 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.558356 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.558376 LLDP, length 82 [|LLDP] 17:35:54.558377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be4 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.558379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.558385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.558390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.558400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.558403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.558407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.558410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.558422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.558427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.558430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.558434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.569352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.569376 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.569396 LLDP, length 82 [|LLDP] 17:35:54.569398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bed 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.569400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.569406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.569410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.569414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.569426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.569432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.569442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.569445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.569449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.569451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.569456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.580362 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.580388 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.580409 LLDP, length 82 [|LLDP] 17:35:54.580410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf5 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.580412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.580418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.580422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.580425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.580437 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.580443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.580453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.580456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.580461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.580463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.580467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.588616 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.588640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.588660 LLDP, length 82 [|LLDP] 17:35:54.588661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfb d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.588663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.588669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.588672 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.588677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.588687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.588690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.588693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.588705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.588710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.588712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.588716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.599626 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.599649 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.599668 LLDP, length 82 [|LLDP] 17:35:54.599669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c04 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.599671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.599677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.599681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.599685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.599697 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.599702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.599712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.599716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.599720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.599722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.599727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.610641 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.610657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.610675 LLDP, length 82 [|LLDP] 17:35:54.610677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.610679 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.610684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.610694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.610697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.610702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.610706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.610710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.610722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.610727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.610729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.610733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.618895 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.618917 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.618938 LLDP, length 82 [|LLDP] 17:35:54.618939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c12 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.618941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.618948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.618952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.618956 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.618961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.618971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.618974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.618985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.618990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.618993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.618997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.629906 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.629928 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.629948 LLDP, length 82 [|LLDP] 17:35:54.629950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.629951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.629957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.629961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.629965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.629977 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.629984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.629994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.629997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.630002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.630004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.630009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.638162 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.638185 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.638204 LLDP, length 82 [|LLDP] 17:35:54.638206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.638208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.638214 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.638219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.638229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.638232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.638236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.638239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.638252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.638257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.638259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.638264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.649174 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.649196 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.649215 LLDP, length 82 [|LLDP] 17:35:54.649217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.649219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.649225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.649228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.649232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.649244 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.649250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.649259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.649263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.649267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.649269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.649274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.660183 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.660206 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.660225 LLDP, length 82 [|LLDP] 17:35:54.660226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c32 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.660228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.660234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.660238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.660242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.660254 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.660259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.660269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.660273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.660277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.660279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.660284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.668443 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.668467 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.668488 LLDP, length 82 [|LLDP] 17:35:54.668490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c38 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.668492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.668498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.668502 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.668507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.668517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.668520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.668525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.668537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.668541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.668544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.668549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.679468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.679497 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.679521 LLDP, length 82 [|LLDP] 17:35:54.679523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c41 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.679524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.679531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.679534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.679538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.679550 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.679557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.679568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.679571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.679576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.679578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.679583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.690483 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.690507 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.690533 LLDP, length 82 [|LLDP] 17:35:54.690535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c49 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.690537 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.690543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.690554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.690559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.690565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.690568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.690572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.690585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.690590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.690592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.690597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.698720 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.698743 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.698763 LLDP, length 82 [|LLDP] 17:35:54.698765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.698766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.698773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.698777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.698781 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.698786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.698796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.698799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.698811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.698816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.698819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.698824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.709725 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.709749 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.709768 LLDP, length 82 [|LLDP] 17:35:54.709770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c58 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.709772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.709777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.709781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.709785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.709797 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.709803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.709813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.709817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.709821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.709823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.709827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.717981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.718003 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.718022 LLDP, length 82 [|LLDP] 17:35:54.718024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.718026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.718032 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.718037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.718047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.718050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.718055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.718058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.718070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.718075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.718078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.718083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.728992 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.729014 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.729034 LLDP, length 82 [|LLDP] 17:35:54.729035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c66 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.729037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.729043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.729047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.729050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.729062 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.729067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.729078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.729081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.729085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.729088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.729093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.740009 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.740027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.740046 LLDP, length 82 [|LLDP] 17:35:54.740048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6f 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.740049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.740055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.740060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.740063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.740075 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.740080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.740090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.740093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.740098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.740100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.740104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.748263 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.748284 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.748304 LLDP, length 82 [|LLDP] 17:35:54.748305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.748307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.748314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.748317 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.748323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.748333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.748336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.748340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.748352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.748358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.748360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.748364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.759284 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.759327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.759361 LLDP, length 82 [|LLDP] 17:35:54.759364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e 0ca2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.759366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.759374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.759377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.759381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.759395 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.759401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.759411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.759415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.759419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.759422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.759427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.770292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.770320 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.770349 LLDP, length 82 [|LLDP] 17:35:54.770350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c86 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.770352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.770359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.770385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.770389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.770395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.770399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.770403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.770415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.770420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.770422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.770428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.778550 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.778576 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.778597 LLDP, length 82 [|LLDP] 17:35:54.778599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8c bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.778601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.778607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.778624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.778628 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.778633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.778644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.778648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.778661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.778666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.778668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.778673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.789555 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.789581 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.789604 LLDP, length 82 [|LLDP] 17:35:54.789606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c95 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.789607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.789614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.789617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.789621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.789632 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.789639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.789659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.789663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.789671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.789673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.789678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.800566 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.800586 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.800609 LLDP, length 82 [|LLDP] 17:35:54.800610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9d 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.800613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.800619 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.800625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.800635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.800638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.800642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.800646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.800657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.800663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.800665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.800670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.808820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.808851 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.808874 LLDP, length 82 [|LLDP] 17:35:54.808875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.808878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.808884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.808888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.808891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.808903 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.808909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.808920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.808923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.808927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.808930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.808934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.819828 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.819853 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.819874 LLDP, length 82 [|LLDP] 17:35:54.819876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cac 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.819878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.819884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.819888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.819892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.819904 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.819909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.819920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.819923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.819927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.819929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.819934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.828086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.828111 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.828136 LLDP, length 82 [|LLDP] 17:35:54.828138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.828140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.828146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.828150 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.828155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.828165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.828168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.828172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.828183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.828188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.828191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.828196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.839103 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.839133 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.839171 LLDP, length 82 [|LLDP] 17:35:54.839174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cba f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.839176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.839183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.839187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.839191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.839204 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.839210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.839222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.839225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.839230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.839233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.839238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.850111 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.850142 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.850167 LLDP, length 82 [|LLDP] 17:35:54.850169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc3 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.850170 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.850177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.850189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.850192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.850198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.850201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.850205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.850217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.850222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.850224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.850229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.858367 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.858386 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.858406 LLDP, length 82 [|LLDP] 17:35:54.858408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.858410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.858417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.858421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.858424 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.858430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.858441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.858444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.858456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.858461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.858463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.858468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.869373 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.869395 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.869415 LLDP, length 82 [|LLDP] 17:35:54.869416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.869418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.869424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.869428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.869432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.869443 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.869449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.869459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.869462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.869466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.869469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.869473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.880385 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.880402 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.880421 LLDP, length 82 [|LLDP] 17:35:54.880423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cda 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.880425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.880431 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.880436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.880446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.880448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.880452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.880456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.880467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.880472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.880475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.880479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.888640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.888663 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.888683 LLDP, length 82 [|LLDP] 17:35:54.888684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce0 bfcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.888686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.888692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.888696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.888700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.888712 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.888717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.888728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.888731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.888735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.888737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.888741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.899650 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.899673 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.899692 LLDP, length 82 [|LLDP] 17:35:54.899694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce9 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.899696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.899701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.899705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.899709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.899720 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.899726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.899736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.899739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.899743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.899746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.899750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.907905 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.907927 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.907947 LLDP, length 82 [|LLDP] 17:35:54.907948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cef 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.907950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.907956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.907960 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.907965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.907975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.907978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.907982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.907994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.907999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.908001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.908005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.918918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.918934 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.918953 LLDP, length 82 [|LLDP] 17:35:54.918955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf7 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.918957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.918963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.918967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.918971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.918983 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.918988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.918998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.919001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.919005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.919008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.919012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.929936 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.929951 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.929970 LLDP, length 82 [|LLDP] 17:35:54.929972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d00 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.929974 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.929979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.929990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.929993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.929998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.930002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.930006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.930017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.930022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.930024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.930029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.938184 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.938205 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.938224 LLDP, length 82 [|LLDP] 17:35:54.938226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.938228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.938234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.938238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.938241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.938246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.938256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.938259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.938271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.938276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.938278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.938283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.949192 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.949214 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.949234 LLDP, length 82 [|LLDP] 17:35:54.949235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.949237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.949243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.949247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.949251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.949263 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.949269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.949279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.949282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.949286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.949288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.949293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.960202 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.960224 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.960243 LLDP, length 82 [|LLDP] 17:35:54.960245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d17 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.960247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.960253 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.960258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.960269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.960272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.960276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.960280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.960291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.960296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.960299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.960304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.968459 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.968482 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.968501 LLDP, length 82 [|LLDP] 17:35:54.968503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.968505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.968511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.968515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.968518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.968530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.968535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.968545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.968548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.968552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.968554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.968559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.979472 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.979487 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.979506 LLDP, length 82 [|LLDP] 17:35:54.979507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.979509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.979515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.979519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.979523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.979534 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.979540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.979550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.979552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.979556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.979559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.979564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.990481 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.990502 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.990520 LLDP, length 82 [|LLDP] 17:35:54.990522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2e 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.990524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.990530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.990533 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.990538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.990548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.990551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.990556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.990567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.990572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.990574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.990579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.998739 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.998762 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.998782 LLDP, length 82 [|LLDP] 17:35:54.998784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d34 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.998786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.998792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.998796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.998800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.998812 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.998818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.998828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.998831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.998835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.998838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.998842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.009749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.009772 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.009792 LLDP, length 82 [|LLDP] 17:35:55.009795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3d 263a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.009796 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.009803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.009812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.009816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.009821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.009824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.009828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.009840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.009844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.009847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.009851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.018006 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.018028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.018048 LLDP, length 82 [|LLDP] 17:35:55.018050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d43 72ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.018052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.018058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.018062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.018066 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.018071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.018081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.018083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.018096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.018100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.018103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.018108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.029017 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.029038 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.029057 LLDP, length 82 [|LLDP] 17:35:55.029059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4b d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.029061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.029067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.029071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.029074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.029086 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.029091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.029101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.029104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.029109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.029111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.029116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.040027 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.040043 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.040063 LLDP, length 82 [|LLDP] 17:35:55.040064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d54 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.040066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.040072 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.040078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.040088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.040090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.040094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.040098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.040109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.040114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.040117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.040122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.048281 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.048303 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.048322 LLDP, length 82 [|LLDP] 17:35:55.048324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a 8c9d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.048326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.048332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.048335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.048339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.048350 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.048356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.048366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.048370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.048374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.048376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.048381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.059291 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.059322 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.059342 LLDP, length 82 [|LLDP] 17:35:55.059344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d62 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.059346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.059352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.059356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.059360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.059371 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.059377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.059386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.059389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.059393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.059396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.059400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.070303 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.070324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.070343 LLDP, length 82 [|LLDP] 17:35:55.070344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.070346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.070353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.070356 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.070361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.070372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.070375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.070378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.070390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.070395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.070397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.070402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.078559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.078582 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.078600 LLDP, length 82 [|LLDP] 17:35:55.078603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.078618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.078625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.078629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.078633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.078646 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.078652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.078662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.078665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.078669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.078671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.078677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.089610 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.089654 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.089685 LLDP, length 82 [|LLDP] 17:35:55.089687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.089689 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.089697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.089712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.089717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.089726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.089730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.089734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.089746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.089752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.089754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.089760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.100674 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.100742 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.100803 LLDP, length 82 [|LLDP] 17:35:55.100806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d82 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.100810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.100827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.100832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.100836 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.100843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.100864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.100868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.100884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.100892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.100895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.100901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.108911 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.108982 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.109051 LLDP, length 82 [|LLDP] 17:35:55.109053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d88 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.109056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.109073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.109077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.109082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.109096 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.109104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.109125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.109129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.109135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.109137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.109143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.119865 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.119896 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.119924 LLDP, length 82 [|LLDP] 17:35:55.119925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d91 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.119928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.119935 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.119941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.119952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.119956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.119959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.119963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.119975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.119980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.119983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.119987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.128109 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.128134 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.128156 LLDP, length 82 [|LLDP] 17:35:55.128158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d97 7307 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.128160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.128166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.128170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.128173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.128185 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.128191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.128201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.128204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.128208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.128210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.128215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.139116 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.139141 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.139162 LLDP, length 82 [|LLDP] 17:35:55.139164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.139166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.139172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.139177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.139180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.139192 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.139198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.139209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.139212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.139216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.139219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.139223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.150126 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.150151 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.150173 LLDP, length 82 [|LLDP] 17:35:55.150175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da8 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.150177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.150183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.150187 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.150192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.150202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.150206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.150210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.150221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.150226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.150229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.150234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.158390 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.158407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.158428 LLDP, length 82 [|LLDP] 17:35:55.158430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.158432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.158438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.158442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.158446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.158457 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.158463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.158473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.158476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.158480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.158483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.158487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.169397 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.169421 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.169441 LLDP, length 82 [|LLDP] 17:35:55.169443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db6 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.169445 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.169451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.169461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.169465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.169474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.169477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.169489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.169494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.169496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.169501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.180401 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.180425 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.180445 LLDP, length 82 [|LLDP] 17:35:55.180446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbf 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.180448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.180454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.180458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.180462 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.180467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.180478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.180480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.180492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.180497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.180500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.180504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.188662 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.188686 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.188705 LLDP, length 82 [|LLDP] 17:35:55.188707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.188709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.188715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.188719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.188723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.188735 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.188740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.188751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.188754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.188758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.188760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.188765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.199671 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.199695 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.199714 LLDP, length 82 [|LLDP] 17:35:55.199716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.199718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.199724 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.199729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.199739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.199742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.199746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.199750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.199761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.199766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.199769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.199773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.207928 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.207952 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.207971 LLDP, length 82 [|LLDP] 17:35:55.207973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd4 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.207975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.207981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.207985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.207989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.208001 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.208006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.208017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.208020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.208024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.208026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.208031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.218941 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.218965 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.218984 LLDP, length 82 [|LLDP] 17:35:55.218985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddc bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.218987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.218993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.218997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.219001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.219012 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.219017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.219027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.219030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.219034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.219037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.219042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.229950 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.229975 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.229995 LLDP, length 82 [|LLDP] 17:35:55.229997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de5 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.229999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.230005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.230009 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.230014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.230025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.230028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.230032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.230043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.230048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.230050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.230055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.238205 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.238228 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.238247 LLDP, length 82 [|LLDP] 17:35:55.238249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0deb 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.238251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.238257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.238261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.238265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.238276 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.238282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.238292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.238296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.238300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.238302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.238308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.249217 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.249240 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.249260 LLDP, length 82 [|LLDP] 17:35:55.249261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.249263 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.249269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.249279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.249282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.249288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.249291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.249295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.249306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.249311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.249313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.249318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.260223 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.260247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.260266 LLDP, length 82 [|LLDP] 17:35:55.260268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfc 3fd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.260270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.260276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.260280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.260284 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.260289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.260299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.260302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.260314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.260319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.260321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.260326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.268482 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.268505 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.268525 LLDP, length 82 [|LLDP] 17:35:55.268526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.268528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.268535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.268538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.268542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.268553 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.268560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.268570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.268573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.268577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.268580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.268584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.279494 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.279517 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.279537 LLDP, length 82 [|LLDP] 17:35:55.279538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.279540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.279547 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.279552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.279562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.279565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.279569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.279573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.279584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.279589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.279592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.279597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.290506 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.290522 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.290541 LLDP, length 82 [|LLDP] 17:35:55.290542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e13 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.290544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.290550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.290554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.290557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.290569 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.290575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.290584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.290587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.290592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.290594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.290599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.298759 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.298782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.298801 LLDP, length 82 [|LLDP] 17:35:55.298803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.298805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.298811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.298814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.298818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.298829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.298835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.298845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.298848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.298852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.298855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.298859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.309773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.309797 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.309816 LLDP, length 82 [|LLDP] 17:35:55.309818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.309820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.309826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.309830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.309835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.309846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.309849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.309853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.309865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.309869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.309872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.309877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.318028 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.318052 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.318071 LLDP, length 82 [|LLDP] 17:35:55.318073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e28 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.318075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.318081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.318085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.318089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.318101 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.318106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.318116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.318119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.318124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.318126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.318131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.329038 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.329061 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.329081 LLDP, length 82 [|LLDP] 17:35:55.329082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e30 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.329084 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.329090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.329100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.329103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.329109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.329112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.329116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.329128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.329133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.329135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.329140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.340053 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.340076 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.340095 LLDP, length 82 [|LLDP] 17:35:55.340097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e39 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.340099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.340105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.340109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.340113 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.340118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.340128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.340131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.340143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.340148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.340150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.340155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.348305 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.348327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.348347 LLDP, length 82 [|LLDP] 17:35:55.348349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3f 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.348351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.348357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.348360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.348365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.348377 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.348382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.348392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.348395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.348399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.348401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.348406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.359321 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.359344 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.359363 LLDP, length 82 [|LLDP] 17:35:55.359365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e47 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.359367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.359373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.359378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.359388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.359391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.359395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.359399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.359410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.359415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.359418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.359423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.370325 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.370348 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.370369 LLDP, length 82 [|LLDP] 17:35:55.370370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e50 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.370372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.370378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.370382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.370385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.370397 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.370403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.370413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.370416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.370420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.370422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.370426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.378584 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.378607 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.378628 LLDP, length 82 [|LLDP] 17:35:55.378629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 8ca1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.378631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.378637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.378641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.378645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.378656 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.378662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.378672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.378675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.378679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.378682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.378686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.389591 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.389614 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.389632 LLDP, length 82 [|LLDP] 17:35:55.389633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.389635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.389641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.389645 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.389650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.389660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.389663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.389667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.389679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.389684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.389686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.389691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.397869 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.397901 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.397929 LLDP, length 82 [|LLDP] 17:35:55.397931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e65 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.397933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.397940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.397944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.397948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.397960 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.397966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.397978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.397982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.397986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.397989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.397994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.408868 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.408888 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.408910 LLDP, length 82 [|LLDP] 17:35:55.408912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6d a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.408914 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.408919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.408930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.408934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.408940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.408944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.408947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.408960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.408965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.408967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.408972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.419871 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.419895 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.419915 LLDP, length 82 [|LLDP] 17:35:55.419916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.419919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.419925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.419929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.419932 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.419938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.419948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.419951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.419963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.419968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.419971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.419975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.428128 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.428152 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.428179 LLDP, length 82 [|LLDP] 17:35:55.428181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7c 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.428183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.428189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.428193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.428197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.428210 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.428215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.428225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.428228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.428233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.428235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.428240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.439137 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.439161 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.439181 LLDP, length 82 [|LLDP] 17:35:55.439182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e84 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.439185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.439190 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.439196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.439206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.439209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.439212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.439216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.439228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.439232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.439235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.439240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.450148 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.450172 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.450191 LLDP, length 82 [|LLDP] 17:35:55.450193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8d 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.450195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.450201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.450205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.450209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.450221 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.450227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.450237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.450240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.450244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.450247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.450251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.458409 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.458433 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.458452 LLDP, length 82 [|LLDP] 17:35:55.458453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e93 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.458455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.458461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.458466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.458470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.458481 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.458487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.458497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.458500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.458504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.458507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.458512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.469419 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.469436 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.469456 LLDP, length 82 [|LLDP] 17:35:55.469457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9b d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.469460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.469466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.469469 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.469475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.469485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.469488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.469492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.469504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.469508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.469511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.469515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.480424 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.480449 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.480469 LLDP, length 82 [|LLDP] 17:35:55.480470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea4 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.480472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.480478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.480482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.480486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.480498 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.480503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.480513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.480516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.480521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.480523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.480528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.488682 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.488704 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.488729 LLDP, length 82 [|LLDP] 17:35:55.488730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.488732 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.488738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.488748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.488752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.488757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.488761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.488765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.488776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.488781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.488784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.488788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.499693 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.499715 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.499735 LLDP, length 82 [|LLDP] 17:35:55.499737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb2 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.499738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.499744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.499748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.499751 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.499757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.499767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.499769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.499781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.499786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.499789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.499793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.507948 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.507971 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.507990 LLDP, length 82 [|LLDP] 17:35:55.507992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb9 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.507994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.508000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.508003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.508007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.508019 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.508025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.508035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.508038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.508042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.508045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.508049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.518960 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.518984 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.519003 LLDP, length 82 [|LLDP] 17:35:55.519005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec1 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.519007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.519012 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.519018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.519028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.519031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.519034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.519038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.519049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.519054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.519057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.519062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.529972 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.529989 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.530008 LLDP, length 82 [|LLDP] 17:35:55.530010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.530012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.530018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.530021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.530025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.530036 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.530042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.530053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.530056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.530060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.530062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.530067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.538228 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.538251 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.538270 LLDP, length 82 [|LLDP] 17:35:55.538272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed0 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.538274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.538280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.538284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.538287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.538299 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.538304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.538314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.538317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.538322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.538324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.538329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.549238 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.549260 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.549279 LLDP, length 82 [|LLDP] 17:35:55.549281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed8 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.549283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.549288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.549292 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.549298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.549308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.549311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.549315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.549327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.549332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.549334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.549338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.560244 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.560266 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.560285 LLDP, length 82 [|LLDP] 17:35:55.560287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee1 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.560289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.560295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.560299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.560302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.560314 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.560320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.560330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.560333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.560337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.560340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.560344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.568504 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.568526 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.568544 LLDP, length 82 [|LLDP] 17:35:55.568546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee7 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.568548 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.568554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.568563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.568567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.568572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.568576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.568579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.568591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.568596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.568598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.568603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.579517 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.579540 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.579563 LLDP, length 82 [|LLDP] 17:35:55.579565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eef d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.579567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.579573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.579577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.579581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.579586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.579596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.579599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.579610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.579615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.579618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.579622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.590525 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.590548 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.590568 LLDP, length 82 [|LLDP] 17:35:55.590569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef8 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.590571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.590577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.590581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.590584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.590596 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.590602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.590611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.590614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.590618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.590621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.590625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.598780 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.598802 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.598820 LLDP, length 82 [|LLDP] 17:35:55.598822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.598824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.598830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.598835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.598845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.598848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.598851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.598855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.598866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.598871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.598874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.598879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.609791 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.609814 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.609833 LLDP, length 82 [|LLDP] 17:35:55.609835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f06 f302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.609837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.609842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.609846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.609849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.609861 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.609866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.609876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.609879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.609883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.609885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.609890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.618048 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.618071 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.618091 LLDP, length 82 [|LLDP] 17:35:55.618092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0d 3fcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.618094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.618100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.618104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.618108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.618119 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.618125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.618135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.618138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.618142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.618145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.618149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.629058 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.629081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.629100 LLDP, length 82 [|LLDP] 17:35:55.629101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f15 a63c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.629104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.629109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.629113 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.629118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.629128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.629131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.629135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.629147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.629151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.629154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.629158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.640071 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.640097 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.640117 LLDP, length 82 [|LLDP] 17:35:55.640119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.640121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.640128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.640132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.640135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.640147 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.640153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.640171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.640174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.640179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.640181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.640186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.648328 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.648345 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.648364 LLDP, length 82 [|LLDP] 17:35:55.648366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f24 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.648367 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.648373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.648383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.648386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.648391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.648395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.648399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.648411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.648416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.648418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.648422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.659344 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.659367 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.659389 LLDP, length 82 [|LLDP] 17:35:55.659390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2c bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.659392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.659399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.659402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.659406 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.659411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.659420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.659424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.659435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.659440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.659443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.659447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.670348 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.670372 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.670394 LLDP, length 82 [|LLDP] 17:35:55.670396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f35 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.670398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.670404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.670408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.670412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.670424 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.670430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.670440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.670443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.670447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.670449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.670454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.678604 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.678628 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.678650 LLDP, length 82 [|LLDP] 17:35:55.678651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3b 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.678654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.678660 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.678665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.678676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.678678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.678683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.678686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.678699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.678704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.678706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.678711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.689628 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.689657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.689681 LLDP, length 82 [|LLDP] 17:35:55.689683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f43 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.689685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.689692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.689696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.689699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.689711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.689717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.689728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.689731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.689736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.689738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.689743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.697872 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.697897 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.697916 LLDP, length 82 [|LLDP] 17:35:55.697918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4a 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.697920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.697926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.697930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.697933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.697945 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.697951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.697961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.697964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.697968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.697971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.697975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.708885 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.708903 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.708922 LLDP, length 82 [|LLDP] 17:35:55.708924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f52 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.708925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.708931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.708935 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.708940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.708950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.708953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.708957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.708969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.708973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.708976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.708980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.719889 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.719911 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.719930 LLDP, length 82 [|LLDP] 17:35:55.719932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.719934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.719940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.719943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.719947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.719959 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.719964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.719974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.719977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.719982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.719984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.719989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.728148 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.728170 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.728190 LLDP, length 82 [|LLDP] 17:35:55.728192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f61 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.728194 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.728200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.728209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.728213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.728218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.728222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.728225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.728237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.728242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.728245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.728249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.739156 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.739178 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.739198 LLDP, length 82 [|LLDP] 17:35:55.739200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f69 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.739202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.739208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.739212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.739215 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.739220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.739230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.739233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.739246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.739251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.739254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.739258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.750169 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.750193 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.750214 LLDP, length 82 [|LLDP] 17:35:55.750215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.750217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.750223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.750226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.750230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.750241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.750247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.750257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.750261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.750265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.750267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.750272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.758425 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.758448 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.758467 LLDP, length 82 [|LLDP] 17:35:55.758469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f78 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.758471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.758477 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.758482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.758493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.758495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.758499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.758503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.758515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.758520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.758522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.758527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.769441 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.769463 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.769483 LLDP, length 82 [|LLDP] 17:35:55.769485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f80 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.769487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.769493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.769496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.769500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.769511 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.769517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.769541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.769544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.769549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.769552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.769556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.780448 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.780464 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.780482 LLDP, length 82 [|LLDP] 17:35:55.780484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f89 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.780486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.780491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.780495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.780499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.780510 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.780516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.780526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.780529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.780533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.780536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.780540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.788708 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.788731 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.788751 LLDP, length 82 [|LLDP] 17:35:55.788753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8f 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.788755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.788761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.788764 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.788770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.788779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.788783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.788787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.788799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.788803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.788806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.788810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.799712 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.799735 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.799754 LLDP, length 82 [|LLDP] 17:35:55.799755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f97 d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.799757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.799763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.799767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.799771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.799783 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.799788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.799798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.799801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.799806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.799808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.799813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.807970 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.807992 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.808011 LLDP, length 82 [|LLDP] 17:35:55.808012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9e 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.808015 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.808020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.808030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.808033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.808038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.808042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.808046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.808058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.808063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.808065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.808070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.818981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.819003 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.819021 LLDP, length 82 [|LLDP] 17:35:55.819022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa6 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.819025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.819030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.819034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.819038 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.819043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.819052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.819056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.819068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.819073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.819075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.819080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.829991 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.830014 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.830034 LLDP, length 82 [|LLDP] 17:35:55.830035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fae f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.830037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.830043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.830047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.830051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.830063 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.830069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.830079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.830082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.830087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.830089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.830094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.838268 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.838300 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.838326 LLDP, length 82 [|LLDP] 17:35:55.838328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb5 3fcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.838331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.838339 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.838344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.838356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.838360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.838364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.838367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.838380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.838385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.838387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.838393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.849262 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.849289 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.849310 LLDP, length 82 [|LLDP] 17:35:55.849312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbd a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.849314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.849321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.849325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.849328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.849340 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.849346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.849356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.849359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.849364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.849367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.849371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.860271 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.860297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.860319 LLDP, length 82 [|LLDP] 17:35:55.860321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.860323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.860329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.860334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.860337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.860349 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.860355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.860365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.860369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.860373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.860376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.860380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.868529 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.868554 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.868574 LLDP, length 82 [|LLDP] 17:35:55.868576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcc 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.868578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.868584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.868591 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.868597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.868607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.868611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.868615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.868627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.868632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.868635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.868639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.879561 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.879595 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.879630 LLDP, length 82 [|LLDP] 17:35:55.879632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd4 bfd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.879634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.879643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.879647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.879651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.879663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.879670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.879682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.879685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.879690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.879693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.879698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.890564 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.890592 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.890615 LLDP, length 82 [|LLDP] 17:35:55.890618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdd 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.890620 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.890626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.890638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.890642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.890652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.890656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.890660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.890673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.890678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.890680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.890685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.898809 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.898837 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.898859 LLDP, length 82 [|LLDP] 17:35:55.898860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe3 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.898862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.898870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.898874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.898878 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.898883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.898894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.898897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.898909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.898914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.898917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.898922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.909821 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.909850 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.909875 LLDP, length 82 [|LLDP] 17:35:55.909877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0feb d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.909879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.909886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.909890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.909894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.909905 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.909911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.909922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.909926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.909930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.909933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.909937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.918077 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.918103 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.918126 LLDP, length 82 [|LLDP] 17:35:55.918127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff2 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.918130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.918136 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.918142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.918152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.918155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.918159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.918163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.918175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.918180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.918183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.918188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.929085 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.929111 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.929131 LLDP, length 82 [|LLDP] 17:35:55.929133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffa 8c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.929135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.929141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.929145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.929149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.929161 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.929167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.929177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.929180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.929185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.929187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.929192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.940092 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.940116 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.940137 LLDP, length 82 [|LLDP] 17:35:55.940138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1002 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.940140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.940146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.940150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.940168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.940182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.940188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.940198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.940201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.940206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.940208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.940213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.948389 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.948428 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.948457 LLDP, length 82 [|LLDP] 17:35:55.948459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1009 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.948462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.948472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.948475 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.948482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.948498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.948501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.948505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.948518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.948523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.948526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.948531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.959392 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.959419 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.959450 LLDP, length 82 [|LLDP] 17:35:55.959452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1011 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.959454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.959461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.959465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.959469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.959481 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.959488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.959500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.959503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.959508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.959510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.959516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.970374 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.970399 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.970422 LLDP, length 82 [|LLDP] 17:35:55.970424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.970426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.970433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.970443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.970447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.970453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.970457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.970460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.970472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.970478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.970480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.970485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.978632 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.978655 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.978677 LLDP, length 82 [|LLDP] 17:35:55.978679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1020 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.978681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.978687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.978691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.978694 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.978700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.978710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.978713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.978726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.978731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.978734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.978739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.989638 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.989661 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.989682 LLDP, length 82 [|LLDP] 17:35:55.989683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1028 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.989685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.989691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.989695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.989698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.989710 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.989716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.989726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.989729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.989734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.989736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.989741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.997897 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.997917 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.997938 LLDP, length 82 [|LLDP] 17:35:55.997940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f 0ca0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.997942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.997948 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.997953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.997964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.997967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.997971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.997974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.997986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.997992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.997994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.997999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.008908 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.008932 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.008952 LLDP, length 82 [|LLDP] 17:35:56.008954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1037 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.008956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.008963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.008966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.008970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.008982 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.008988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.008998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.009001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.009005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.009008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.009012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.019918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.019941 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.019961 LLDP, length 82 [|LLDP] 17:35:56.019963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103f d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.019965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.019971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.019975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.019979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.019990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.019996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.020006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.020008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.020013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.020016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.020020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.028172 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.028195 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.028216 LLDP, length 82 [|LLDP] 17:35:56.028217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1046 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.028219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.028226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.028229 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.028235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.028245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.028248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.028252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.028264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.028269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.028272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.028277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.039181 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.039204 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.039224 LLDP, length 82 [|LLDP] 17:35:56.039226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104e 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.039228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.039235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.039239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.039243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.039255 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.039261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.039271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.039275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.039279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.039281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.039286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.050193 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.050217 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.050238 LLDP, length 82 [|LLDP] 17:35:56.050239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1056 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.050242 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.050248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.050257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.050261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.050266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.050270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.050273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.050285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.050291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.050293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.050298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.058450 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.058476 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.058495 LLDP, length 82 [|LLDP] 17:35:56.058496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105d 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.058498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.058505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.058509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.058512 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.058517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.058528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.058531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.058543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.058548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.058551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.058556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.069463 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.069487 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.069508 LLDP, length 82 [|LLDP] 17:35:56.069510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1065 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.069512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.069518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.069522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.069525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.069537 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.069543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.069553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.069557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.069561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.069564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.069568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.080470 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.080495 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.080514 LLDP, length 82 [|LLDP] 17:35:56.080516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.080518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.080524 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.080529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.080540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.080543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.080547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.080551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.080562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.080568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.080570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.080575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.088728 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.088754 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.088774 LLDP, length 82 [|LLDP] 17:35:56.088776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1074 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.088778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.088785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.088788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.088792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.088804 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.088810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.088820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.088823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.088828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.088831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.088836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.099746 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.099770 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.099791 LLDP, length 82 [|LLDP] 17:35:56.099793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107c bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.099795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.099802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.099806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.099810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.099821 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.099827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.099838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.099841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.099845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.099848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.099853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.107997 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.108023 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.108044 LLDP, length 82 [|LLDP] 17:35:56.108046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.108048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.108055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.108058 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.108064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.108074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.108077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.108081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.108093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.108099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.108101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.108106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.119003 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.119028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.119048 LLDP, length 82 [|LLDP] 17:35:56.119050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108b 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.119052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.119059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.119062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.119066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.119078 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.119084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.119094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.119097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.119101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.119104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.119109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.130019 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.130041 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.130061 LLDP, length 82 [|LLDP] 17:35:56.130063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1093 d96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.130065 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.130071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.130081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.130085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.130090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.130094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.130098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.130110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.130115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.130117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.130122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.138273 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.138296 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.138316 LLDP, length 82 [|LLDP] 17:35:56.138318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109a 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.138319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.138326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.138330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.138334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.138339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.138349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.138352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.138363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.138369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.138371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.138376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.149282 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.149306 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.149327 LLDP, length 82 [|LLDP] 17:35:56.149328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a2 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.149330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.149337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.149340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.149344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.149356 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.149361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.149372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.149375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.149379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.149382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.149387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.160292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.160316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.160336 LLDP, length 82 [|LLDP] 17:35:56.160338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10aa f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.160341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.160347 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.160352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.160362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.160365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.160369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.160373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.160385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.160390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.160393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.160398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.168549 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.168576 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.168595 LLDP, length 82 [|LLDP] 17:35:56.168597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b1 3fd1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.168599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.168605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.168609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.168612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.168624 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.168630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.168640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.168643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.168647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.168650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.168654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.179559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.179583 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.179605 LLDP, length 82 [|LLDP] 17:35:56.179607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b9 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.179609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.179615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.179619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.179623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.179635 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.179641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.179650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.179654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.179658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.179660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.179665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.187820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.187844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.187864 LLDP, length 82 [|LLDP] 17:35:56.187866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.187868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.187874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.187877 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.187883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.187893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.187896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.187899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.187911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.187917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.187919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.187924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.198830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.198847 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.198867 LLDP, length 82 [|LLDP] 17:35:56.198869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c8 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.198871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.198877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.198881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.198885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.198897 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.198903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.198913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.198916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.198921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.198924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.198928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.209835 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.209860 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.209880 LLDP, length 82 [|LLDP] 17:35:56.209883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d0 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.209884 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.209891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.209901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.209905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.209910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.209914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.209917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.209929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.209935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.209937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.209942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.218093 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.218116 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.218137 LLDP, length 82 [|LLDP] 17:35:56.218138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.218140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.218147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.218151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.218155 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.218160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.218170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.218173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.218185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.218190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.218193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.218198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.229110 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.229127 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.229147 LLDP, length 82 [|LLDP] 17:35:56.229148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10df 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.229150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.229157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.229160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.229164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.229176 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.229182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.229193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.229196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.229201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.229203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.229208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.240113 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.240136 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.240156 LLDP, length 82 [|LLDP] 17:35:56.240158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e7 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.240160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.240166 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.240171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.240181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.240184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.240188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.240192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.240204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.240209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.240211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.240216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.248374 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.248400 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.248421 LLDP, length 82 [|LLDP] 17:35:56.248423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ee 263a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.248425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.248431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.248435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.248438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.248450 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.248456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.248467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.248470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.248475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.248478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.248482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.259388 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.259405 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.259428 LLDP, length 82 [|LLDP] 17:35:56.259430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f6 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.259432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.259438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.259442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.259446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.259457 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.259463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.259473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.259476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.259480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.259483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.259488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.270389 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.270412 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.270432 LLDP, length 82 [|LLDP] 17:35:56.270434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fe f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.270436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.270442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.270446 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.270451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.270461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.270464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.270468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.270480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.270485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.270488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.270493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.278649 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.278672 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.278692 LLDP, length 82 [|LLDP] 17:35:56.278694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1105 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.278696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.278702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.278706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.278710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.278722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.278728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.278738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.278741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.278746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.278749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.278754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.289661 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.289685 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.289706 LLDP, length 82 [|LLDP] 17:35:56.289708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110d a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.289710 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.289716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.289725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.289729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.289735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.289738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.289743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.289755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.289760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.289762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.289767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.297919 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.297942 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.297962 LLDP, length 82 [|LLDP] 17:35:56.297964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.297966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.297972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.297976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.297980 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.297986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.297995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.297998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.298010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.298015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.298018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.298023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.308929 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.308947 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.308968 LLDP, length 82 [|LLDP] 17:35:56.308969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111c 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.308971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.308978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.308982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.308985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.308997 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.309003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.309021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.309025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.309030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.309032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.309037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.319942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.319958 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.319979 LLDP, length 82 [|LLDP] 17:35:56.319981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1124 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.319983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.319989 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.319995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.320005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.320008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.320012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.320015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.320027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.320032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.320035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.320039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.328195 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.328218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.328238 LLDP, length 82 [|LLDP] 17:35:56.328240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.328242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.328249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.328252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.328256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.328268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.328274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.328284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.328287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.328292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.328294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.328300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.339204 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.339227 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.339246 LLDP, length 82 [|LLDP] 17:35:56.339248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1133 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.339250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.339256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.339260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.339264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.339276 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.339281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.339291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.339294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.339298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.339301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.339317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.350216 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.350239 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.350260 LLDP, length 82 [|LLDP] 17:35:56.350261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113b d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.350263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.350269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.350273 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.350278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.350288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.350291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.350295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.350307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.350312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.350314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.350319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.358468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.358491 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.358511 LLDP, length 82 [|LLDP] 17:35:56.358512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1142 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.358515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.358521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.358524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.358528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.358541 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.358547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.358557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.358560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.358564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.358566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.358571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.369482 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.369499 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.369518 LLDP, length 82 [|LLDP] 17:35:56.369520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114a 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.369522 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.369527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.369538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.369541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.369546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.369549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.369553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.369565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.369570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.369573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.369577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.380492 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.380508 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.380528 LLDP, length 82 [|LLDP] 17:35:56.380529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1152 f309 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.380531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.380537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.380541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.380544 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.380549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.380559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.380562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.380574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.380579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.380582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.380586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.388766 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.388792 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.388819 LLDP, length 82 [|LLDP] 17:35:56.388821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1159 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.388823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.388830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.388834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.388838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.388850 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.388856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.388867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.388871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.388875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.388878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.388883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.399773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.399803 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.399827 LLDP, length 82 [|LLDP] 17:35:56.399829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1161 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.399831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.399837 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.399843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.399854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.399857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.399861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.399865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.399877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.399882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.399884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.399889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.408025 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.408044 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.408063 LLDP, length 82 [|LLDP] 17:35:56.408066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.408068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.408073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.408077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.408081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.408093 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.408099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.408109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.408116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.408121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.408124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.408128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.419034 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.419060 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.419082 LLDP, length 82 [|LLDP] 17:35:56.419084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1170 596b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.419087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.419093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.419097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.419105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.419118 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.419124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.419134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.419138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.419142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.419145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.419150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.430050 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.430079 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.430109 LLDP, length 82 [|LLDP] 17:35:56.430111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1178 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.430113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.430120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.430124 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.430130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.430141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.430145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.430149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.430161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.430167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.430169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.430175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.438301 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.438326 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.438348 LLDP, length 82 [|LLDP] 17:35:56.438350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.438352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.438359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.438363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.438367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.438379 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.438385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.438395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.438398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.438402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.438405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.438410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.449306 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.449330 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.449351 LLDP, length 82 [|LLDP] 17:35:56.449353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1187 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.449355 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.449361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.449371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.449375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.449381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.449384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.449388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.449400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.449406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.449408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.449413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.460316 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.460342 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.460363 LLDP, length 82 [|LLDP] 17:35:56.460365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.460367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.460373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.460377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.460381 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.460386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.460397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.460400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.460412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.460417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.460420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.460425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.468574 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.468598 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.468618 LLDP, length 82 [|LLDP] 17:35:56.468620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1196 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.468621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.468628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.468632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.468640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.468652 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.468658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.468668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.468671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.468675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.468678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.468683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.479588 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.479615 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.479638 LLDP, length 82 [|LLDP] 17:35:56.479640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119e 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.479642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.479648 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.479654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.479670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.479673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.479677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.479681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.479693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.479699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.479701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.479706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.491266 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.491284 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.491318 LLDP, length 82 [|LLDP] 17:35:56.491320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.491323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.491330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.491334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.491338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.491352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.491358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.491369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.491372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.491377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.491380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.491385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.498859 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.498887 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.498910 LLDP, length 82 [|LLDP] 17:35:56.498912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ad 3fd5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.498914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.498921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.498924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.498928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.498940 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.498947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.498958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.498961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.498966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.498968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.498973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.509862 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.509885 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.509906 LLDP, length 82 [|LLDP] 17:35:56.509908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b5 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.509910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.509915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.509919 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.509924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.509934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.509937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.509941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.509953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.509958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.509961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.509966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.518115 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.518138 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.518157 LLDP, length 82 [|LLDP] 17:35:56.518159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb f302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.518161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.518166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.518170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.518174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.518186 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.518192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.518202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.518205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.518209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.518212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.518217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.529123 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.529146 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.529165 LLDP, length 82 [|LLDP] 17:35:56.529167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c4 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.529169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.529175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.529185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.529188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.529193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.529197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.529201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.529212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.529217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.529220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.529224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.540136 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.540158 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.540177 LLDP, length 82 [|LLDP] 17:35:56.540179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cc bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.540181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.540187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.540190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.540194 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.540199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.540209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.540213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.540224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.540229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.540232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.540236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.551930 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.551946 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.551964 LLDP, length 82 [|LLDP] 17:35:56.551966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.551968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.551974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.551978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.551981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.551993 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.551999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.552009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.552012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.552016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.552018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.552024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.559402 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.559425 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.559446 LLDP, length 82 [|LLDP] 17:35:56.559447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11db 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.559449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.559455 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.559460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.559470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.559473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.559477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.559480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.559492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.559497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.559499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.559504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.570417 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.570441 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.570462 LLDP, length 82 [|LLDP] 17:35:56.570463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.570465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.570472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.570475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.570479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.570491 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.570497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.570508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.570511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.570516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.570518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.570522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.578670 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.578692 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.578712 LLDP, length 82 [|LLDP] 17:35:56.578714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ea 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.578716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.578722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.578726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.578730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.578741 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.578747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.578757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.578760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.578764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.578766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.578771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.589679 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.589704 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.589724 LLDP, length 82 [|LLDP] 17:35:56.589725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f2 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.589728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.589734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.589737 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.589743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.589752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.589755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.589759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.589771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.589775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.589778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.589783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.597942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.597972 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.597996 LLDP, length 82 [|LLDP] 17:35:56.597998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.598000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.598007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.598011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.598015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.598027 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.598033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.598044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.598047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.598052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.598054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.598059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.612603 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.612622 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.612643 LLDP, length 82 [|LLDP] 17:35:56.612644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1201 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.612646 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.612652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.612662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.612665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.612670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.612675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.612678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.612691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.612696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.612699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.612704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.619961 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.619978 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.619996 LLDP, length 82 [|LLDP] 17:35:56.619998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1209 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.620000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.620006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.620010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.620014 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.620019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.620029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.620033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.620045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.620050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.620053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.620057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.628214 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.628238 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.628257 LLDP, length 82 [|LLDP] 17:35:56.628259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.628261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.628267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.628271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.628275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.628287 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.628293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.628303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.628307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.628311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.628314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.628318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.639226 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.639248 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.639268 LLDP, length 82 [|LLDP] 17:35:56.639270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1218 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.639272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.639278 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.639282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.639292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.639295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.639299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.639310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.639324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.639329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.639332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.639336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.650232 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.650254 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.650272 LLDP, length 82 [|LLDP] 17:35:56.650274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1220 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.650276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.650282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.650286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.650290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.650302 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.650307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.650317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.650320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.650325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.650327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.650332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.658491 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.658513 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.658532 LLDP, length 82 [|LLDP] 17:35:56.658534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.658536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.658542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.658546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.658550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.658562 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.658568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.658577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.658580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.658584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.658587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.658591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.673275 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.673297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.673320 LLDP, length 82 [|LLDP] 17:35:56.673321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122f 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.673323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.673330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.673334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.673339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.673350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.673353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.673357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.673369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.673375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.673377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.673382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.677764 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.677781 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.677801 LLDP, length 82 [|LLDP] 17:35:56.677802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.677805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.677810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.677814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.677818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.677830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.677836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.677847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.677850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.677854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.677857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.677862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.688770 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.688793 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.688812 LLDP, length 82 [|LLDP] 17:35:56.688814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123e 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.688815 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.688821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.688830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.688834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.688839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.688843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.688847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.688858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.688863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.688866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.688871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.699793 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.699821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.699844 LLDP, length 82 [|LLDP] 17:35:56.699846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1246 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.699848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.699856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.699860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.699864 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.699869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.699880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.699883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.699895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.699900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.699903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.699908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.708038 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.708062 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.708081 LLDP, length 82 [|LLDP] 17:35:56.708083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.708085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.708091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.708094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.708098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.708110 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.708115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.708125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.708128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.708133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.708135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.708140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.719047 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.719070 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.719089 LLDP, length 82 [|LLDP] 17:35:56.719091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1255 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.719093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.719099 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.719104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.719114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.719117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.719121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.719125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.719137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.719142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.719145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.719149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.733942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.733973 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.734001 LLDP, length 82 [|LLDP] 17:35:56.734004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125d a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.734006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.734014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.734017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.734021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.734034 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.734040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.734052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.734056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.734061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.734063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.734068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.738308 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.738327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.738349 LLDP, length 82 [|LLDP] 17:35:56.738351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1263 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.738352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.738359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.738363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.738375 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.738381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.738391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749329 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.749352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.749372 LLDP, length 82 [|LLDP] 17:35:56.749374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126c 596d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.749376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.749382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.749386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.749389 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.749394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.749405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.749409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.749427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.749433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.760337 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.760361 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.760381 LLDP, length 82 [|LLDP] 17:35:56.760383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1274 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.760385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.760392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.760395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.760399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.760411 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.760417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.760427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.760432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.760435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.760437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.760442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.768607 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.768640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.768667 LLDP, length 82 [|LLDP] 17:35:56.768669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127b 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.768671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.768679 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.768685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.768710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.768716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.768719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.768722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.768726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.768730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.768742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.768748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.779610 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.779638 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.779661 LLDP, length 82 [|LLDP] 17:35:56.779663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1283 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.779665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.779671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.779675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.779679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.779691 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.779696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.779708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.779713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.779716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.779718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.779723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.787862 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.787886 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.787907 LLDP, length 82 [|LLDP] 17:35:56.787909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.787911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.787918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.787922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.787926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.787937 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.787943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.787954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.787958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.787961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.787963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.787968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.798873 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.798896 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.798916 LLDP, length 82 [|LLDP] 17:35:56.798917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1292 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.798920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.798925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.798929 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.798935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.798945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.798949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.798952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.798954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.798958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.798970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.798975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.809898 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.809916 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.809937 LLDP, length 82 [|LLDP] 17:35:56.809938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129a 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.809941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.809947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.809950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.809954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.809965 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.809971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.809981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.809986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.809989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.809991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.809996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.818173 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.818213 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.818244 LLDP, length 82 [|LLDP] 17:35:56.818247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a0 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.818249 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.818256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.818272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.818279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.818283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.818285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.818293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.818296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.818300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.818313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.818319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9082 packets captured 9082 packets received by filter 0 packets dropped by kernel 606 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 17:35:47.596606 LLDP, length 230: dentlab-infra2 17:35:47.763405 IP6 fe80::845c:7eff:fea5:7dc4 > ff02::2: ICMP6, router solicitation, length 16 17:35:50.770973 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.771069 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.771135 LLDP, length 82 [|LLDP] 17:35:50.771138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009b 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.771142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.771160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.771165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.771169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.771182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.771189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.771224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.771231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.771236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.771238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.771244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.779182 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.779218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.779248 LLDP, length 82 [|LLDP] 17:35:50.779250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a1 729b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.779252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.779261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.779264 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.779271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.779297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.779311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.779315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.779317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.779322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.779336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.779342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.790179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.790203 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.790225 LLDP, length 82 [|LLDP] 17:35:50.790226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a9 d901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.790229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.790235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.790239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.790242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.790254 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.790260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.790280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.790285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.790288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.790290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.790295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.798436 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.798458 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.798479 LLDP, length 82 [|LLDP] 17:35:50.798480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b0 25ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.798482 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.798488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.798509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.798516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.798519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.798522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.798527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.798531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.798535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.798547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.798552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.809442 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.809466 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.809485 LLDP, length 82 [|LLDP] 17:35:50.809487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b8 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.809489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.809495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.809499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.809502 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.809508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.809528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.809534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.809536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.809539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.809551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.809556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.820458 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.820480 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.820500 LLDP, length 82 [|LLDP] 17:35:50.820501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c0 f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.820503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.820509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.820513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.820517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.820528 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.820534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.820554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.820560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.820563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.820565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.820569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.828707 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.828730 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.828748 LLDP, length 82 [|LLDP] 17:35:50.828750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c7 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.828752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.828758 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.828763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.828773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.828777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.828781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.828783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.828786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.828790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.828802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.828808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.839719 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.839743 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.839762 LLDP, length 82 [|LLDP] 17:35:50.839764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cf a5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.839766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.839772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.839776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.839780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.839792 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.839798 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.839809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.839813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.839816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.839818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.839823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.850730 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.850752 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.850773 LLDP, length 82 [|LLDP] 17:35:50.850775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.850777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.850784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.850787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.850791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.850803 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.850809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.850820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.850824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.850828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.850830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.850835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.858987 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.859013 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.859033 LLDP, length 82 [|LLDP] 17:35:50.859035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00de 5901 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.859036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.859043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.859046 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.859052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.859062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.859067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.859070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.859072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.859076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.859088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.859093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.869999 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.870022 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.870042 LLDP, length 82 [|LLDP] 17:35:50.870044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e6 bf68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.870046 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.870052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.870056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.870059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.870071 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.870077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.870086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.870091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.870094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.870096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.870101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.878257 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.878278 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.878297 LLDP, length 82 [|LLDP] 17:35:50.878299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.878301 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.878307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.878316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.878322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.878325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.878327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.878332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.878335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.878339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.878351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.878357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.889264 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.889285 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.889304 LLDP, length 82 [|LLDP] 17:35:50.889306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f5 729b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.889308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.889314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.889317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.889321 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.889326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.889337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.889341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.889344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.889347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.889358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.889364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.900275 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.900297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.900316 LLDP, length 82 [|LLDP] 17:35:50.900318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fd d909 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.900319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.900325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.900329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.900333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.900345 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.900351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.900361 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.900365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.900368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.900370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.900375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.908532 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.908553 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.908571 LLDP, length 82 [|LLDP] 17:35:50.908573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0104 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.908575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.908581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.908587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.908596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.908601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.908604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.908607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.908610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.908614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.908626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.908632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.919544 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.919569 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.919590 LLDP, length 82 [|LLDP] 17:35:50.919592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010c 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.919594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.919600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.919604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.919607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.919619 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.919625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.919636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.919641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.919644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.919646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.919651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.930558 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.930582 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.930601 LLDP, length 82 [|LLDP] 17:35:50.930603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0114 f29c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.930605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.930613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.930617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.930620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.930632 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.930638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.930647 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.930652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.930655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.930658 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.930662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.938810 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.938831 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.938851 LLDP, length 82 [|LLDP] 17:35:50.938852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011b 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.938854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.938860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.938863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.938869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.938878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.938883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.938886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.938888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.938892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.938904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.938909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.949819 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.949840 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.949859 LLDP, length 82 [|LLDP] 17:35:50.949860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0123 a5ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.949863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.949869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.949872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.949876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.949888 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.949893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.949902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.949907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.949910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.949912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.949917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.960830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.960852 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.960871 LLDP, length 82 [|LLDP] 17:35:50.960873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.960874 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.960880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.960890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.960894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.960897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.960900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.960905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.960908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.960912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.960923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.960929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.969086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.969112 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.969132 LLDP, length 82 [|LLDP] 17:35:50.969133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0132 5902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.969136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.969141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.969145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.969149 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.969155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.969165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.969169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.969172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.969174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.969186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.969191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.980097 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.980119 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.980138 LLDP, length 82 [|LLDP] 17:35:50.980139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013a bf69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.980141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.980147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.980151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.980155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.980167 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.980172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.980182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.980186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.980189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.980191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.980196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.988355 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.988378 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.988396 LLDP, length 82 [|LLDP] 17:35:50.988398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 0c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.988400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.988405 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.988411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.988421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.988425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.988428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.988430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.988434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.988438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.988450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.988456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:50.999366 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:50.999388 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.999406 LLDP, length 82 [|LLDP] 17:35:50.999408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0149 729c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:50.999409 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:50.999415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:50.999419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:50.999423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:50.999434 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:50.999440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:50.999450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:50.999454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.999457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:50.999459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:50.999464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.010376 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.010400 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.010420 LLDP, length 82 [|LLDP] 17:35:51.010422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0151 d902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.010424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.010431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.010434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.010438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.010449 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.010455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.010465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.010470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.010473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.010475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.010480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.018634 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.018657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.018679 LLDP, length 82 [|LLDP] 17:35:51.018681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0158 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.018683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.018689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.018692 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.018697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.018707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.018712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.018715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.018717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.018721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.018732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.018739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.029640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.029662 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.029682 LLDP, length 82 [|LLDP] 17:35:51.029684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0160 8c35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.029686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.029692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.029696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.029700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.029711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.029717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.029727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.029732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.029735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.029737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.029742 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.040649 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.040670 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.040689 LLDP, length 82 [|LLDP] 17:35:51.040691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0168 f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.040693 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.040698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.040708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.040713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.040716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.040718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.040723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.040726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.040730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.040742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.040748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.048907 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.048927 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.048945 LLDP, length 82 [|LLDP] 17:35:51.048947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016f 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.048949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.048955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.048959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.048962 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.048968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.048977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.048982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.048985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.048987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.048999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.049004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.059916 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.059937 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.059956 LLDP, length 82 [|LLDP] 17:35:51.059957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0177 a5cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.059959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.059965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.059968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.059972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.059984 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.059990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.060001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.060005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.060008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.060010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.060015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.068179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.068201 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.068219 LLDP, length 82 [|LLDP] 17:35:51.068220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017d f29b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.068222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.068228 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.068234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.068243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.068248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.068251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.068253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.068257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.068260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.068272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.068278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.079185 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.079209 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.079227 LLDP, length 82 [|LLDP] 17:35:51.079229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0186 5902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.079231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.079236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.079240 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.079244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.079256 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.079262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.079272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.079277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.079279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.079282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.079286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.090193 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.090214 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.090233 LLDP, length 82 [|LLDP] 17:35:51.090235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018e bf69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.090237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.090242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.090246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.090249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.090261 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.090267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.090277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.090281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.090284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.090287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.090292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.098451 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.098473 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.098491 LLDP, length 82 [|LLDP] 17:35:51.098493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 0c3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.098494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.098500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.098504 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.098509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.098518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.098523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.098526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.098528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.098531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.098543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.098549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.109460 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.109481 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.109502 LLDP, length 82 [|LLDP] 17:35:51.109503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019d 729c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.109505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.109511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.109515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.109519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.109530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.109536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.109546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.109550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.109554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.109556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.109561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.120471 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.120494 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.120513 LLDP, length 82 [|LLDP] 17:35:51.120515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a5 d902 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.120517 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.120522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.120532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.120537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.120540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.120543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.120548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.120551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.120555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.120566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.120572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.128728 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.128750 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.128769 LLDP, length 82 [|LLDP] 17:35:51.128771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ac 25cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.128773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.128778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.128782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.128785 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.128791 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.128801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.128805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.128808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.128811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.128822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.128828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.139739 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.139760 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.139777 LLDP, length 82 [|LLDP] 17:35:51.139779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b4 8c36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.139781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.139786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.139790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.139794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.139805 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.139811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.139821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.139825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.139828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.139830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.139835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.150749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.150770 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.150788 LLDP, length 82 [|LLDP] 17:35:51.150790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bc f2a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.150792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.150797 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.150803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.150812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.150817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.150820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.150822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.150826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.150830 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.150842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.150847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.159005 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.159027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.159045 LLDP, length 82 [|LLDP] 17:35:51.159046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c3 3f68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.159048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.159053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.159057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.159060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.159072 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.159077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.159087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.159091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.159094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.159096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.159101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.170018 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.170040 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.170060 LLDP, length 82 [|LLDP] 17:35:51.170061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cb a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.170063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.170069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.170073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.170076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.170088 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.170094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.170104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.170108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.170111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.170113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.170118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.178273 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.178295 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.178325 LLDP, length 82 [|LLDP] 17:35:51.178326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d1 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.178328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.178334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.178338 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.178343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.178354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.178358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.178361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.178363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.178367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.178379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.178384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.189286 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.189310 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.189331 LLDP, length 82 [|LLDP] 17:35:51.189332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01da 592a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.189335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.189340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.189344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.189347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.189359 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.189364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.189374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.189379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.189382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.189384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.189388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.200296 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.200316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.200335 LLDP, length 82 [|LLDP] 17:35:51.200337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e2 bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.200338 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.200344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.200354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.200358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.200361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.200364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.200369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.200372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.200376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.200387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.200393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.208552 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.208574 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.208594 LLDP, length 82 [|LLDP] 17:35:51.208595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.208597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.208603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.208606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.208610 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.208615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.208625 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.208629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.208632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.208634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.208646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.208652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.219563 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.219584 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.219602 LLDP, length 82 [|LLDP] 17:35:51.219604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f1 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.219606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.219611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.219615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.219619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.219630 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.219636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.219646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.219650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.219653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.219655 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.219660 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.230571 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.230593 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.230611 LLDP, length 82 [|LLDP] 17:35:51.230613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f9 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.230615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.230621 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.230626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.230635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.230640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.230642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.230644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.230648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.230652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.230664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.230669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.238825 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.238844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.238860 LLDP, length 82 [|LLDP] 17:35:51.238861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0200 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.238863 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.238869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.238872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.238876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.238888 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.238893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.238903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.238907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.238910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.238912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.238917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.249836 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.249855 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.249872 LLDP, length 82 [|LLDP] 17:35:51.249874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0208 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.249875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.249881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.249885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.249888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.249899 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.249905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.249915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.249919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.249922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.249924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.249928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.260849 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.260868 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.260885 LLDP, length 82 [|LLDP] 17:35:51.260887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0210 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.260889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.260895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.260898 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.260904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.260914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.260918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.260921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.260923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.260927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.260939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.260944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.269104 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.269123 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.269141 LLDP, length 82 [|LLDP] 17:35:51.269143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0217 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.269145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.269151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.269155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.269158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.269169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.269175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.269184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.269189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.269192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.269194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.269198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.280112 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.280132 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.280149 LLDP, length 82 [|LLDP] 17:35:51.280151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021f a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.280153 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.280158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.280167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.280172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.280175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.280177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.280182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.280186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.280189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.280201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.280207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.288371 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.288392 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.288409 LLDP, length 82 [|LLDP] 17:35:51.288411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0225 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.288413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.288419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.288422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.288426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.288431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.288441 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.288445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.288448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.288450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.288462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.288467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.299381 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.299404 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.299421 LLDP, length 82 [|LLDP] 17:35:51.299422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022e 5924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.299424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.299430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.299433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.299437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.299448 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.299454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.299464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.299468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.299471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.299473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.299477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.310391 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.310410 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.310427 LLDP, length 82 [|LLDP] 17:35:51.310429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0236 bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.310431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.310436 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.310441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.310450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.310455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.310458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.310460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.310464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.310467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.310479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.310485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.318653 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.318667 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.318683 LLDP, length 82 [|LLDP] 17:35:51.318685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.318686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.318692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.318695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.318699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.318711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.318716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.318726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.318731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.318733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.318735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.318740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.329660 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.329681 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.329699 LLDP, length 82 [|LLDP] 17:35:51.329700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0245 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.329702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.329708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.329712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.329715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.329727 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.329733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.329742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.329746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.329749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.329751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.329756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.340668 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.340688 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.340705 LLDP, length 82 [|LLDP] 17:35:51.340706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024d d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.340708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.340714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.340717 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.340722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.340732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.340737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.340739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.340741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.340745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.340757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.340762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.348925 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.348945 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.348962 LLDP, length 82 [|LLDP] 17:35:51.348963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0254 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.348965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.348971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.348974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.348978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.348989 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.348995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.349005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.349009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.349012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.349014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.349019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.359935 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.359953 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.359970 LLDP, length 82 [|LLDP] 17:35:51.359972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025c 8c59 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.359974 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.359979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.359988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.359993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.359996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.359998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.360003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.360006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.360010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.360022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.360027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.368199 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.368219 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.368236 LLDP, length 82 [|LLDP] 17:35:51.368237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0262 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.368239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.368245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.368248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.368252 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.368257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.368267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.368271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.368274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.368276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.368288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.368293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.379204 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.379224 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.379240 LLDP, length 82 [|LLDP] 17:35:51.379242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026b 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.379244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.379249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.379253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.379257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.379268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.379274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.379283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.379288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.379291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.379293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.379297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.390221 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.390248 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.390269 LLDP, length 82 [|LLDP] 17:35:51.390271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0273 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.390273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.390279 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.390285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.390295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.390300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.390303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.390305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.390308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.390312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.390324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.390329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.398478 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.398501 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.398521 LLDP, length 82 [|LLDP] 17:35:51.398522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0279 f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.398524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.398531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.398534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.398538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.398549 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.398555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.398565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.398570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.398572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.398574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.398579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.409485 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.409508 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.409528 LLDP, length 82 [|LLDP] 17:35:51.409529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0282 5925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.409531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.409537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.409541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.409544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.409556 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.409562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.409572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.409577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.409579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.409581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.409586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.420495 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.420518 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.420538 LLDP, length 82 [|LLDP] 17:35:51.420539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028a bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.420541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.420547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.420551 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.420556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.420566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.420571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.420574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.420575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.420579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.420591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.420597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.428757 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.428773 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.428794 LLDP, length 82 [|LLDP] 17:35:51.428796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.428797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.428803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.428807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.428811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.428822 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.428827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.428837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.428842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.428845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.428847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.428852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.439765 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.439787 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.439807 LLDP, length 82 [|LLDP] 17:35:51.439809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0299 72c5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.439811 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.439816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.439826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.439831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.439833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.439836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.439841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.439844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.439848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.439859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.439864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.450773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.450796 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.450815 LLDP, length 82 [|LLDP] 17:35:51.450817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a1 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.450819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.450825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.450830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.450833 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.450839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.450849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.450854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.450857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.450859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.450871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.450876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.459031 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.459053 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.459074 LLDP, length 82 [|LLDP] 17:35:51.459075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a8 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.459077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.459083 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.459087 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.459090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.459102 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.459108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.459118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.459123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.459125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.459127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.459132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.470041 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.470066 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.470088 LLDP, length 82 [|LLDP] 17:35:51.470089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b0 8c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.470092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.470098 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.470104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.470114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.470119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.470122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.470124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.470128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.470132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.470143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.470149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.478314 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.478347 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.478375 LLDP, length 82 [|LLDP] 17:35:51.478377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b6 d925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.478379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.478387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.478391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.478395 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.478407 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.478413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.478425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.478430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.478433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.478435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.478440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.489319 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.489343 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.489368 LLDP, length 82 [|LLDP] 17:35:51.489370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bf 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.489372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.489379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.489383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.489386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.489398 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.489404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.489416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.489421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.489424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.489426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.489431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.500326 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.500354 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.500378 LLDP, length 82 [|LLDP] 17:35:51.500380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c7 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.500382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.500388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.500401 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.500407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.500418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.500423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.500426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.500428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.500432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.500445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.500450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.508580 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.508607 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.508630 LLDP, length 82 [|LLDP] 17:35:51.508632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cd f2be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.508634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.508640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.508644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.508647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.508659 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.508665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.508676 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.508680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.508683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.508686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.508691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.519591 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.519618 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.519640 LLDP, length 82 [|LLDP] 17:35:51.519642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d6 5924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.519644 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.519650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.519661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.519666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.519669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.519671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.519677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.519689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.519693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.519706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.519712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.530604 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.530631 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.530654 LLDP, length 82 [|LLDP] 17:35:51.530656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02de bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.530661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.530668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.530672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.530675 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.530681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.530691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.530696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.530699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.530702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.530714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.530719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.538860 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.538888 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.538914 LLDP, length 82 [|LLDP] 17:35:51.538916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 0c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.538918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.538925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.538929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.538932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.538945 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.538951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.538962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.538966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.538970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.538972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.538976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.549875 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.549906 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.549930 LLDP, length 82 [|LLDP] 17:35:51.549932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ed 72be 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.549934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.549940 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.549947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.549958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.549962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.549965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.549968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.549972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.549976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.549987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.549993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.558130 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.558157 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.558187 LLDP, length 82 [|LLDP] 17:35:51.558189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f3 bf91 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.558191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.558197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.558201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.558205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.558217 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.558224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.558236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.558240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.558243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.558245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.558250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.569139 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.569166 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.569188 LLDP, length 82 [|LLDP] 17:35:51.569190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fc 25f2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.569192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.569199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.569202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.569206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.569218 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.569224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.569234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.569239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.569242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.569245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.569250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.580156 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.580185 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.580205 LLDP, length 82 [|LLDP] 17:35:51.580207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0304 8c58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.580209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.580215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.580219 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.580224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.580234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.580239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.580241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.580244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.580248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.580260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.580265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.588400 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.588422 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.588442 LLDP, length 82 [|LLDP] 17:35:51.588443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030a d925 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.588446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.588452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.588455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.588459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.588470 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.588476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.588486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.588491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.588493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.588496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.588500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.599424 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.599446 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.599469 LLDP, length 82 [|LLDP] 17:35:51.599471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0313 3f8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.599473 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.599479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.599489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.599494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.599498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.599500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.599505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.599509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.599513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.599525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.599531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.610436 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.610473 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.610502 LLDP, length 82 [|LLDP] 17:35:51.610504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031b a5f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.610506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.610514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.610518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.610521 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.610527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.610540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.610544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.610548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.610550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.610562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.610568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.618684 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.618710 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.618730 LLDP, length 82 [|LLDP] 17:35:51.618731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0321 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.618733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.618739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.618743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.618747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.618758 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.618764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.618775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.618780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.618783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.618785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.618790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.629688 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.629712 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.629732 LLDP, length 82 [|LLDP] 17:35:51.629747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032a 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.629750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.629756 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.629762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.629772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.629776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.629779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.629781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.629785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.629789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.629801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.629807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.640724 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.640761 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.640790 LLDP, length 82 [|LLDP] 17:35:51.640792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0332 bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.640795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.640806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.640810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.640814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.640827 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.640834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.640854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.640861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.640866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.640869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.640876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.648974 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.649005 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.649040 LLDP, length 82 [|LLDP] 17:35:51.649042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 0c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.649044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.649051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.649055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.649059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.649071 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.649077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.649088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.649093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.649097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.649099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.649104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.659972 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.659990 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.660012 LLDP, length 82 [|LLDP] 17:35:51.660013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0341 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.660015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.660022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.660026 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.660031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.660041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.660046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.660049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.660051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.660055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.660067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.660072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.668227 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.668247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.668269 LLDP, length 82 [|LLDP] 17:35:51.668271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0347 bf89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.668273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.668279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.668283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.668287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.668299 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.668304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.668315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.668319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.668323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.668325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.668330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.679236 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.679260 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.679281 LLDP, length 82 [|LLDP] 17:35:51.679283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0350 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.679285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.679290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.679311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.679318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.679321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.679323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.679328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.679332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.679335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.679348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.679354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.690250 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.690279 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.690304 LLDP, length 82 [|LLDP] 17:35:51.690306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0358 8c5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.690308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.690315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.690318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.690322 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.690328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.690339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.690344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.690347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.690349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.690361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.690366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.698504 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.698531 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.698554 LLDP, length 82 [|LLDP] 17:35:51.698556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035e d923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.698558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.698566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.698569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.698573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.698584 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.698591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.698602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.698607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.698610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.698612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.698618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.709510 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.709535 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.709556 LLDP, length 82 [|LLDP] 17:35:51.709557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0367 3f89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.709559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.709565 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.709570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.709581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.709585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.709588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.709591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.709594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.709598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.709610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.709616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.720521 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.720537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.720556 LLDP, length 82 [|LLDP] 17:35:51.720558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036f a5f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.720560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.720566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.720570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.720573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.720584 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.720590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.720600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.720605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.720608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.720610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.720615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.728779 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.728802 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.728822 LLDP, length 82 [|LLDP] 17:35:51.728824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0375 f2bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.728826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.728831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.728835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.728839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.728850 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.728856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.728866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.728870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.728873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.728875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.728880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.739794 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.739817 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.739838 LLDP, length 82 [|LLDP] 17:35:51.739839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037e 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.739841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.739848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.739852 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.739856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.739867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.739871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.739875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.739877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.739881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.739892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.739898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.750796 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.750821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.750842 LLDP, length 82 [|LLDP] 17:35:51.750843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0386 bf89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.750845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.750852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.750856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.750859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.750870 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.750877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.750887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.750891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.750894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.750896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.750901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.759055 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.759078 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.759098 LLDP, length 82 [|LLDP] 17:35:51.759099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d 0c56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.759102 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.759107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.759118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.759123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.759126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.759128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.759134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.759137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.759141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.759153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.759158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.770071 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.770088 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.770108 LLDP, length 82 [|LLDP] 17:35:51.770109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0395 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.770111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.770117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.770121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.770124 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.770129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.770153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.770159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.770162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.770164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.770176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.770182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.778321 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.778346 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.778365 LLDP, length 82 [|LLDP] 17:35:51.778367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039b bf8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.778369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.778375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.778379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.778383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.778395 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.778400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.778411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.778415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.778418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.778421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.778426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.789332 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.789355 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.789375 LLDP, length 82 [|LLDP] 17:35:51.789377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a4 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.789379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.789385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.789390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.789400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.789405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.789408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.789410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.789414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.789417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.789430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.789436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.800345 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.800369 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.800390 LLDP, length 82 [|LLDP] 17:35:51.800391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ac 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.800393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.800399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.800403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.800406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.800418 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.800424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.800435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.800439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.800442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.800444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.800449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.808598 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.808623 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.808645 LLDP, length 82 [|LLDP] 17:35:51.808646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b2 d92a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.808648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.808654 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.808658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.808662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.808674 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.808680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.808690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.808695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.808697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.808699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.808704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.819608 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.819631 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.819653 LLDP, length 82 [|LLDP] 17:35:51.819654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bb 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.819657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.819662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.819666 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.819671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.819681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.819686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.819689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.819692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.819696 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.819707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.819713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.830623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.830640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.830659 LLDP, length 82 [|LLDP] 17:35:51.830661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c3 a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.830663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.830669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.830673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.830676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.830688 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.830694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.830704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.830708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.830712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.830714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.830719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.838876 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.838900 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.838920 LLDP, length 82 [|LLDP] 17:35:51.838921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c9 f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.838923 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.838929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.838939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.838944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.838947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.838950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.838955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.838958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.838962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.838974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.838980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.849885 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.849909 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.849929 LLDP, length 82 [|LLDP] 17:35:51.849931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d2 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.849933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.849938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.849942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.849946 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.849951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.849961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.849966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.849969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.849971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.849983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.849988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.858144 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.858167 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.858187 LLDP, length 82 [|LLDP] 17:35:51.858188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d8 a5f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.858190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.858197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.858201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.858205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.858216 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.858222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.858233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.858237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.858240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.858242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.858247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.869160 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.869190 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.869214 LLDP, length 82 [|LLDP] 17:35:51.869216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.869218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.869225 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.869231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.869242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.869247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.869250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.869252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.869256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.869260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.869272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.869278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.880170 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.880188 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.880209 LLDP, length 82 [|LLDP] 17:35:51.880211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e9 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.880213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.880220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.880223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.880227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.880239 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.880245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.880255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.880259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.880263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.880265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.880270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.888423 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.888447 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.888466 LLDP, length 82 [|LLDP] 17:35:51.888468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ef bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.888470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.888476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.888480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.888484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.888496 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.888502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.888512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.888517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.888520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.888522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.888527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.899430 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.899454 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.899474 LLDP, length 82 [|LLDP] 17:35:51.899476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f8 25f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.899478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.899484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.899487 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.899493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.899504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.899508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.899511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.899513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.899517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.899530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.899536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.910440 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.910464 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.910484 LLDP, length 82 [|LLDP] 17:35:51.910486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0400 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.910488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.910493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.910497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.910501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.910513 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.910519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.910529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.910533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.910536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.910538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.910543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.918698 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.918720 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.918740 LLDP, length 82 [|LLDP] 17:35:51.918742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0406 d924 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.918744 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.918750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.918760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.918765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.918767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.918770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.918774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.918778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.918782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.918794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.918800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.929708 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.929732 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.929752 LLDP, length 82 [|LLDP] 17:35:51.929753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040f 3f8a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.929755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.929762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.929766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.929769 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.929775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.929786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.929790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.929793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.929795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.929807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.929813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.940721 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.940738 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.940757 LLDP, length 82 [|LLDP] 17:35:51.940759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0417 a5f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.940761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.940766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.940770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.940774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.940786 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.940792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.940802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.940807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.940810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.940812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.940817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.948974 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.948997 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.949016 LLDP, length 82 [|LLDP] 17:35:51.949018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041d f2bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.949020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.949026 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.949032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.949042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.949047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.949050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.949052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.949056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.949059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.949071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.949076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.959984 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.960010 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.960030 LLDP, length 82 [|LLDP] 17:35:51.960031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0426 5923 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.960034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.960040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.960043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.960047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.960058 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.960064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.960074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.960079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.960082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.960084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.960089 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.968245 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.968267 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.968287 LLDP, length 82 [|LLDP] 17:35:51.968288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042c a5f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.968290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.968296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.968299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.968303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.968315 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.968321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.968332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.968336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.968339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.968341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.968346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.979251 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.979275 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.979294 LLDP, length 82 [|LLDP] 17:35:51.979296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 0c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.979298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.979315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.979319 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.979324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.979334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.979339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.979342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.979344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.979348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.979361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.979366 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.990264 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.990286 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.990305 LLDP, length 82 [|LLDP] 17:35:51.990307 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043d 72bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.990309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.990315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.990319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.990322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.990334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.990340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.990350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.990354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.990357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.990360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.990364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:51.998522 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:51.998545 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.998565 LLDP, length 82 [|LLDP] 17:35:51.998567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0443 bf8b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:51.998569 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:51.998574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:51.998585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:51.998589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.998592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:51.998594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:51.998599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:51.998603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:51.998606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:51.998618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:51.998624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.009533 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.009556 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.009577 LLDP, length 82 [|LLDP] 17:35:52.009579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044c 25f1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.009581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.009587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.009591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.009595 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.009600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.009611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.009616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.009619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.009621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.009633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.009638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.020539 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.020563 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.020583 LLDP, length 82 [|LLDP] 17:35:52.020585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0454 8c57 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.020587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.020593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.020597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.020600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.020612 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.020618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.020628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.020633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.020636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.020638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.020642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.028799 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.028821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.028840 LLDP, length 82 [|LLDP] 17:35:52.028842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045a d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.028844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.028849 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.028855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.028865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.028870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.028873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.028875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.028878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.028882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.028894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.028900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.039807 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.039829 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.039850 LLDP, length 82 [|LLDP] 17:35:52.039851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0463 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.039853 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.039859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.039862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.039866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.039878 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.039884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.039894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.039898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.039902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.039904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.039909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.050820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.050842 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.050862 LLDP, length 82 [|LLDP] 17:35:52.050863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046b a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.050865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.050871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.050876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.050880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.050892 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.050897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.050907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.050912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.050915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.050917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.050921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.059074 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.059101 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.059124 LLDP, length 82 [|LLDP] 17:35:52.059125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0471 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.059127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.059133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.059137 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.059142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.059153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.059158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.059161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.059163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.059167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.059180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.059185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.070087 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.070109 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.070130 LLDP, length 82 [|LLDP] 17:35:52.070132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047a 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.070133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.070139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.070143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.070147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.070159 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.070165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.070175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.070179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.070182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.070185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.070189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.078344 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.078367 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.078387 LLDP, length 82 [|LLDP] 17:35:52.078389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0480 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.078391 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.078396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.078406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.078411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.078414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.078416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.078421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.078425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.078429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.078441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.078446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.089354 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.089379 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.089398 LLDP, length 82 [|LLDP] 17:35:52.089400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.089402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.089408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.089412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.089416 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.089421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.089432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.089436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.089443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.089445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.089457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.089463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.100363 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.100386 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.100407 LLDP, length 82 [|LLDP] 17:35:52.100408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0491 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.100410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.100416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.100420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.100423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.100435 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.100441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.100451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.100455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.100458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.100461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.100465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.108623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.108640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.108659 LLDP, length 82 [|LLDP] 17:35:52.108661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0497 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.108663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.108669 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.108675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.108686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.108690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.108693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.108695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.108699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.108703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.108714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.108720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.119630 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.119654 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.119674 LLDP, length 82 [|LLDP] 17:35:52.119676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a0 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.119678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.119684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.119688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.119692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.119703 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.119709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.119719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.119723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.119727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.119729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.119733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.130642 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.130664 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.130685 LLDP, length 82 [|LLDP] 17:35:52.130687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a8 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.130689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.130695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.130699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.130702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.130714 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.130720 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.130730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.130734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.130737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.130739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.130744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.138897 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.138919 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.138939 LLDP, length 82 [|LLDP] 17:35:52.138941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ae d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.138943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.138949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.138953 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.138958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.138969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.138973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.138976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.138978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.138982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.138994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.138999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.149908 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.149931 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.149951 LLDP, length 82 [|LLDP] 17:35:52.149953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b7 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.149955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.149961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.149965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.149968 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.149980 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.149986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.149997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.150001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.150004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.150006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.150011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.158164 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.158188 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.158208 LLDP, length 82 [|LLDP] 17:35:52.158209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bd 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.158212 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.158217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.158228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.158233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.158236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.158238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.158243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.158247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.158251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.158263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.158269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.169179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.169198 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.169218 LLDP, length 82 [|LLDP] 17:35:52.169220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c5 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.169222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.169228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.169232 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.169235 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.169241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.169251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.169256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.169258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.169261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.169273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.169278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.180198 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.180228 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.180256 LLDP, length 82 [|LLDP] 17:35:52.180258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ce 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.180260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.180268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.180271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.180275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.180287 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.180302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.180314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.180319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.180323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.180325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.180330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.188452 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.188481 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.188507 LLDP, length 82 [|LLDP] 17:35:52.188509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d4 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.188512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.188519 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.188525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.188537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.188542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.188545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.188547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.188551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.188554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.188567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.188573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.199477 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.199500 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.199526 LLDP, length 82 [|LLDP] 17:35:52.199528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.199530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.199538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.199541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.199545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.199557 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.199563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.199573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.199578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.199581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.199583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.199589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.210472 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.210499 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.210526 LLDP, length 82 [|LLDP] 17:35:52.210528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e5 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.210530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.210537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.210541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.210544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.210557 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.210563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.210573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.210578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.210581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.210583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.210588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.218729 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.218752 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.218774 LLDP, length 82 [|LLDP] 17:35:52.218776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04eb bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.218778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.218785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.218788 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.218794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.218805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.218810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.218814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.218816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.218820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.218842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.218848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.229738 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.229758 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.229781 LLDP, length 82 [|LLDP] 17:35:52.229782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f4 2619 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.229784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.229791 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.229794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.229798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.229810 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.229817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.229828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.229832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.229835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.229838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.229842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.240742 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.240775 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.240796 LLDP, length 82 [|LLDP] 17:35:52.240798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fc 8c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.240800 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.240806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.240816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.240821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.240824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.240826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.240832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.240836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.240839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.240851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.240857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.249001 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.249027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.249050 LLDP, length 82 [|LLDP] 17:35:52.249052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0502 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.249054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.249060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.249064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.249068 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.249073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.249083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.249088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.249091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.249093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.249105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.249111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.260008 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.260035 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.260057 LLDP, length 82 [|LLDP] 17:35:52.260058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050b 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.260060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.260066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.260069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.260073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.260085 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.260090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.260101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.260105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.260109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.260111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.260116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.268277 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.268301 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.268324 LLDP, length 82 [|LLDP] 17:35:52.268325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0511 8c7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.268327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.268333 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.268339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.268349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.268354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.268361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.268364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.268368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.268371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.268383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.268389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.279288 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.279316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.279339 LLDP, length 82 [|LLDP] 17:35:52.279341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0519 f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.279342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.279350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.279353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.279357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.279373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.279379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.279390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.279395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.279398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.279400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.279405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.290290 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.290316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.290340 LLDP, length 82 [|LLDP] 17:35:52.290342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0522 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.290345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.290351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.290355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.290358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.290370 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.290376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.290386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.290391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.290394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.290396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.290401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.298548 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.298573 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.298595 LLDP, length 82 [|LLDP] 17:35:52.298596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0528 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.298598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.298604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.298608 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.298613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.298624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.298628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.298631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.298633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.298637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.298649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.298655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.309555 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.309578 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.309598 LLDP, length 82 [|LLDP] 17:35:52.309600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.309602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.309607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.309611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.309615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.309626 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.309632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.309642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.309647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.309650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.309652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.309657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.320563 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.320588 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.320607 LLDP, length 82 [|LLDP] 17:35:52.320609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0539 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.320611 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.320617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.320627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.320632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.320635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.320637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.320642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.320646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.320649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.320661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.320666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.328820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.328844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.328865 LLDP, length 82 [|LLDP] 17:35:52.328866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053f bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.328868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.328874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.328878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.328882 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.328887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.328898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.328903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.328906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.328908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.328920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.328925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.339832 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.339855 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.339874 LLDP, length 82 [|LLDP] 17:35:52.339876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0548 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.339878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.339884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.339888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.339892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.339903 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.339909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.339920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.339925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.339928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.339930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.339935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.348089 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.348112 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.348132 LLDP, length 82 [|LLDP] 17:35:52.348134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054e 72e7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.348136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.348142 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.348147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.348157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.348162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.348165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.348167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.348171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.348174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.348186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.348191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.359099 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.359122 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.359141 LLDP, length 82 [|LLDP] 17:35:52.359143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0556 d947 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.359144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.359150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.359154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.359157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.359169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.359175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.359185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.359190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.359193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.359195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.359200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.370110 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.370137 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.370159 LLDP, length 82 [|LLDP] 17:35:52.370161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055f 3fad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.370163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.370169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.370173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.370177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.370189 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.370195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.370206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.370210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.370213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.370216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.370221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.378366 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.378389 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.378409 LLDP, length 82 [|LLDP] 17:35:52.378411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0565 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.378413 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.378419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.378423 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.378428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.378438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.378443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.378446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.378448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.378452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.378464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.378470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.389380 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.389397 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.389417 LLDP, length 82 [|LLDP] 17:35:52.389418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056d f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.389420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.389427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.389431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.389435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.389447 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.389452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.389462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.389467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.389470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.389472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.389476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.400384 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.400407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.400427 LLDP, length 82 [|LLDP] 17:35:52.400429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0576 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.400430 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.400436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.400446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.400451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.400454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.400456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.400461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.400465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.400469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.400481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.400486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.408643 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.408668 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.408688 LLDP, length 82 [|LLDP] 17:35:52.408690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057c a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.408692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.408698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.408701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.408705 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.408710 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.408720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.408725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.408728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.408730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.408742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.408748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.419654 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.419677 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.419697 LLDP, length 82 [|LLDP] 17:35:52.419698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.419700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.419707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.419710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.419714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.419726 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.419732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.419751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.419757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.419760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.419762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.419767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.430661 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.430684 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.430705 LLDP, length 82 [|LLDP] 17:35:52.430706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058d 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.430708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.430714 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.430719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.430730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.430735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.430738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.430740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.430744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.430747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.430759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.430765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.438918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.438942 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.438962 LLDP, length 82 [|LLDP] 17:35:52.438963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0593 bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.438965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.438971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.438975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.438978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.438990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.438996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.439006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.439010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.439013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.439016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.439020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.449938 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.449955 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.449974 LLDP, length 82 [|LLDP] 17:35:52.449976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059c 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.449978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.449984 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.449987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.449991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.450003 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.450009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.450019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.450024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.450026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.450029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.450034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.458192 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.458208 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.458228 LLDP, length 82 [|LLDP] 17:35:52.458229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a2 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.458231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.458237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.458241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.458246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.458256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.458261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.458264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.458266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.458270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.458282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.458287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.469198 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.469220 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.469239 LLDP, length 82 [|LLDP] 17:35:52.469241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05aa d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.469243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.469249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.469253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.469257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.469268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.469274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.469285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.469289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.469292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.469294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.469299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.480206 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.480229 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.480249 LLDP, length 82 [|LLDP] 17:35:52.480250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b3 3fb2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.480252 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.480258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.480269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.480274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.480276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.480279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.480284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.480288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.480291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.480303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.480310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.488465 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.488491 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.488511 LLDP, length 82 [|LLDP] 17:35:52.488513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b9 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.488515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.488520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.488538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.488543 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.488548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.488559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.488563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.488566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.488568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.488580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.488586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.499511 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.499548 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.499578 LLDP, length 82 [|LLDP] 17:35:52.499580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c1 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.499583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.499593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.499596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.499600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.499612 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.499619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.499634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.499640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.499643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.499645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.499650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.510492 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.510513 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.510540 LLDP, length 82 [|LLDP] 17:35:52.510542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ca 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.510544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.510550 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.510556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.510566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.510571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.510574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.510576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.510580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.510584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.510597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.510602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.518741 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.518764 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.518784 LLDP, length 82 [|LLDP] 17:35:52.518786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d0 a615 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.518788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.518794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.518797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.518801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.518812 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.518818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.518829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.518834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.518837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.518839 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.518844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.529750 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.529773 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.529794 LLDP, length 82 [|LLDP] 17:35:52.529796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.529798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.529804 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.529807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.529811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.529823 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.529829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.529840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.529844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.529847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.529850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.529855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.540760 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.540782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.540802 LLDP, length 82 [|LLDP] 17:35:52.540804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e1 72de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.540806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.540812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.540815 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.540820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.540830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.540835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.540838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.540840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.540844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.540856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.540862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.549027 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.549048 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.549070 LLDP, length 82 [|LLDP] 17:35:52.549072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e7 bfab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.549074 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.549081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.549085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.549089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.549101 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.549107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.549118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.549122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.549125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.549127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.549132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.560051 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.560084 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.560114 LLDP, length 82 [|LLDP] 17:35:52.560117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f0 2611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.560119 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.560125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.560137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.560142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.560146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.560148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.560155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.560158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.560162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.560175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.560181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.568297 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.568324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.568354 LLDP, length 82 [|LLDP] 17:35:52.568356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f6 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.568357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.568364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.568368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.568372 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.568378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.568388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.568393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.568396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.568398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.568411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.568417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.579299 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.579338 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.579361 LLDP, length 82 [|LLDP] 17:35:52.579362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fe d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.579365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.579371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.579375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.579378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.579390 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.579397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.579408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.579413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.579417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.579419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.579424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.590310 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.590337 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.590363 LLDP, length 82 [|LLDP] 17:35:52.590365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0607 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.590367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.590373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.590379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.590390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.590395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.590397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.590400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.590404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.590407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.590420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.590426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.598568 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.598594 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.598616 LLDP, length 82 [|LLDP] 17:35:52.598618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060d 8c7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.598620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.598626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.598630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.598635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.598647 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.598652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.598663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.598667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.598670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.598673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.598677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.609581 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.609600 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.609622 LLDP, length 82 [|LLDP] 17:35:52.609624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0615 f2de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.609626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.609633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.609637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.609640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.609652 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.609659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.609670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.609682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.609686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.609688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.609694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.620602 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.620625 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.620650 LLDP, length 82 [|LLDP] 17:35:52.620652 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061e 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.620654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.620661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.620665 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.620670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.620682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.620687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.620698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.620701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.620705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.620719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.620725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.628847 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.628870 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.628892 LLDP, length 82 [|LLDP] 17:35:52.628893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0624 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.628896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.628906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.628910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.628913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.628926 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.628932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.628943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.628947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.628951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.628953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.628958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.639856 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.639881 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.639903 LLDP, length 82 [|LLDP] 17:35:52.639905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.639906 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.639912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.639923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.639928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.639932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.639934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.639940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.639948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.639952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.639964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.639970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.648115 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.648141 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.648163 LLDP, length 82 [|LLDP] 17:35:52.648165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0633 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.648167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.648173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.648177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.648180 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.648186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.648197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.648202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.648205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.648207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.648219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.648225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.659118 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.659140 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.659160 LLDP, length 82 [|LLDP] 17:35:52.659161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063b bfab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.659163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.659169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.659173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.659176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.659188 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.659193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.659204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.659208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.659211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.659213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.659218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.670144 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.670173 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.670197 LLDP, length 82 [|LLDP] 17:35:52.670199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0644 2611 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.670201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.670208 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.670214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.670225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.670230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.670233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.670235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.670239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.670243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.670255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.670260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.678390 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.678415 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.678436 LLDP, length 82 [|LLDP] 17:35:52.678437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064a 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.678439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.678446 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.678449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.678453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.678465 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.678470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.678481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.678485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.678489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.678491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.678496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.689406 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.689434 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.689457 LLDP, length 82 [|LLDP] 17:35:52.689459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0652 d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.689461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.689467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.689471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.689475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.689487 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.689493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.689503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.689508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.689511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.689513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.689518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.700411 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.700439 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.700462 LLDP, length 82 [|LLDP] 17:35:52.700464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065b 3fab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.700466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.700472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.700476 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.700482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.700493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.700498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.700501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.700503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.700507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.700519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.700524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.708668 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.708691 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.708711 LLDP, length 82 [|LLDP] 17:35:52.708713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0661 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.708715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.708721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.708724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.708728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.708740 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.708746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.708756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.708761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.708764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.708766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.708770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.719675 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.719698 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.719718 LLDP, length 82 [|LLDP] 17:35:52.719719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0669 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.719722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.719727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.719737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.719742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.719745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.719747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.719752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.719756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.719760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.719771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.719777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.730687 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.730711 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.730730 LLDP, length 82 [|LLDP] 17:35:52.730732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0672 594b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.730734 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.730740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.730743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.730747 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.730753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.730763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.730767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.730771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.730773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.730784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.730789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.738944 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.738967 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.738989 LLDP, length 82 [|LLDP] 17:35:52.738991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0678 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.738993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.739000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.739003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.739007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.739019 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.739025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.739035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.739040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.739043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.739045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.739049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.749952 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.749976 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.749996 LLDP, length 82 [|LLDP] 17:35:52.749998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 0c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.750000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.750006 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.750011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.750022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.750026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.750029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.750031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.750035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.750039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.750051 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.750056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.758207 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.758231 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.758251 LLDP, length 82 [|LLDP] 17:35:52.758253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0687 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.758254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.758260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.758264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.758267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.758279 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.758284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.758295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.758299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.758302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.758304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.758309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.769223 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.769247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.769268 LLDP, length 82 [|LLDP] 17:35:52.769270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068f bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.769272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.769278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.769282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.769285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.769297 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.769303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.769326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.769332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.769335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.769338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.769342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.780234 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.780251 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.780272 LLDP, length 82 [|LLDP] 17:35:52.780273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0698 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.780275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.780281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.780285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.780290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.780301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.780305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.780309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.780311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.780315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.780326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.780332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.788491 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.788515 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.788536 LLDP, length 82 [|LLDP] 17:35:52.788537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069e 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.788539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.788545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.788549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.788553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.788565 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.788570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.788581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.788586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.788589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.788591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.788595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.799501 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.799518 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.799539 LLDP, length 82 [|LLDP] 17:35:52.799541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a6 d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.799543 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.799549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.799559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.799565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.799568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.799570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.799576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.799579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.799583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.799594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.799600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.810508 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.810533 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.810554 LLDP, length 82 [|LLDP] 17:35:52.810556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06af 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.810558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.810565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.810569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.810572 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.810578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.810588 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.810593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.810596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.810598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.810610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.810615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.818766 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.818790 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.818809 LLDP, length 82 [|LLDP] 17:35:52.818810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b5 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.818812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.818818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.818822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.818826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.818837 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.818843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.818853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.818857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.818860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.818863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.818868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.829775 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.829799 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.829819 LLDP, length 82 [|LLDP] 17:35:52.829821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bd f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.829823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.829829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.829835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.829846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.829851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.829853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.829856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.829860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.829863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.829875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.829880 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.838032 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.838055 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.838076 LLDP, length 82 [|LLDP] 17:35:52.838077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c4 3fab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.838080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.838085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.838089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.838092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.838103 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.838109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.838119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.838124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.838127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.838130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.838134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.849034 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.849051 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.849071 LLDP, length 82 [|LLDP] 17:35:52.849073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cc a619 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.849075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.849082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.849085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.849097 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.849103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.849114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860054 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.860077 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.860096 LLDP, length 82 [|LLDP] 17:35:52.860098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.860100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.860106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.860110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.860114 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.860119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.860128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.860143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.860148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.860150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.860155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.868307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.868331 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.868350 LLDP, length 82 [|LLDP] 17:35:52.868352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06db 5945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.868354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.868360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.868363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.868367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.868378 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.868384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.868394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.868397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.868402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.868404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.868408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.879328 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.879352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.879372 LLDP, length 82 [|LLDP] 17:35:52.879374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e3 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.879376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.879382 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.879387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.879397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.879400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.879404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.879408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.879420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.879425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.879427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.879432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.890327 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.890350 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.890369 LLDP, length 82 [|LLDP] 17:35:52.890371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ec 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.890373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.890379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.890383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.890386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.890398 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.890403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.890413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.890416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.890421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.890423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.890428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.898613 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.898640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.898668 LLDP, length 82 [|LLDP] 17:35:52.898670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f2 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.898672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.898680 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.898684 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.898688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.898699 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.898705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.898717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.898721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.898725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.898728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.898733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.909607 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.909634 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.909657 LLDP, length 82 [|LLDP] 17:35:52.909658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fa d945 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.909661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.909668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.909672 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.909677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.909688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.909691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.909695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.909707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.909713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.909715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.909720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.920609 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.920632 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.920653 LLDP, length 82 [|LLDP] 17:35:52.920655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0703 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.920656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.920662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.920666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.920670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.920681 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.920687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.920697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.920701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.920705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.920707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.920712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.928867 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.928891 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.928912 LLDP, length 82 [|LLDP] 17:35:52.928914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0709 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.928916 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.928922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.928932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.928935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.928941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.928944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.928949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.928961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.928966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.928969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.928973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.939875 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.939898 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.939918 LLDP, length 82 [|LLDP] 17:35:52.939919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0711 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.939921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.939928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.939931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.939936 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.939940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.939950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.939954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.939965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.939971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.939973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.939979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.948131 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.948148 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.948168 LLDP, length 82 [|LLDP] 17:35:52.948170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0718 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.948172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.948178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.948181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.948185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.948196 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.948202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.948212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.948215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.948219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.948221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.948226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.959145 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.959163 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.959183 LLDP, length 82 [|LLDP] 17:35:52.959184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0720 a612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.959186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.959192 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.959198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.959208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.959211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.959215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.959219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.959231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.959236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.959238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.959243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.970154 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.970178 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.970198 LLDP, length 82 [|LLDP] 17:35:52.970200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 0c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.970202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.970208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.970212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.970215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.970227 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.970233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.970243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.970246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.970251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.970253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.970258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.978412 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.978435 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.978455 LLDP, length 82 [|LLDP] 17:35:52.978457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072f 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.978459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.978465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.978468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.978472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.978483 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.978489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.978499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.978502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.978506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.978508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.978513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:52.989419 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:52.989442 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.989461 LLDP, length 82 [|LLDP] 17:35:52.989462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0737 bfac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:52.989464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:52.989470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:52.989474 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:52.989479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:52.989489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.989492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:52.989495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:52.989507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:52.989512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:52.989515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:52.989519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.000430 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.000455 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.000474 LLDP, length 82 [|LLDP] 17:35:53.000476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0740 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.000478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.000484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.000488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.000492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.000503 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.000509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.000519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.000522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.000527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.000529 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.000534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.008690 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.008707 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.008728 LLDP, length 82 [|LLDP] 17:35:53.008729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0746 72df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.008731 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.008737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.008748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.008751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.008756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.008760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.008764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.008776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.008781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.008783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.008788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.019698 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.019723 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.019743 LLDP, length 82 [|LLDP] 17:35:53.019745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074e d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.019747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.019753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.019757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.019761 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.019766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.019776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.019779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.019791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.019796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.019798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.019803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.030709 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.030727 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.030746 LLDP, length 82 [|LLDP] 17:35:53.030747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0757 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.030749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.030755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.030759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.030763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.030774 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.030780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.030790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.030793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.030797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.030800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.030804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.038964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.038987 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.039006 LLDP, length 82 [|LLDP] 17:35:53.039008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075d 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.039010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.039016 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.039021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.039032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.039036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.039040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.039043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.039055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.039060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.039063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.039067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.049975 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.049999 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.050020 LLDP, length 82 [|LLDP] 17:35:53.050022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0765 f2df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.050024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.050030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.050034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.050038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.050049 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.050055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.050065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.050069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.050074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.050076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.050081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.058232 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.058254 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.058274 LLDP, length 82 [|LLDP] 17:35:53.058276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076c 3fac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.058278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.058284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.058287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.058291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.058303 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.058309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.058319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.058321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.058326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.058328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.058333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.069248 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.069266 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.069285 LLDP, length 82 [|LLDP] 17:35:53.069287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0774 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.069289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.069295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.069298 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.069304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.069314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.069317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.069321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.069333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.069338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.069340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.069345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.080251 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.080275 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.080295 LLDP, length 82 [|LLDP] 17:35:53.080297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.080299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.080305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.080309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.080313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.080324 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.080330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.080340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.080343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.080348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.080350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.080354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.088513 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.088537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.088557 LLDP, length 82 [|LLDP] 17:35:53.088558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0783 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.088560 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.088565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.088575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.088579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.088584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.088588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.088592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.088604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.088609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.088611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.088616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.099518 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.099541 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.099563 LLDP, length 82 [|LLDP] 17:35:53.099565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078b bfb4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.099567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.099573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.099577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.099581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.099586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.099596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.099599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.099611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.099616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.099618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.099623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.110527 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.110551 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.110571 LLDP, length 82 [|LLDP] 17:35:53.110573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0794 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.110575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.110581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.110585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.110589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.110600 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.110606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.110616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.110619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.110624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.110627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.110631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.118786 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.118808 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.118829 LLDP, length 82 [|LLDP] 17:35:53.118831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079a 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.118833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.118839 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.118844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.118854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.118857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.118861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.118865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.118877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.118881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.118884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.118888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.129798 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.129815 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.129835 LLDP, length 82 [|LLDP] 17:35:53.129837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a2 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.129839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.129845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.129848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.129852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.129863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.129869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.129879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.129882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.129887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.129889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.129894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.138055 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.138081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.138101 LLDP, length 82 [|LLDP] 17:35:53.138102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a9 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.138104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.138110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.138114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.138118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.138130 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.138135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.138145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.138148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.138152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.138154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.138159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.149069 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.149086 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.149106 LLDP, length 82 [|LLDP] 17:35:53.149108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b1 8c79 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.149110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.149116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.149120 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.149125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.149136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.149139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.149143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.149155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.149160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.149163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.149167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.160076 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.160100 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.160120 LLDP, length 82 [|LLDP] 17:35:53.160122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b9 f2e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.160123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.160129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.160133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.160137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.160148 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.160154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.160164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.160167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.160171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.160173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.160178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.168329 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.168352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.168372 LLDP, length 82 [|LLDP] 17:35:53.168374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c0 3fad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.168376 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.168382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.168392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.168395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.168400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.168404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.168408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.168420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.168425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.168427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.168432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.179352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.179375 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.179397 LLDP, length 82 [|LLDP] 17:35:53.179398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c8 a613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.179400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.179407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.179411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.179415 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.179420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.179430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.179434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.179445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.179451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.179453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.179458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.190352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.190375 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.190395 LLDP, length 82 [|LLDP] 17:35:53.190397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 0c7a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.190399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.190404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.190409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.190413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.190425 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.190430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.190440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.190443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.190447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.190450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.190454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.198611 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.198634 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.198654 LLDP, length 82 [|LLDP] 17:35:53.198655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d7 5946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.198657 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.198663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.198668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.198678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.198681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.198685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.198689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.198701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.198706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.198709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.198714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.209623 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.209641 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.209660 LLDP, length 82 [|LLDP] 17:35:53.209661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07df bfad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.209663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.209670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.209673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.209677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.209688 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.209694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.209704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.209708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.209712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.209715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.209719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.220633 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.220650 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.220670 LLDP, length 82 [|LLDP] 17:35:53.220671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e8 2613 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.220673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.220679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.220683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.220687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.220698 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.220704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.220713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.220716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.220721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.220723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.220728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.228886 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.228910 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.228930 LLDP, length 82 [|LLDP] 17:35:53.228931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ee 72e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.228934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.228939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.228943 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.228949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.228959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.228962 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.228966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.228977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.228982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.228985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.228989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.239902 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.239919 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.239940 LLDP, length 82 [|LLDP] 17:35:53.239941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f6 d946 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.239943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.239949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.239953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.239956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.239968 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.239974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.239984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.239987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.239992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.239994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.239999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.248153 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.248176 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.248196 LLDP, length 82 [|LLDP] 17:35:53.248197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fd 2612 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.248200 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.248205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.248215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.248219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.248224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.248227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.248231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.248243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.248248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.248251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.248255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.259164 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.259187 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.259207 LLDP, length 82 [|LLDP] 17:35:53.259209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0805 8c78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.259211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.259217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.259221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.259224 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.259229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.259240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.259243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.259255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.259260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.259262 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.259267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.270181 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.270200 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.270221 LLDP, length 82 [|LLDP] 17:35:53.270222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080d f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.270224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.270230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.270234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.270238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.270249 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.270255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.270266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.270269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.270274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.270276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.270281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.278437 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.278461 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.278481 LLDP, length 82 [|LLDP] 17:35:53.278483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0814 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.278485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.278490 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.278496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.278506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.278509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.278513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.278517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.278528 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.278533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.278536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.278540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.289443 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.289466 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.289485 LLDP, length 82 [|LLDP] 17:35:53.289487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.289489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.289495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.289499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.289502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.289514 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.289519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.289530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.289533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.289537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.289539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.289544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.300454 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.300478 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.300498 LLDP, length 82 [|LLDP] 17:35:53.300500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.300502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.300508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.300512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.300515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.300526 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.300532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.300542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.300545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.300549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.300552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.300557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.308710 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.308733 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.308754 LLDP, length 82 [|LLDP] 17:35:53.308755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082b 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.308757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.308763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.308767 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.308772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.308782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.308785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.308790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.308801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.308807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.308809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.308814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.319731 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.319765 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.319795 LLDP, length 82 [|LLDP] 17:35:53.319797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0833 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.319799 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.319807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.319811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.319815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.319827 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.319833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.319846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.319849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.319854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.319856 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.319861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.330740 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.330768 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.330791 LLDP, length 82 [|LLDP] 17:35:53.330792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083c 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.330795 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.330801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.330812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.330816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.330822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.330825 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.330829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.330853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.330858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.330861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.330866 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.338998 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.339015 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.339037 LLDP, length 82 [|LLDP] 17:35:53.339039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0842 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.339041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.339051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.339055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.339059 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.339064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.339074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.339078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.339090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.339095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.339097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.339101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.350005 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.350028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.350050 LLDP, length 82 [|LLDP] 17:35:53.350052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084a d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.350054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.350060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.350064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.350068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.350080 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.350086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.350096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.350099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.350104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.350110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.350130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.358307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.358341 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.358372 LLDP, length 82 [|LLDP] 17:35:53.358373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0851 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.358376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.358386 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.358393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.358410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.358414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.358419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.358422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.358435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.358441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.358443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.358449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.369307 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.369339 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.369370 LLDP, length 82 [|LLDP] 17:35:53.369372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0859 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.369375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.369384 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.369388 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.369392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.369405 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.369412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.369427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.369431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.369436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.369439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.369444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.380305 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.380336 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.380373 LLDP, length 82 [|LLDP] 17:35:53.380375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0861 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.380377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.380385 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.380389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.380392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.380404 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.380411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.380424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.380428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.380433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.380435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.380440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.388538 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.388564 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.388586 LLDP, length 82 [|LLDP] 17:35:53.388588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0868 3fd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.388590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.388597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.388600 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.388606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.388617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.388624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.388629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.388641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.388646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.388649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.388654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.399551 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.399580 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.399603 LLDP, length 82 [|LLDP] 17:35:53.399605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0870 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.399607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.399614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.399618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.399621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.399633 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.399639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.399650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.399654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.399658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.399661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.399666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.410559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.410580 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.410604 LLDP, length 82 [|LLDP] 17:35:53.410605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.410607 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.410614 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.410625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.410628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.410634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.410638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.410642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.410654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.410667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.410670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.410676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.418819 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.418847 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.418872 LLDP, length 82 [|LLDP] 17:35:53.418874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087f 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.418876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.418883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.418887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.418891 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.418897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.418908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.418911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.418924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.418929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.418932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.418936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.429823 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.429849 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.429873 LLDP, length 82 [|LLDP] 17:35:53.429875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0887 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.429877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.429883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.429887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.429891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.429902 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.429908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.429919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.429923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.429927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.429930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.429934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.438081 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.438110 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.438132 LLDP, length 82 [|LLDP] 17:35:53.438134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.438136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.438142 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.438147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.438158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.438161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.438165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.438169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.438181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.438190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.438192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.438198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.449100 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.449126 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.449147 LLDP, length 82 [|LLDP] 17:35:53.449149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0896 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.449151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.449157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.449161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.449165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.449176 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.449182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.449197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.449200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.449204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.449207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.449212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.460123 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.460149 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.460172 LLDP, length 82 [|LLDP] 17:35:53.460174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089e d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.460176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.460183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.460190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.460194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.460206 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.460212 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.460223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.460226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.460230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.460232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.460237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.468357 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.468383 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.468404 LLDP, length 82 [|LLDP] 17:35:53.468406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a5 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.468408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.468414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.468418 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.468423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.468434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.468437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.468441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.468453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.468458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.468460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.468465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.479394 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.479424 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.479447 LLDP, length 82 [|LLDP] 17:35:53.479448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ad 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.479450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.479456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.479460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.479464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.479475 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.479481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.479493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.479496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.479501 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.479503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.479507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.490381 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.490410 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.490434 LLDP, length 82 [|LLDP] 17:35:53.490435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b5 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.490437 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.490443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.490455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.490458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.490464 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.490468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.490472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.490484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.490488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.490491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.490496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.498633 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.498657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.498678 LLDP, length 82 [|LLDP] 17:35:53.498680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bc 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.498681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.498688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.498692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.498696 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.498701 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.498712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.498715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.498727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.498731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.498738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.498743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.509640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.509663 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.509688 LLDP, length 82 [|LLDP] 17:35:53.509690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c4 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.509691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.509698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.509702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.509706 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.509718 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.509724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.509734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.509737 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.509742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.509744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.509749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.520659 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.520685 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.520713 LLDP, length 82 [|LLDP] 17:35:53.520714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.520716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.520722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.520727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.520738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.520741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.520745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.520749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.520761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.520766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.520769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.520774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.528910 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.528935 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.528956 LLDP, length 82 [|LLDP] 17:35:53.528958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d3 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.528960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.528966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.528970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.528974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.528985 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.528991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.529002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.529006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.529010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.529012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.529017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.539922 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.539947 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.539968 LLDP, length 82 [|LLDP] 17:35:53.539970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08db bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.539972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.539978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.539982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.539985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.539997 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.540003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.540013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.540016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.540021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.540023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.540027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.548179 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.548203 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.548224 LLDP, length 82 [|LLDP] 17:35:53.548226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.548228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.548234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.548238 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.548243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.548254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.548256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.548260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.548272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.548276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.548279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.548284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.559187 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.559210 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.559232 LLDP, length 82 [|LLDP] 17:35:53.559233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ea 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.559235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.559241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.559245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.559248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.559259 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.559266 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.559276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.559279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.559283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.559286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.559291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.570205 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.570246 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.570274 LLDP, length 82 [|LLDP] 17:35:53.570276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f2 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.570278 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.570284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.570297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.570301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.570307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.570311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.570314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.570326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.570331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.570334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.570338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.578462 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.578489 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.578513 LLDP, length 82 [|LLDP] 17:35:53.578515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f9 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.578517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.578523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.578526 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.578530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.578536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.578547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.578550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.578563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.578567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.578570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.578574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.589471 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.589497 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.589520 LLDP, length 82 [|LLDP] 17:35:53.589522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0901 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.589524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.589531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.589535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.589539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.589555 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.589561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.589572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.589575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.589579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.589582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.589587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.600484 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.600519 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.600546 LLDP, length 82 [|LLDP] 17:35:53.600548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0909 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.600551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.600558 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.600563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.600576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.600580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.600584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.600588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.600600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.600605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.600612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.600617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.608735 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.608766 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.608789 LLDP, length 82 [|LLDP] 17:35:53.608791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0910 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.608793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.608800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.608804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.608807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.608819 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.608826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.608836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.608839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.608843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.608845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.608850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.619751 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.619782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.619808 LLDP, length 82 [|LLDP] 17:35:53.619810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0918 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.619812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.619820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.619823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.619827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.619839 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.619845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.619856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.619859 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.619863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.619866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.619871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.628000 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.628026 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.628048 LLDP, length 82 [|LLDP] 17:35:53.628050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.628052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.628058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.628062 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.628067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.628078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.628081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.628085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.628097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.628102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.628105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.628110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.639013 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.639040 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.639063 LLDP, length 82 [|LLDP] 17:35:53.639064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0927 596c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.639066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.639073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.639077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.639081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.639092 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.639098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.639109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.639113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.639117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.639119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.639124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.650019 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.650043 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.650065 LLDP, length 82 [|LLDP] 17:35:53.650067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092f bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.650069 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.650075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.650085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.650089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.650094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.650098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.650102 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.650114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.650118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.650121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.650126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.658282 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.658309 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.658333 LLDP, length 82 [|LLDP] 17:35:53.658335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.658337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.658343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.658347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.658351 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.658357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.658369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.658376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.658388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.658394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.658396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.658401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.669292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.669324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.669348 LLDP, length 82 [|LLDP] 17:35:53.669350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093e 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.669352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.669360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.669364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.669368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.669380 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.669386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.669398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.669401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.669406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.669408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.669413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.680306 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.680329 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.680358 LLDP, length 82 [|LLDP] 17:35:53.680359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0946 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.680362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.680369 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.680374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.680386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.680389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.680393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.680396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.680409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.680414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.680417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.680422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.688581 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.688613 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.688657 LLDP, length 82 [|LLDP] 17:35:53.688660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094d 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.688662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.688671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.688675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.688678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.688690 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.688697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.688710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.688713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.688718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.688720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.688725 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.699577 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.699606 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.699631 LLDP, length 82 [|LLDP] 17:35:53.699633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0955 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.699635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.699642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.699646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.699649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.699661 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.699667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.699678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.699682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.699687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.699689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.699694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.710586 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.710606 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.710628 LLDP, length 82 [|LLDP] 17:35:53.710630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095d f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.710632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.710639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.710643 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.710649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.710660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.710663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.710666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.710679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.710684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.710686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.710691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.718830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.718854 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.718878 LLDP, length 82 [|LLDP] 17:35:53.718880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0964 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.718883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.718889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.718893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.718896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.718909 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.718914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.718925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.718929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.718933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.718936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.718940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.729847 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.729874 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.729901 LLDP, length 82 [|LLDP] 17:35:53.729903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.729905 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.729911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.729922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.729926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.729932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.729935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.729939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.729952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.729957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.729959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.729964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.738099 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.738128 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.738149 LLDP, length 82 [|LLDP] 17:35:53.738151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0972 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.738153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.738159 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.738163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.738167 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.738173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.738185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.738188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.738200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.738205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.738207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.738212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.749111 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.749139 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.749161 LLDP, length 82 [|LLDP] 17:35:53.749163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.749165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.749171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.749175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.749178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.749190 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.749196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.749207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.749210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.749215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.749218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.749231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.760131 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.760163 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.760192 LLDP, length 82 [|LLDP] 17:35:53.760194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0983 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.760196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.760204 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.760210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.760222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.760225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.760229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.760233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.760245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.760250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.760253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.760258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.768380 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.768407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.768430 LLDP, length 82 [|LLDP] 17:35:53.768432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.768434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.768441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.768445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.768448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.768460 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.768466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.768499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.768503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.768508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.768510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.768515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.779412 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.779433 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.779455 LLDP, length 82 [|LLDP] 17:35:53.779456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0992 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.779458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.779465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.779469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.779472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.779485 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.779490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.779502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.779505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.779509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.779511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.779516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.790395 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.790418 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.790439 LLDP, length 82 [|LLDP] 17:35:53.790441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099a d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.790443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.790449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.790452 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.790458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.790468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.790471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.790475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.790487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.790492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.790495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.790500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.798655 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.798672 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.798693 LLDP, length 82 [|LLDP] 17:35:53.798694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a1 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.798696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.798702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.798706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.798710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.798721 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.798727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.798738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.798741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.798745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.798747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.798752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.809662 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.809684 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.809702 LLDP, length 82 [|LLDP] 17:35:53.809704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a9 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.809706 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.809711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.809721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.809725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.809730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.809734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.809737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.809750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.809755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.809758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.809762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.820677 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.820700 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.820723 LLDP, length 82 [|LLDP] 17:35:53.820725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b1 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.820726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.820732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.820736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.820739 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.820744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.820754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.820757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.820770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.820775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.820777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.820782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.828930 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.828954 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.828973 LLDP, length 82 [|LLDP] 17:35:53.828975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b8 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.828977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.828982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.828986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.828989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.829002 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.829007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.829017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.829020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.829024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.829026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.829031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.839938 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.839960 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.839980 LLDP, length 82 [|LLDP] 17:35:53.839982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c0 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.839984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.839990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.839995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.840005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.840007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.840011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.840015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.840027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.840032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.840034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.840039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.848196 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.848218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.848238 LLDP, length 82 [|LLDP] 17:35:53.848239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c6 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.848241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.848247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.848250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.848254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.848266 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.848272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.848282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.848284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.848289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.848291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.848296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.859210 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.859226 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.859245 LLDP, length 82 [|LLDP] 17:35:53.859247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cf 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.859249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.859255 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.859259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.859262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.859274 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.859280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.859290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.859293 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.859298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.859300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.859316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.870216 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.870239 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.870258 LLDP, length 82 [|LLDP] 17:35:53.870260 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d7 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.870262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.870268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.870272 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.870278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.870288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.870291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.870294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.870307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.870312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.870314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.870319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.878476 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.878498 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.878516 LLDP, length 82 [|LLDP] 17:35:53.878518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.878519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.878525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.878529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.878533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.878545 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.878551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.878561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.878565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.878569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.878571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.878577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.889484 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.889507 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.889526 LLDP, length 82 [|LLDP] 17:35:53.889528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e6 7306 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.889530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.889535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.889545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.889548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.889553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.889557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.889560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.889572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.889578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.889580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.889584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.900493 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.900516 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.900535 LLDP, length 82 [|LLDP] 17:35:53.900537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ee d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.900538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.900544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.900548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.900552 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.900557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.900568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.900571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.900583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.900588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.900590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.900594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.908749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.908772 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.908790 LLDP, length 82 [|LLDP] 17:35:53.908792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f5 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.908794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.908800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.908804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.908808 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.908820 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.908825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.908835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.908838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.908842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.908844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.908849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.919764 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.919780 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.919799 LLDP, length 82 [|LLDP] 17:35:53.919801 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fd 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.919803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.919809 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.919814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.919824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.919827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.919830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.919834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.919846 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.919851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.919854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.919858 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.928026 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.928048 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.928067 LLDP, length 82 [|LLDP] 17:35:53.928068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a03 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.928071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.928076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.928080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.928083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.928095 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.928100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.928110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.928113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.928118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.928120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.928125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.941168 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.941184 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.941203 LLDP, length 82 [|LLDP] 17:35:53.941205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0c 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.941207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.941214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.941217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.941221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.941233 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.941238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.941248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.941251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.941256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.941258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.941262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.950037 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.950060 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.950079 LLDP, length 82 [|LLDP] 17:35:53.950081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a14 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.950083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.950088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.950092 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.950097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.950107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.950109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.950113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.950125 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.950130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.950132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.950137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.958294 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.958317 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.958335 LLDP, length 82 [|LLDP] 17:35:53.958337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.958339 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.958344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.958348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.958352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.958363 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.958368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.958379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.958382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.958386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.958388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.958393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.969308 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.969330 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.969349 LLDP, length 82 [|LLDP] 17:35:53.969350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a23 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.969352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.969358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.969368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.969371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.969377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.969380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.969384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.969396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.969401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.969403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.969408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.980314 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.980336 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.980355 LLDP, length 82 [|LLDP] 17:35:53.980357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2b bfcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.980359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.980364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.980368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.980371 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.980377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.980387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.980390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.980402 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.980407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.980409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.980413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:53.988573 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:53.988595 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.988614 LLDP, length 82 [|LLDP] 17:35:53.988616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:53.988618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:53.988624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:53.988627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:53.988631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:53.988643 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:53.988648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:53.988658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.988661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:53.988665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:53.988668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:53.988673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.001855 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.001871 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.001890 LLDP, length 82 [|LLDP] 17:35:54.001891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3a 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.001893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.001899 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.001904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.001914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.001917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.001921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.001925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.001937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.001943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.001945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.001950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.010601 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.010616 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.010635 LLDP, length 82 [|LLDP] 17:35:54.010637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a42 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.010638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.010644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.010648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.010652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.010663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.010669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.010678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.010681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.010685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.010688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.010693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.018903 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.018949 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.018996 LLDP, length 82 [|LLDP] 17:35:54.018998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a49 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.019000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.019011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.019014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.019018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.019031 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.019038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.019054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.019059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.019064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.019066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.019072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.029923 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.029974 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.030024 LLDP, length 82 [|LLDP] 17:35:54.030027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a51 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.030029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.030042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.030046 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.030055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.030073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.030077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.030081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.030095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.030102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.030105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.030111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.038182 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.038238 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.038287 LLDP, length 82 [|LLDP] 17:35:54.038289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a57 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.038292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.038303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.038307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.038311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.038323 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.038332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.038350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.038354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.038359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.038361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.038367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.049184 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.049253 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.049306 LLDP, length 82 [|LLDP] 17:35:54.049309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a60 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.049312 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.049319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.049340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.049346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.049359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.049363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.049367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.049381 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.049387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.049390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.049396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.062573 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.062618 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.062666 LLDP, length 82 [|LLDP] 17:35:54.062668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a68 a63c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.062671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.062681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.062685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.062689 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.062695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.062714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.062718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.062732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.062738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.062740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.062746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.068453 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.068509 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.068557 LLDP, length 82 [|LLDP] 17:35:54.068559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.068561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.068573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.068577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.068580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.068593 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.068600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.068622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.068627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.068633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.068635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.068641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.079449 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.079501 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.079546 LLDP, length 82 [|LLDP] 17:35:54.079548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a77 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.079551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.079562 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.079568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.079585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.079589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.079594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.079598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.079611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.079618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.079621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.079628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.090468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.090527 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.090582 LLDP, length 82 [|LLDP] 17:35:54.090584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7f bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.090586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.090598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.090602 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.090606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.090620 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.090628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.090647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.090652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.090658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.090660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.090667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.098712 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.098751 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.098793 LLDP, length 82 [|LLDP] 17:35:54.098795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.098797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.098807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.098811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.098814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.098826 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.098834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.098850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.098854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.098860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.098862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.098867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.109693 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.109721 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.109746 LLDP, length 82 [|LLDP] 17:35:54.109747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8e 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.109749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.109757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.109760 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.109766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.109778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.109781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.109784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.109796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.109802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.109804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.109809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.117945 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.117971 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.117991 LLDP, length 82 [|LLDP] 17:35:54.117993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a94 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.117995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.118001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.118005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.118008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.118020 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.118026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.118037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.118041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.118045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.118047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.118052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.128956 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.128973 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.128993 LLDP, length 82 [|LLDP] 17:35:54.128995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9d 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.128996 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.129002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.129012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.129016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.129021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.129025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.129028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.129042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.129047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.129049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.129054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.139964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.139991 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.140011 LLDP, length 82 [|LLDP] 17:35:54.140014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa5 8c9d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.140015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.140022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.140025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.140029 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.140034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.140045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.140048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.140060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.140065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.140067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.140072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.148219 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.148241 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.148260 LLDP, length 82 [|LLDP] 17:35:54.148262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aab d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.148263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.148269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.148273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.148277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.148289 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.148294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.148305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.148308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.148312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.148315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.148320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.159230 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.159255 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.159275 LLDP, length 82 [|LLDP] 17:35:54.159277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab4 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.159279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.159285 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.159290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.159301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.159315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.159320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.159324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.159339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.159344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.159346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.159351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.170240 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.170264 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.170284 LLDP, length 82 [|LLDP] 17:35:54.170286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abc a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.170287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.170294 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.170297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.170301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.170313 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.170319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.170329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.170332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.170337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.170340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.170344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.178500 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.178516 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.178537 LLDP, length 82 [|LLDP] 17:35:54.178539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac2 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.178541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.178547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.178550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.178554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.178566 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.178572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.178581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.178585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.178589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.178591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.178596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.189510 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.189527 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.189546 LLDP, length 82 [|LLDP] 17:35:54.189548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acb 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.189550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.189556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.189559 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.189565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.189575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.189578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.189582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.189594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.189598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.189601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.189606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.200521 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.200538 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.200557 LLDP, length 82 [|LLDP] 17:35:54.200559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad3 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.200561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.200567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.200570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.200574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.200586 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.200591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.200602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.200606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.200610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.200612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.200617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.208776 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.208803 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.208825 LLDP, length 82 [|LLDP] 17:35:54.208827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.208829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.208834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.208845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.208849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.208854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.208858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.208861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.208874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.208878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.208881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.208885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.219785 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.219822 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.219845 LLDP, length 82 [|LLDP] 17:35:54.219847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae2 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.219849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.219856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.219859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.219863 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.219869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.219879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.219882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.219894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.219899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.219902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.219906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.228079 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.228120 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.228147 LLDP, length 82 [|LLDP] 17:35:54.228150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae8 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.228152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.228162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.228166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.228170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.228182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.228189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.228204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.228207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.228212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.228215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.228220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.239058 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.239081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.239108 LLDP, length 82 [|LLDP] 17:35:54.239110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af1 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.239112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.239118 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.239123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.239135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.239138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.239142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.239146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.239158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.239163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.239166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.239171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.250065 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.250081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.250102 LLDP, length 82 [|LLDP] 17:35:54.250104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af9 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.250106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.250112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.250115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.250119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.250131 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.250137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.250147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.250149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.250154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.250156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.250161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.258320 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.258338 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.258359 LLDP, length 82 [|LLDP] 17:35:54.258360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aff d96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.258362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.258368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.258372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.258375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.258387 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.258393 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.258403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.258406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.258410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.258413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.258417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.269327 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.269351 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.269372 LLDP, length 82 [|LLDP] 17:35:54.269373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b08 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.269376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.269381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.269385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.269390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.269400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.269403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.269407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.269419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.269424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.269426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.269431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.280340 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.280362 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.280381 LLDP, length 82 [|LLDP] 17:35:54.280383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b10 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.280384 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.280390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.280394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.280397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.280409 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.280414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.280424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.280428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.280432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.280435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.280439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.288617 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.288648 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.288676 LLDP, length 82 [|LLDP] 17:35:54.288678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b16 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.288680 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.288686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.288698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.288703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.288709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.288712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.288716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.288729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.288734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.288736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.288741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.299615 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.299645 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.299679 LLDP, length 82 [|LLDP] 17:35:54.299681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1f 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.299683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.299694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.299698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.299702 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.299707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.299719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.299723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.299736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.299741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.299744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.299749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.310628 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.310650 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.310674 LLDP, length 82 [|LLDP] 17:35:54.310676 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b27 bfd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.310678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.310685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.310689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.310692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.310711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.310718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.310729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.310733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.310737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.310740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.310744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.318882 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.318906 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.318931 LLDP, length 82 [|LLDP] 17:35:54.318933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.318935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.318942 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.318948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.318960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.318963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.318967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.318971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.318992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.318998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.319000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.319005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.329891 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.329912 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.329935 LLDP, length 82 [|LLDP] 17:35:54.329937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b36 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.329939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.329946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.329950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.329954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.329966 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.329971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.329983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.329986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.329990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.329992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.329998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.338146 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.338170 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.338191 LLDP, length 82 [|LLDP] 17:35:54.338193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3c bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.338195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.338201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.338205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.338208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.338224 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.338230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.338241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.338244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.338248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.338251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.338256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.349157 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.349183 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.349205 LLDP, length 82 [|LLDP] 17:35:54.349207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b45 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.349209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.349215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.349218 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.349224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.349234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.349237 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.349241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.349258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.349263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.349266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.349271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.360166 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.360191 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.360211 LLDP, length 82 [|LLDP] 17:35:54.360212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4d 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.360214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.360221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.360225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.360228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.360240 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.360246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.360261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.360265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.360269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.360272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.360277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.368422 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.368447 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.368469 LLDP, length 82 [|LLDP] 17:35:54.368470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b53 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.368472 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.368478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.368488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.368491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.368497 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.368501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.368505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.368517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.368522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.368525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.368530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.379439 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.379459 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.379482 LLDP, length 82 [|LLDP] 17:35:54.379483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5c 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.379486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.379492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.379496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.379500 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.379506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.379517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.379520 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.379532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.379537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.379540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.379545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.390448 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.390469 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.390493 LLDP, length 82 [|LLDP] 17:35:54.390494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b64 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.390496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.390503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.390507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.390510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.390522 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.390528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.390539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.390542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.390546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.390549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.390554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.398699 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.398722 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.398743 LLDP, length 82 [|LLDP] 17:35:54.398744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6a f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.398746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.398753 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.398758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.398769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.398772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.398776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.398779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.398792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.398797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.398799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.398804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.409705 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.409727 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.409747 LLDP, length 82 [|LLDP] 17:35:54.409749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b73 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.409751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.409756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.409760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.409764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.409775 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.409781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.409792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.409795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.409799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.409802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.409807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.417964 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.417985 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.418004 LLDP, length 82 [|LLDP] 17:35:54.418006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b79 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.418008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.418014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.418018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.418021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.418033 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.418039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.418049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.418052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.418056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.418059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.418064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.428981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.428999 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.429019 LLDP, length 82 [|LLDP] 17:35:54.429020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.429023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.429028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.429032 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.429037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.429048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.429051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.429055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.429068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.429073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.429076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.429080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.439983 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.440006 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.440025 LLDP, length 82 [|LLDP] 17:35:54.440027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8a 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.440029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.440035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.440039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.440043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.440055 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.440060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.440070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.440073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.440078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.440081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.440085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.448242 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.448264 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.448284 LLDP, length 82 [|LLDP] 17:35:54.448286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b90 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.448288 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.448294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.448304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.448307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.448312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.448316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.448320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.448333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.448338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.448340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.448345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.459248 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.459270 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.459290 LLDP, length 82 [|LLDP] 17:35:54.459291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b99 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.459293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.459299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.459312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.459318 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.459323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.459334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.459337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.459350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.459355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.459357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.459362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.470259 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.470280 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.470299 LLDP, length 82 [|LLDP] 17:35:54.470301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba1 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.470303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.470309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.470312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.470316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.470328 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.470333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.470344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.470347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.470351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.470353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.470358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.478514 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.478537 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.478557 LLDP, length 82 [|LLDP] 17:35:54.478558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba7 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.478560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.478566 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.478571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.478581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.478584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.478588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.478591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.478603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.478608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.478611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.478615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.489527 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.489551 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.489570 LLDP, length 82 [|LLDP] 17:35:54.489572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb0 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.489574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.489580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.489583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.489587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.489598 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.489604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.489614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.489617 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.489621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.489624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.489629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.500536 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.500558 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.500578 LLDP, length 82 [|LLDP] 17:35:54.500580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb8 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.500582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.500587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.500591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.500595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.500607 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.500613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.500623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.500626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.500631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.500633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.500638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.508795 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.508817 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.508836 LLDP, length 82 [|LLDP] 17:35:54.508838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbe f308 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.508840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.508845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.508849 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.508855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.508864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.508867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.508871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.508883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.508888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.508890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.508895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.519803 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.519825 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.519844 LLDP, length 82 [|LLDP] 17:35:54.519845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc7 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.519847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.519853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.519857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.519861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.519873 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.519879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.519889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.519892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.519896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.519899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.519903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.528060 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.528083 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.528103 LLDP, length 82 [|LLDP] 17:35:54.528105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcd a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.528107 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.528113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.528123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.528126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.528131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.528135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.528138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.528151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.528156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.528158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.528163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.539072 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.539096 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.539116 LLDP, length 82 [|LLDP] 17:35:54.539118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.539120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.539126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.539130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.539134 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.539139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.539150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.539153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.539165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.539170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.539173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.539178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.550086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.550103 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.550122 LLDP, length 82 [|LLDP] 17:35:54.550124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bde 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.550126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.550132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.550136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.550140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.550152 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.550158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.550169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.550172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.550176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.550178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.550183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.558340 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.558356 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.558376 LLDP, length 82 [|LLDP] 17:35:54.558377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be4 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.558379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.558385 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.558390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.558400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.558403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.558407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.558410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.558422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.558427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.558430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.558434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.569352 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.569376 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.569396 LLDP, length 82 [|LLDP] 17:35:54.569398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bed 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.569400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.569406 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.569410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.569414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.569426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.569432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.569442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.569445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.569449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.569451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.569456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.580362 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.580388 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.580409 LLDP, length 82 [|LLDP] 17:35:54.580410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf5 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.580412 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.580418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.580422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.580425 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.580437 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.580443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.580453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.580456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.580461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.580463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.580467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.588616 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.588640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.588660 LLDP, length 82 [|LLDP] 17:35:54.588661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfb d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.588663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.588669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.588672 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.588677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.588687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.588690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.588693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.588705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.588710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.588712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.588716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.599626 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.599649 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.599668 LLDP, length 82 [|LLDP] 17:35:54.599669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c04 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.599671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.599677 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.599681 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.599685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.599697 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.599702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.599712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.599716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.599720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.599722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.599727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.610641 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.610657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.610675 LLDP, length 82 [|LLDP] 17:35:54.610677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0c a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.610679 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.610684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.610694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.610697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.610702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.610706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.610710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.610722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.610727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.610729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.610733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.618895 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.618917 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.618938 LLDP, length 82 [|LLDP] 17:35:54.618939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c12 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.618941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.618948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.618952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.618956 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.618961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.618971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.618974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.618985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.618990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.618993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.618997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.629906 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.629928 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.629948 LLDP, length 82 [|LLDP] 17:35:54.629950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.629951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.629957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.629961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.629965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.629977 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.629984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.629994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.629997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.630002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.630004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.630009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.638162 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.638185 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.638204 LLDP, length 82 [|LLDP] 17:35:54.638206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c21 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.638208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.638214 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.638219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.638229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.638232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.638236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.638239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.638252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.638257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.638259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.638264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.649174 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.649196 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.649215 LLDP, length 82 [|LLDP] 17:35:54.649217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.649219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.649225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.649228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.649232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.649244 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.649250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.649259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.649263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.649267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.649269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.649274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.660183 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.660206 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.660225 LLDP, length 82 [|LLDP] 17:35:54.660226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c32 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.660228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.660234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.660238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.660242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.660254 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.660259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.660269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.660273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.660277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.660279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.660284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.668443 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.668467 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.668488 LLDP, length 82 [|LLDP] 17:35:54.668490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c38 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.668492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.668498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.668502 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.668507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.668517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.668520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.668525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.668537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.668541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.668544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.668549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.679468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.679497 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.679521 LLDP, length 82 [|LLDP] 17:35:54.679523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c41 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.679524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.679531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.679534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.679538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.679550 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.679557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.679568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.679571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.679576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.679578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.679583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.690483 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.690507 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.690533 LLDP, length 82 [|LLDP] 17:35:54.690535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c49 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.690537 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.690543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.690554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.690559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.690565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.690568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.690572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.690585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.690590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.690592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.690597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.698720 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.698743 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.698763 LLDP, length 82 [|LLDP] 17:35:54.698765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.698766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.698773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.698777 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.698781 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.698786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.698796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.698799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.698811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.698816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.698819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.698824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.709725 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.709749 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.709768 LLDP, length 82 [|LLDP] 17:35:54.709770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c58 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.709772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.709777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.709781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.709785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.709797 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.709803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.709813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.709817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.709821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.709823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.709827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.717981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.718003 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.718022 LLDP, length 82 [|LLDP] 17:35:54.718024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5e 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.718026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.718032 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.718037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.718047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.718050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.718055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.718058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.718070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.718075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.718078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.718083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.728992 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.729014 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.729034 LLDP, length 82 [|LLDP] 17:35:54.729035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c66 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.729037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.729043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.729047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.729050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.729062 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.729067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.729078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.729081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.729085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.729088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.729093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.740009 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.740027 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.740046 LLDP, length 82 [|LLDP] 17:35:54.740048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6f 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.740049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.740055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.740060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.740063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.740075 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.740080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.740090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.740093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.740098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.740100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.740104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.748263 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.748284 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.748304 LLDP, length 82 [|LLDP] 17:35:54.748305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c75 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.748307 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.748314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.748317 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.748323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.748333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.748336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.748340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.748352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.748358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.748360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.748364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.759284 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.759327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.759361 LLDP, length 82 [|LLDP] 17:35:54.759364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e 0ca2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.759366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.759374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.759377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.759381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.759395 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.759401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.759411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.759415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.759419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.759422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.759427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.770292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.770320 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.770349 LLDP, length 82 [|LLDP] 17:35:54.770350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c86 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.770352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.770359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.770385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.770389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.770395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.770399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.770403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.770415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.770420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.770422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.770428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.778550 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.778576 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.778597 LLDP, length 82 [|LLDP] 17:35:54.778599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8c bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.778601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.778607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.778624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.778628 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.778633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.778644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.778648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.778661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.778666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.778668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.778673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.789555 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.789581 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.789604 LLDP, length 82 [|LLDP] 17:35:54.789606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c95 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.789607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.789614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.789617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.789621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.789632 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.789639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.789659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.789663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.789671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.789673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.789678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.800566 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.800586 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.800609 LLDP, length 82 [|LLDP] 17:35:54.800610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9d 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.800613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.800619 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.800625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.800635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.800638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.800642 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.800646 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.800657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.800663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.800665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.800670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.808820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.808851 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.808874 LLDP, length 82 [|LLDP] 17:35:54.808875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.808878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.808884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.808888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.808891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.808903 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.808909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.808920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.808923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.808927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.808930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.808934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.819828 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.819853 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.819874 LLDP, length 82 [|LLDP] 17:35:54.819876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cac 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.819878 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.819884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.819888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.819892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.819904 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.819909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.819920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.819923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.819927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.819929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.819934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.828086 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.828111 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.828136 LLDP, length 82 [|LLDP] 17:35:54.828138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb2 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.828140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.828146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.828150 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.828155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.828165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.828168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.828172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.828183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.828188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.828191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.828196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.839103 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.839133 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.839171 LLDP, length 82 [|LLDP] 17:35:54.839174 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cba f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.839176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.839183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.839187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.839191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.839204 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.839210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.839222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.839225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.839230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.839233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.839238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.850111 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.850142 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.850167 LLDP, length 82 [|LLDP] 17:35:54.850169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc3 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.850170 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.850177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.850189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.850192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.850198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.850201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.850205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.850217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.850222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.850224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.850229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.858367 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.858386 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.858406 LLDP, length 82 [|LLDP] 17:35:54.858408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc9 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.858410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.858417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.858421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.858424 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.858430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.858441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.858444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.858456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.858461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.858463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.858468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.869373 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.869395 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.869415 LLDP, length 82 [|LLDP] 17:35:54.869416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.869418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.869424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.869428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.869432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.869443 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.869449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.869459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.869462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.869466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.869469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.869473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.880385 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.880402 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.880421 LLDP, length 82 [|LLDP] 17:35:54.880423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cda 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.880425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.880431 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.880436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.880446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.880448 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.880452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.880456 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.880467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.880472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.880475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.880479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.888640 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.888663 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.888683 LLDP, length 82 [|LLDP] 17:35:54.888684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce0 bfcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.888686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.888692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.888696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.888700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.888712 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.888717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.888728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.888731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.888735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.888737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.888741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.899650 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.899673 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.899692 LLDP, length 82 [|LLDP] 17:35:54.899694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce9 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.899696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.899701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.899705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.899709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.899720 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.899726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.899736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.899739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.899743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.899746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.899750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.907905 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.907927 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.907947 LLDP, length 82 [|LLDP] 17:35:54.907948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cef 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.907950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.907956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.907960 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.907965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.907975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.907978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.907982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.907994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.907999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.908001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.908005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.918918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.918934 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.918953 LLDP, length 82 [|LLDP] 17:35:54.918955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf7 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.918957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.918963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.918967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.918971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.918983 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.918988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.918998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.919001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.919005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.919008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.919012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.929936 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.929951 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.929970 LLDP, length 82 [|LLDP] 17:35:54.929972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d00 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.929974 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.929979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.929990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.929993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.929998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.930002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.930006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.930017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.930022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.930024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.930029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.938184 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.938205 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.938224 LLDP, length 82 [|LLDP] 17:35:54.938226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d06 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.938228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.938234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.938238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.938241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.938246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.938256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.938259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.938271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.938276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.938278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.938283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.949192 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.949214 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.949234 LLDP, length 82 [|LLDP] 17:35:54.949235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.949237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.949243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.949247 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.949251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.949263 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.949269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.949279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.949282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.949286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.949288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.949293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.960202 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.960224 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.960243 LLDP, length 82 [|LLDP] 17:35:54.960245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d17 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.960247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.960253 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.960258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.960269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.960272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.960276 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.960280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.960291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.960296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.960299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.960304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.968459 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.968482 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.968501 LLDP, length 82 [|LLDP] 17:35:54.968503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1d a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.968505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.968511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.968515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.968518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.968530 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.968535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.968545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.968548 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.968552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.968554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.968559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.979472 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.979487 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.979506 LLDP, length 82 [|LLDP] 17:35:54.979507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.979509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.979515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.979519 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.979523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.979534 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.979540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.979550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.979552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.979556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.979559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.979564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.990481 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.990502 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.990520 LLDP, length 82 [|LLDP] 17:35:54.990522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2e 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.990524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.990530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.990533 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.990538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.990548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.990551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.990556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.990567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.990572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.990574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.990579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:54.998739 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:54.998762 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.998782 LLDP, length 82 [|LLDP] 17:35:54.998784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d34 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:54.998786 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:54.998792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:54.998796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:54.998800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:54.998812 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:54.998818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:54.998828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.998831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:54.998835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:54.998838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:54.998842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.009749 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.009772 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.009792 LLDP, length 82 [|LLDP] 17:35:55.009795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3d 263a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.009796 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.009803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.009812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.009816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.009821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.009824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.009828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.009840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.009844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.009847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.009851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.018006 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.018028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.018048 LLDP, length 82 [|LLDP] 17:35:55.018050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d43 72ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.018052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.018058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.018062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.018066 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.018071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.018081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.018083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.018096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.018100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.018103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.018108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.029017 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.029038 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.029057 LLDP, length 82 [|LLDP] 17:35:55.029059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4b d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.029061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.029067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.029071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.029074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.029086 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.029091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.029101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.029104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.029109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.029111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.029116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.040027 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.040043 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.040063 LLDP, length 82 [|LLDP] 17:35:55.040064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d54 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.040066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.040072 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.040078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.040088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.040090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.040094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.040098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.040109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.040114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.040117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.040122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.048281 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.048303 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.048322 LLDP, length 82 [|LLDP] 17:35:55.048324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5a 8c9d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.048326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.048332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.048335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.048339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.048350 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.048356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.048366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.048370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.048374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.048376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.048381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.059291 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.059322 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.059342 LLDP, length 82 [|LLDP] 17:35:55.059344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d62 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.059346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.059352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.059356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.059360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.059371 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.059377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.059386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.059389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.059393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.059396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.059400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.070303 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.070324 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.070343 LLDP, length 82 [|LLDP] 17:35:55.070344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6b 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.070346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.070353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.070356 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.070361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.070372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.070375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.070378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.070390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.070395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.070397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.070402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.078559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.078582 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.078600 LLDP, length 82 [|LLDP] 17:35:55.078603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d71 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.078618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.078625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.078629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.078633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.078646 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.078652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.078662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.078665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.078669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.078671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.078677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.089610 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.089654 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.089685 LLDP, length 82 [|LLDP] 17:35:55.089687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.089689 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.089697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.089712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.089717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.089726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.089730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.089734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.089746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.089752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.089754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.089760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.100674 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.100742 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.100803 LLDP, length 82 [|LLDP] 17:35:55.100806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d82 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.100810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.100827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.100832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.100836 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.100843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.100864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.100868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.100884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.100892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.100895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.100901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.108911 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.108982 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.109051 LLDP, length 82 [|LLDP] 17:35:55.109053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d88 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.109056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.109073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.109077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.109082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.109096 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.109104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.109125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.109129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.109135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.109137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.109143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.119865 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.119896 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.119924 LLDP, length 82 [|LLDP] 17:35:55.119925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d91 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.119928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.119935 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.119941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.119952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.119956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.119959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.119963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.119975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.119980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.119983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.119987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.128109 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.128134 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.128156 LLDP, length 82 [|LLDP] 17:35:55.128158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d97 7307 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.128160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.128166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.128170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.128173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.128185 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.128191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.128201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.128204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.128208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.128210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.128215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.139116 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.139141 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.139162 LLDP, length 82 [|LLDP] 17:35:55.139164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.139166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.139172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.139177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.139180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.139192 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.139198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.139209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.139212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.139216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.139219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.139223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.150126 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.150151 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.150173 LLDP, length 82 [|LLDP] 17:35:55.150175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da8 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.150177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.150183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.150187 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.150192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.150202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.150206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.150210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.150221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.150226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.150229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.150234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.158390 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.158407 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.158428 LLDP, length 82 [|LLDP] 17:35:55.158430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dae 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.158432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.158438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.158442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.158446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.158457 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.158463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.158473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.158476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.158480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.158483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.158487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.169397 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.169421 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.169441 LLDP, length 82 [|LLDP] 17:35:55.169443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db6 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.169445 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.169451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.169461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.169465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.169470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.169474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.169477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.169489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.169494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.169496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.169501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.180401 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.180425 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.180445 LLDP, length 82 [|LLDP] 17:35:55.180446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbf 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.180448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.180454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.180458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.180462 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.180467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.180478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.180480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.180492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.180497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.180500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.180504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.188662 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.188686 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.188705 LLDP, length 82 [|LLDP] 17:35:55.188707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc5 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.188709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.188715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.188719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.188723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.188735 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.188740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.188751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.188754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.188758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.188760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.188765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.199671 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.199695 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.199714 LLDP, length 82 [|LLDP] 17:35:55.199716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.199718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.199724 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.199729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.199739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.199742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.199746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.199750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.199761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.199766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.199769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.199773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.207928 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.207952 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.207971 LLDP, length 82 [|LLDP] 17:35:55.207973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd4 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.207975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.207981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.207985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.207989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.208001 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.208006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.208017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.208020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.208024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.208026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.208031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.218941 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.218965 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.218984 LLDP, length 82 [|LLDP] 17:35:55.218985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddc bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.218987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.218993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.218997 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.219001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.219012 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.219017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.219027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.219030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.219034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.219037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.219042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.229950 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.229975 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.229995 LLDP, length 82 [|LLDP] 17:35:55.229997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de5 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.229999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.230005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.230009 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.230014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.230025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.230028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.230032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.230043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.230048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.230050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.230055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.238205 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.238228 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.238247 LLDP, length 82 [|LLDP] 17:35:55.238249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0deb 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.238251 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.238257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.238261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.238265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.238276 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.238282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.238292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.238296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.238300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.238302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.238308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.249217 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.249240 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.249260 LLDP, length 82 [|LLDP] 17:35:55.249261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.249263 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.249269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.249279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.249282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.249288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.249291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.249295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.249306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.249311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.249313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.249318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.260223 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.260247 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.260266 LLDP, length 82 [|LLDP] 17:35:55.260268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfc 3fd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.260270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.260276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.260280 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.260284 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.260289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.260299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.260302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.260314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.260319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.260321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.260326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.268482 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.268505 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.268525 LLDP, length 82 [|LLDP] 17:35:55.268526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e02 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.268528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.268535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.268538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.268542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.268553 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.268560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.268570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.268573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.268577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.268580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.268584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.279494 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.279517 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.279537 LLDP, length 82 [|LLDP] 17:35:55.279538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.279540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.279547 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.279552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.279562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.279565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.279569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.279573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.279584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.279589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.279592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.279597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.290506 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.290522 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.290541 LLDP, length 82 [|LLDP] 17:35:55.290542 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e13 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.290544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.290550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.290554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.290557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.290569 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.290575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.290584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.290587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.290592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.290594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.290599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.298759 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.298782 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.298801 LLDP, length 82 [|LLDP] 17:35:55.298803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e19 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.298805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.298811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.298814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.298818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.298829 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.298835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.298845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.298848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.298852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.298855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.298859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.309773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.309797 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.309816 LLDP, length 82 [|LLDP] 17:35:55.309818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.309820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.309826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.309830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.309835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.309846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.309849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.309853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.309865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.309869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.309872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.309877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.318028 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.318052 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.318071 LLDP, length 82 [|LLDP] 17:35:55.318073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e28 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.318075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.318081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.318085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.318089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.318101 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.318106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.318116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.318119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.318124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.318126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.318131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.329038 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.329061 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.329081 LLDP, length 82 [|LLDP] 17:35:55.329082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e30 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.329084 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.329090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.329100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.329103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.329109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.329112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.329116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.329128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.329133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.329135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.329140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.340053 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.340076 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.340095 LLDP, length 82 [|LLDP] 17:35:55.340097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e39 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.340099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.340105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.340109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.340113 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.340118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.340128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.340131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.340143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.340148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.340150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.340155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.348305 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.348327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.348347 LLDP, length 82 [|LLDP] 17:35:55.348349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3f 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.348351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.348357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.348360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.348365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.348377 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.348382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.348392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.348395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.348399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.348401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.348406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.359321 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.359344 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.359363 LLDP, length 82 [|LLDP] 17:35:55.359365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e47 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.359367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.359373 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.359378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.359388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.359391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.359395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.359399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.359410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.359415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.359418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.359423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.370325 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.370348 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.370369 LLDP, length 82 [|LLDP] 17:35:55.370370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e50 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.370372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.370378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.370382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.370385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.370397 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.370403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.370413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.370416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.370420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.370422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.370426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.378584 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.378607 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.378628 LLDP, length 82 [|LLDP] 17:35:55.378629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e56 8ca1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.378631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.378637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.378641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.378645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.378656 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.378662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.378672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.378675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.378679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.378682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.378686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.389591 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.389614 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.389632 LLDP, length 82 [|LLDP] 17:35:55.389633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5e f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.389635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.389641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.389645 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.389650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.389660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.389663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.389667 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.389679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.389684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.389686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.389691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.397869 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.397901 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.397929 LLDP, length 82 [|LLDP] 17:35:55.397931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e65 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.397933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.397940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.397944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.397948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.397960 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.397966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.397978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.397982 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.397986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.397989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.397994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.408868 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.408888 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.408910 LLDP, length 82 [|LLDP] 17:35:55.408912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6d a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.408914 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.408919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.408930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.408934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.408940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.408944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.408947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.408960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.408965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.408967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.408972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.419871 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.419895 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.419915 LLDP, length 82 [|LLDP] 17:35:55.419916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.419919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.419925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.419929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.419932 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.419938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.419948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.419951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.419963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.419968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.419971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.419975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.428128 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.428152 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.428179 LLDP, length 82 [|LLDP] 17:35:55.428181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7c 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.428183 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.428189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.428193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.428197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.428210 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.428215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.428225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.428228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.428233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.428235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.428240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.439137 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.439161 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.439181 LLDP, length 82 [|LLDP] 17:35:55.439182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e84 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.439185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.439190 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.439196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.439206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.439209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.439212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.439216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.439228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.439232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.439235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.439240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.450148 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.450172 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.450191 LLDP, length 82 [|LLDP] 17:35:55.450193 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8d 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.450195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.450201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.450205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.450209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.450221 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.450227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.450237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.450240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.450244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.450247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.450251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.458409 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.458433 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.458452 LLDP, length 82 [|LLDP] 17:35:55.458453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e93 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.458455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.458461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.458466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.458470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.458481 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.458487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.458497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.458500 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.458504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.458507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.458512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.469419 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.469436 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.469456 LLDP, length 82 [|LLDP] 17:35:55.469457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9b d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.469460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.469466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.469469 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.469475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.469485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.469488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.469492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.469504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.469508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.469511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.469515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.480424 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.480449 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.480469 LLDP, length 82 [|LLDP] 17:35:55.480470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea4 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.480472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.480478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.480482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.480486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.480498 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.480503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.480513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.480516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.480521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.480523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.480528 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.488682 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.488704 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.488729 LLDP, length 82 [|LLDP] 17:35:55.488730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eaa 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.488732 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.488738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.488748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.488752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.488757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.488761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.488765 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.488776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.488781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.488784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.488788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.499693 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.499715 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.499735 LLDP, length 82 [|LLDP] 17:35:55.499737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb2 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.499738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.499744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.499748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.499751 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.499757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.499767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.499769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.499781 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.499786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.499789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.499793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.507948 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.507971 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.507990 LLDP, length 82 [|LLDP] 17:35:55.507992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb9 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.507994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.508000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.508003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.508007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.508019 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.508025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.508035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.508038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.508042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.508045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.508049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.518960 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.518984 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.519003 LLDP, length 82 [|LLDP] 17:35:55.519005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec1 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.519007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.519012 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.519018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.519028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.519031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.519034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.519038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.519049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.519054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.519057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.519062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.529972 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.529989 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.530008 LLDP, length 82 [|LLDP] 17:35:55.530010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.530012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.530018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.530021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.530025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.530036 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.530042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.530053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.530056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.530060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.530062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.530067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.538228 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.538251 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.538270 LLDP, length 82 [|LLDP] 17:35:55.538272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed0 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.538274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.538280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.538284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.538287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.538299 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.538304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.538314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.538317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.538322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.538324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.538329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.549238 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.549260 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.549279 LLDP, length 82 [|LLDP] 17:35:55.549281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed8 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.549283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.549288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.549292 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.549298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.549308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.549311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.549315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.549327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.549332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.549334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.549338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.560244 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.560266 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.560285 LLDP, length 82 [|LLDP] 17:35:55.560287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee1 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.560289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.560295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.560299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.560302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.560314 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.560320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.560330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.560333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.560337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.560340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.560344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.568504 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.568526 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.568544 LLDP, length 82 [|LLDP] 17:35:55.568546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee7 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.568548 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.568554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.568563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.568567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.568572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.568576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.568579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.568591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.568596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.568598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.568603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.579517 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.579540 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.579563 LLDP, length 82 [|LLDP] 17:35:55.579565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eef d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.579567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.579573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.579577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.579581 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.579586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.579596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.579599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.579610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.579615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.579618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.579622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.590525 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.590548 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.590568 LLDP, length 82 [|LLDP] 17:35:55.590569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef8 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.590571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.590577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.590581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.590584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.590596 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.590602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.590611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.590614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.590618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.590621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.590625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.598780 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.598802 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.598820 LLDP, length 82 [|LLDP] 17:35:55.598822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efe 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.598824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.598830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.598835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.598845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.598848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.598851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.598855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.598866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.598871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.598874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.598879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.609791 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.609814 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.609833 LLDP, length 82 [|LLDP] 17:35:55.609835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f06 f302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.609837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.609842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.609846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.609849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.609861 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.609866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.609876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.609879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.609883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.609885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.609890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.618048 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.618071 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.618091 LLDP, length 82 [|LLDP] 17:35:55.618092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0d 3fcf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.618094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.618100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.618104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.618108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.618119 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.618125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.618135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.618138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.618142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.618145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.618149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.629058 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.629081 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.629100 LLDP, length 82 [|LLDP] 17:35:55.629101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f15 a63c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.629104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.629109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.629113 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.629118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.629128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.629131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.629135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.629147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.629151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.629154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.629158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.640071 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.640097 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.640117 LLDP, length 82 [|LLDP] 17:35:55.640119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.640121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.640128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.640132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.640135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.640147 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.640153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.640171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.640174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.640179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.640181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.640186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.648328 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.648345 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.648364 LLDP, length 82 [|LLDP] 17:35:55.648366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f24 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.648367 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.648373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.648383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.648386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.648391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.648395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.648399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.648411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.648416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.648418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.648422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.659344 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.659367 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.659389 LLDP, length 82 [|LLDP] 17:35:55.659390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2c bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.659392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.659399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.659402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.659406 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.659411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.659420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.659424 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.659435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.659440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.659443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.659447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.670348 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.670372 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.670394 LLDP, length 82 [|LLDP] 17:35:55.670396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f35 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.670398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.670404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.670408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.670412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.670424 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.670430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.670440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.670443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.670447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.670449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.670454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.678604 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.678628 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.678650 LLDP, length 82 [|LLDP] 17:35:55.678651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3b 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.678654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.678660 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.678665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.678676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.678678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.678683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.678686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.678699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.678704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.678706 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.678711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.689628 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.689657 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.689681 LLDP, length 82 [|LLDP] 17:35:55.689683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f43 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.689685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.689692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.689696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.689699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.689711 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.689717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.689728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.689731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.689736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.689738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.689743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.697872 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.697897 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.697916 LLDP, length 82 [|LLDP] 17:35:55.697918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4a 2635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.697920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.697926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.697930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.697933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.697945 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.697951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.697961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.697964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.697968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.697971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.697975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.708885 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.708903 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.708922 LLDP, length 82 [|LLDP] 17:35:55.708924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f52 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.708925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.708931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.708935 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.708940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.708950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.708953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.708957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.708969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.708973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.708976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.708980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.719889 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.719911 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.719930 LLDP, length 82 [|LLDP] 17:35:55.719932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5a f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.719934 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.719940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.719943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.719947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.719959 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.719964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.719974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.719977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.719982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.719984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.719989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.728148 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.728170 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.728190 LLDP, length 82 [|LLDP] 17:35:55.728192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f61 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.728194 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.728200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.728209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.728213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.728218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.728222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.728225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.728237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.728242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.728245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.728249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.739156 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.739178 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.739198 LLDP, length 82 [|LLDP] 17:35:55.739200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f69 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.739202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.739208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.739212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.739215 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.739220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.739230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.739233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.739246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.739251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.739254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.739258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.750169 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.750193 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.750214 LLDP, length 82 [|LLDP] 17:35:55.750215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.750217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.750223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.750226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.750230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.750241 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.750247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.750257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.750261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.750265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.750267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.750272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.758425 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.758448 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.758467 LLDP, length 82 [|LLDP] 17:35:55.758469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f78 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.758471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.758477 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.758482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.758493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.758495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.758499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.758503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.758515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.758520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.758522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.758527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.769441 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.769463 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.769483 LLDP, length 82 [|LLDP] 17:35:55.769485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f80 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.769487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.769493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.769496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.769500 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.769511 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.769517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.769541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.769544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.769549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.769552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.769556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.780448 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.780464 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.780482 LLDP, length 82 [|LLDP] 17:35:55.780484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f89 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.780486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.780491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.780495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.780499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.780510 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.780516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.780526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.780529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.780533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.780536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.780540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.788708 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.788731 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.788751 LLDP, length 82 [|LLDP] 17:35:55.788753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8f 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.788755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.788761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.788764 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.788770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.788779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.788783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.788787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.788799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.788803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.788806 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.788810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.799712 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.799735 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.799754 LLDP, length 82 [|LLDP] 17:35:55.799755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f97 d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.799757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.799763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.799767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.799771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.799783 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.799788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.799798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.799801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.799806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.799808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.799813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.807970 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.807992 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.808011 LLDP, length 82 [|LLDP] 17:35:55.808012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9e 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.808015 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.808020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.808030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.808033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.808038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.808042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.808046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.808058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.808063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.808065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.808070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.818981 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.819003 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.819021 LLDP, length 82 [|LLDP] 17:35:55.819022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa6 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.819025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.819030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.819034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.819038 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.819043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.819052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.819056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.819068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.819073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.819075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.819080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.829991 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.830014 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.830034 LLDP, length 82 [|LLDP] 17:35:55.830035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fae f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.830037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.830043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.830047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.830051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.830063 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.830069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.830079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.830082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.830087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.830089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.830094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.838268 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.838300 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.838326 LLDP, length 82 [|LLDP] 17:35:55.838328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb5 3fcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.838331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.838339 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.838344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.838356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.838360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.838364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.838367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.838380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.838385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.838387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.838393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.849262 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.849289 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.849310 LLDP, length 82 [|LLDP] 17:35:55.849312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbd a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.849314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.849321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.849325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.849328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.849340 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.849346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.849356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.849359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.849364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.849367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.849371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.860271 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.860297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.860319 LLDP, length 82 [|LLDP] 17:35:55.860321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.860323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.860329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.860334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.860337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.860349 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.860355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.860365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.860369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.860373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.860376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.860380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.868529 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.868554 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.868574 LLDP, length 82 [|LLDP] 17:35:55.868576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcc 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.868578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.868584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.868591 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.868597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.868607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.868611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.868615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.868627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.868632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.868635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.868639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.879561 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.879595 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.879630 LLDP, length 82 [|LLDP] 17:35:55.879632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd4 bfd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.879634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.879643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.879647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.879651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.879663 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.879670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.879682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.879685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.879690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.879693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.879698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.890564 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.890592 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.890615 LLDP, length 82 [|LLDP] 17:35:55.890618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdd 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.890620 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.890626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.890638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.890642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.890652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.890656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.890660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.890673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.890678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.890680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.890685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.898809 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.898837 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.898859 LLDP, length 82 [|LLDP] 17:35:55.898860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe3 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.898862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.898870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.898874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.898878 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.898883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.898894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.898897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.898909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.898914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.898917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.898922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.909821 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.909850 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.909875 LLDP, length 82 [|LLDP] 17:35:55.909877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0feb d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.909879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.909886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.909890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.909894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.909905 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.909911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.909922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.909926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.909930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.909933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.909937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.918077 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.918103 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.918126 LLDP, length 82 [|LLDP] 17:35:55.918127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff2 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.918130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.918136 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.918142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.918152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.918155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.918159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.918163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.918175 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.918180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.918183 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.918188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.929085 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.929111 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.929131 LLDP, length 82 [|LLDP] 17:35:55.929133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffa 8c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.929135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.929141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.929145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.929149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.929161 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.929167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.929177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.929180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.929185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.929187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.929192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.940092 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.940116 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.940137 LLDP, length 82 [|LLDP] 17:35:55.940138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1002 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.940140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.940146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.940150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.940168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.940182 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.940188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.940198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.940201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.940206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.940208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.940213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.948389 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.948428 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.948457 LLDP, length 82 [|LLDP] 17:35:55.948459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1009 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.948462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.948472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.948475 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.948482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.948498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.948501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.948505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.948518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.948523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.948526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.948531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.959392 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.959419 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.959450 LLDP, length 82 [|LLDP] 17:35:55.959452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1011 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.959454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.959461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.959465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.959469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.959481 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.959488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.959500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.959503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.959508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.959510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.959516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.970374 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.970399 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.970422 LLDP, length 82 [|LLDP] 17:35:55.970424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.970426 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.970433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.970443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.970447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.970453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.970457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.970460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.970472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.970478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.970480 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.970485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.978632 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.978655 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.978677 LLDP, length 82 [|LLDP] 17:35:55.978679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1020 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.978681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.978687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.978691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.978694 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.978700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.978710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.978713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.978726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.978731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.978734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.978739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.989638 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.989661 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.989682 LLDP, length 82 [|LLDP] 17:35:55.989683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1028 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.989685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.989691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.989695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.989698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.989710 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.989716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.989726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.989729 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.989734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.989736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.989741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:55.997897 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:55.997917 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.997938 LLDP, length 82 [|LLDP] 17:35:55.997940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f 0ca0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:55.997942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:55.997948 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:55.997953 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:55.997964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.997967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:55.997971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:55.997974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:55.997986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:55.997992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:55.997994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:55.997999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.008908 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.008932 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.008952 LLDP, length 82 [|LLDP] 17:35:56.008954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1037 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.008956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.008963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.008966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.008970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.008982 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.008988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.008998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.009001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.009005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.009008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.009012 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.019918 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.019941 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.019961 LLDP, length 82 [|LLDP] 17:35:56.019963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103f d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.019965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.019971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.019975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.019979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.019990 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.019996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.020006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.020008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.020013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.020016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.020020 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.028172 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.028195 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.028216 LLDP, length 82 [|LLDP] 17:35:56.028217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1046 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.028219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.028226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.028229 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.028235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.028245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.028248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.028252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.028264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.028269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.028272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.028277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.039181 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.039204 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.039224 LLDP, length 82 [|LLDP] 17:35:56.039226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104e 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.039228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.039235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.039239 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.039243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.039255 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.039261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.039271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.039275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.039279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.039281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.039286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.050193 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.050217 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.050238 LLDP, length 82 [|LLDP] 17:35:56.050239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1056 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.050242 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.050248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.050257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.050261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.050266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.050270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.050273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.050285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.050291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.050293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.050298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.058450 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.058476 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.058495 LLDP, length 82 [|LLDP] 17:35:56.058496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105d 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.058498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.058505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.058509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.058512 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.058517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.058528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.058531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.058543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.058548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.058551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.058556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.069463 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.069487 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.069508 LLDP, length 82 [|LLDP] 17:35:56.069510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1065 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.069512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.069518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.069522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.069525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.069537 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.069543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.069553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.069557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.069561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.069564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.069568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.080470 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.080495 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.080514 LLDP, length 82 [|LLDP] 17:35:56.080516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.080518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.080524 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.080529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.080540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.080543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.080547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.080551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.080562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.080568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.080570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.080575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.088728 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.088754 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.088774 LLDP, length 82 [|LLDP] 17:35:56.088776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1074 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.088778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.088785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.088788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.088792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.088804 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.088810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.088820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.088823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.088828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.088831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.088836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.099746 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.099770 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.099791 LLDP, length 82 [|LLDP] 17:35:56.099793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107c bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.099795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.099802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.099806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.099810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.099821 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.099827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.099838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.099841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.099845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.099848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.099853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.107997 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.108023 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.108044 LLDP, length 82 [|LLDP] 17:35:56.108046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.108048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.108055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.108058 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.108064 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.108074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.108077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.108081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.108093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.108099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.108101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.108106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.119003 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.119028 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.119048 LLDP, length 82 [|LLDP] 17:35:56.119050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108b 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.119052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.119059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.119062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.119066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.119078 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.119084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.119094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.119097 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.119101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.119104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.119109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.130019 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.130041 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.130061 LLDP, length 82 [|LLDP] 17:35:56.130063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1093 d96e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.130065 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.130071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.130081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.130085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.130090 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.130094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.130098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.130110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.130115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.130117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.130122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.138273 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.138296 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.138316 LLDP, length 82 [|LLDP] 17:35:56.138318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109a 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.138319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.138326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.138330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.138334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.138339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.138349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.138352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.138363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.138369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.138371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.138376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.149282 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.149306 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.149327 LLDP, length 82 [|LLDP] 17:35:56.149328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a2 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.149330 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.149337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.149340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.149344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.149356 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.149361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.149372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.149375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.149379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.149382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.149387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.160292 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.160316 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.160336 LLDP, length 82 [|LLDP] 17:35:56.160338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10aa f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.160341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.160347 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.160352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.160362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.160365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.160369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.160373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.160385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.160390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.160393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.160398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.168549 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.168576 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.168595 LLDP, length 82 [|LLDP] 17:35:56.168597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b1 3fd1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.168599 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.168605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.168609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.168612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.168624 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.168630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.168640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.168643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.168647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.168650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.168654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.179559 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.179583 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.179605 LLDP, length 82 [|LLDP] 17:35:56.179607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b9 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.179609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.179615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.179619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.179623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.179635 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.179641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.179650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.179654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.179658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.179660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.179665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.187820 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.187844 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.187864 LLDP, length 82 [|LLDP] 17:35:56.187866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bf f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.187868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.187874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.187877 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.187883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.187893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.187896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.187899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.187911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.187917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.187919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.187924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.198830 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.198847 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.198867 LLDP, length 82 [|LLDP] 17:35:56.198869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c8 5967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.198871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.198877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.198881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.198885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.198897 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.198903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.198913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.198916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.198921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.198924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.198928 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.209835 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.209860 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.209880 LLDP, length 82 [|LLDP] 17:35:56.209883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d0 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.209884 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.209891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.209901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.209905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.209910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.209914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.209917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.209929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.209935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.209937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.209942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.218093 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.218116 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.218137 LLDP, length 82 [|LLDP] 17:35:56.218138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.218140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.218147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.218151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.218155 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.218160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.218170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.218173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.218185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.218190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.218193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.218198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.229110 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.229127 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.229147 LLDP, length 82 [|LLDP] 17:35:56.229148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10df 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.229150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.229157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.229160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.229164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.229176 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.229182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.229193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.229196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.229201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.229203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.229208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.240113 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.240136 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.240156 LLDP, length 82 [|LLDP] 17:35:56.240158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e7 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.240160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.240166 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.240171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.240181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.240184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.240188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.240192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.240204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.240209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.240211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.240216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.248374 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.248400 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.248421 LLDP, length 82 [|LLDP] 17:35:56.248423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ee 263a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.248425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.248431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.248435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.248438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.248450 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.248456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.248467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.248470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.248475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.248478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.248482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.259388 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.259405 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.259428 LLDP, length 82 [|LLDP] 17:35:56.259430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f6 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.259432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.259438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.259442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.259446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.259457 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.259463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.259473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.259476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.259480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.259483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.259488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.270389 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.270412 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.270432 LLDP, length 82 [|LLDP] 17:35:56.270434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fe f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.270436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.270442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.270446 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.270451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.270461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.270464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.270468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.270480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.270485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.270488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.270493 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.278649 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.278672 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.278692 LLDP, length 82 [|LLDP] 17:35:56.278694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1105 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.278696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.278702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.278706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.278710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.278722 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.278728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.278738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.278741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.278746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.278749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.278754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.289661 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.289685 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.289706 LLDP, length 82 [|LLDP] 17:35:56.289708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110d a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.289710 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.289716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.289725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.289729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.289735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.289738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.289743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.289755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.289760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.289762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.289767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.297919 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.297942 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.297962 LLDP, length 82 [|LLDP] 17:35:56.297964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1113 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.297966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.297972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.297976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.297980 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.297986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.297995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.297998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.298010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.298015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.298018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.298023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.308929 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.308947 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.308968 LLDP, length 82 [|LLDP] 17:35:56.308969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111c 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.308971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.308978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.308982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.308985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.308997 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.309003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.309021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.309025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.309030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.309032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.309037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.319942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.319958 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.319979 LLDP, length 82 [|LLDP] 17:35:56.319981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1124 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.319983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.319989 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.319995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.320005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.320008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.320012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.320015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.320027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.320032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.320035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.320039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.328195 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.328218 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.328238 LLDP, length 82 [|LLDP] 17:35:56.328240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.328242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.328249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.328252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.328256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.328268 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.328274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.328284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.328287 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.328292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.328294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.328300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.339204 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.339227 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.339246 LLDP, length 82 [|LLDP] 17:35:56.339248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1133 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.339250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.339256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.339260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.339264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.339276 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.339281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.339291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.339294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.339298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.339301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.339317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.350216 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.350239 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.350260 LLDP, length 82 [|LLDP] 17:35:56.350261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113b d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.350263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.350269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.350273 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.350278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.350288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.350291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.350295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.350307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.350312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.350314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.350319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.358468 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.358491 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.358511 LLDP, length 82 [|LLDP] 17:35:56.358512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1142 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.358515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.358521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.358524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.358528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.358541 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.358547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.358557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.358560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.358564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.358566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.358571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.369482 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.369499 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.369518 LLDP, length 82 [|LLDP] 17:35:56.369520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114a 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.369522 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.369527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.369538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.369541 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.369546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.369549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.369553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.369565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.369570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.369573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.369577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.380492 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.380508 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.380528 LLDP, length 82 [|LLDP] 17:35:56.380529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1152 f309 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.380531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.380537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.380541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.380544 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.380549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.380559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.380562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.380574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.380579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.380582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.380586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.388766 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.388792 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.388819 LLDP, length 82 [|LLDP] 17:35:56.388821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1159 3fce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.388823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.388830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.388834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.388838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.388850 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.388856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.388867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.388871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.388875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.388878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.388883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.399773 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.399803 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.399827 LLDP, length 82 [|LLDP] 17:35:56.399829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1161 a635 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.399831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.399837 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.399843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.399854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.399857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.399861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.399865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.399877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.399882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.399884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.399889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.408025 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.408044 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.408063 LLDP, length 82 [|LLDP] 17:35:56.408066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1167 f301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.408068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.408073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.408077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.408081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.408093 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.408099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.408109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.408116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.408121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.408124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.408128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.419034 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.419060 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.419082 LLDP, length 82 [|LLDP] 17:35:56.419084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1170 596b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.419087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.419093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.419097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.419105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.419118 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.419124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.419134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.419138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.419142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.419145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.419150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.430050 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.430079 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.430109 LLDP, length 82 [|LLDP] 17:35:56.430111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1178 bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.430113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.430120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.430124 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.430130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.430141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.430145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.430149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.430161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.430167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.430169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.430175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.438301 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.438326 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.438348 LLDP, length 82 [|LLDP] 17:35:56.438350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.438352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.438359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.438363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.438367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.438379 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.438385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.438395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.438398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.438402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.438405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.438410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.449306 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.449330 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.449351 LLDP, length 82 [|LLDP] 17:35:56.449353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1187 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.449355 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.449361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.449371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.449375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.449381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.449384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.449388 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.449400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.449406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.449408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.449413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.460316 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.460342 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.460363 LLDP, length 82 [|LLDP] 17:35:56.460365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118f d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.460367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.460373 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.460377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.460381 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.460386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.460397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.460400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.460412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.460417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.460420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.460425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.468574 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.468598 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.468618 LLDP, length 82 [|LLDP] 17:35:56.468620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1196 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.468621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.468628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.468632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.468640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.468652 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.468658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.468668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.468671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.468675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.468678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.468683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.479588 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.479615 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.479638 LLDP, length 82 [|LLDP] 17:35:56.479640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119e 8c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.479642 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.479648 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.479654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.479670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.479673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.479677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.479681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.479693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.479699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.479701 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.479706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.491266 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.491284 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.491318 LLDP, length 82 [|LLDP] 17:35:56.491320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a4 d968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.491323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.491330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.491334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.491338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.491352 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.491358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.491369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.491372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.491377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.491380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.491385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.498859 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.498887 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.498910 LLDP, length 82 [|LLDP] 17:35:56.498912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ad 3fd5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.498914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.498921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.498924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.498928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.498940 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.498947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.498958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.498961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.498966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.498968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.498973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.509862 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.509885 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.509906 LLDP, length 82 [|LLDP] 17:35:56.509908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b5 a634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.509910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.509915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.509919 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.509924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.509934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.509937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.509941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.509953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.509958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.509961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.509966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.518115 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.518138 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.518157 LLDP, length 82 [|LLDP] 17:35:56.518159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bb f302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.518161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.518166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.518170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.518174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.518186 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.518192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.518202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.518205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.518209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.518212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.518217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.529123 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.529146 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.529165 LLDP, length 82 [|LLDP] 17:35:56.529167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c4 5968 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.529169 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.529175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.529185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.529188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.529193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.529197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.529201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.529212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.529217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.529220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.529224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.540136 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.540158 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.540177 LLDP, length 82 [|LLDP] 17:35:56.540179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cc bfce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.540181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.540187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.540190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.540194 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.540199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.540209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.540213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.540224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.540229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.540232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.540236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.551930 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.551946 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.551964 LLDP, length 82 [|LLDP] 17:35:56.551966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 0c9b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.551968 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.551974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.551978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.551981 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.551993 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.551999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.552009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.552012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.552016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.552018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.552024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.559402 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.559425 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.559446 LLDP, length 82 [|LLDP] 17:35:56.559447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11db 7301 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.559449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.559455 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.559460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.559470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.559473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.559477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.559480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.559492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.559497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.559499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.559504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.570417 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.570441 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.570462 LLDP, length 82 [|LLDP] 17:35:56.570463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e3 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.570465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.570472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.570475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.570479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.570491 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.570497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.570508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.570511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.570516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.570518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.570522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.578670 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.578692 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.578712 LLDP, length 82 [|LLDP] 17:35:56.578714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ea 2634 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.578716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.578722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.578726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.578730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.578741 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.578747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.578757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.578760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.578764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.578766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.578771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.589679 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.589704 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.589724 LLDP, length 82 [|LLDP] 17:35:56.589725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f2 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.589728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.589734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.589737 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.589743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.589752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.589755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.589759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.589771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.589775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.589778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.589783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.597942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.597972 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.597996 LLDP, length 82 [|LLDP] 17:35:56.597998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f8 d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.598000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.598007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.598011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.598015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.598027 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.598033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.598044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.598047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.598052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.598054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.598059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.612603 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.612622 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.612643 LLDP, length 82 [|LLDP] 17:35:56.612644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1201 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.612646 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.612652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.612662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.612665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.612670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.612675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.612678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.612691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.612696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.612699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.612704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.619961 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.619978 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.619996 LLDP, length 82 [|LLDP] 17:35:56.619998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1209 a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.620000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.620006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.620010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.620014 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.620019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.620029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.620033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.620045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.620050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.620053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.620057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.628214 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.628238 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.628257 LLDP, length 82 [|LLDP] 17:35:56.628259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120f f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.628261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.628267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.628271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.628275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.628287 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.628293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.628303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.628307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.628311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.628314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.628318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.639226 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.639248 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.639268 LLDP, length 82 [|LLDP] 17:35:56.639270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1218 5966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.639272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.639278 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.639282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.639292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.639295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.639299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.639310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.639324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.639329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.639332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.639336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.650232 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.650254 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.650272 LLDP, length 82 [|LLDP] 17:35:56.650274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1220 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.650276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.650282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.650286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.650290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.650302 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.650307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.650317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.650320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.650325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.650327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.650332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.658491 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.658513 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.658532 LLDP, length 82 [|LLDP] 17:35:56.658534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 0c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.658536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.658542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.658546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.658550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.658562 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.658568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.658577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.658580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.658584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.658587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.658591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.673275 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.673297 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.673320 LLDP, length 82 [|LLDP] 17:35:56.673321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122f 7302 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.673323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.673330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.673334 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.673339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.673350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.673353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.673357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.673369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.673375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.673377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.673382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.677764 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.677781 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.677801 LLDP, length 82 [|LLDP] 17:35:56.677802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1235 bfcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.677805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.677810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.677814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.677818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.677830 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.677836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.677847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.677850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.677854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.677857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.677862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.688770 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.688793 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.688812 LLDP, length 82 [|LLDP] 17:35:56.688814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123e 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.688815 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.688821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.688830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.688834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.688839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.688843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.688847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.688858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.688863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.688866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.688871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.699793 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.699821 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.699844 LLDP, length 82 [|LLDP] 17:35:56.699846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1246 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.699848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.699856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.699860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.699864 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.699869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.699880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.699883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.699895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.699900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.699903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.699908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.708038 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.708062 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.708081 LLDP, length 82 [|LLDP] 17:35:56.708083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124c d966 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.708085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.708091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.708094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.708098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.708110 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.708115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.708125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.708128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.708133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.708135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.708140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.719047 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.719070 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.719089 LLDP, length 82 [|LLDP] 17:35:56.719091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1255 3fcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.719093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.719099 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.719104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.719114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.719117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.719121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.719125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.719137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.719142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.719145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.719149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.733942 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.733973 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.734001 LLDP, length 82 [|LLDP] 17:35:56.734004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125d a633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.734006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.734014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.734017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.734021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.734034 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.734040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.734052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.734056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.734061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.734063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.734068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.738308 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.738327 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.738349 LLDP, length 82 [|LLDP] 17:35:56.738351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1263 f300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.738352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.738359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.738363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.738375 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.738381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.738391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749329 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.749352 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.749372 LLDP, length 82 [|LLDP] 17:35:56.749374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126c 596d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.749376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.749382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.749386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.749389 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.749394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.749405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.749409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.749415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.749427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.749433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.760337 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.760361 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.760381 LLDP, length 82 [|LLDP] 17:35:56.760383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1274 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.760385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.760392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.760395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.760399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.760411 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.760417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.760427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.760432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.760435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.760437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.760442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.768607 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.768640 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.768667 LLDP, length 82 [|LLDP] 17:35:56.768669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127b 0c99 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.768671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.768679 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.768685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.768710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.768716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.768719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.768722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.768726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.768730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.768742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.768748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.779610 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.779638 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.779661 LLDP, length 82 [|LLDP] 17:35:56.779663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1283 7300 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.779665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.779671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.779675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.779679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.779691 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.779696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.779708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.779713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.779716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.779718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.779723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.787862 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.787886 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.787907 LLDP, length 82 [|LLDP] 17:35:56.787909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1289 bfcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.787911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.787918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.787922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.787926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.787937 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.787943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.787954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.787958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.787961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.787963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.787968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.798873 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.798896 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.798916 LLDP, length 82 [|LLDP] 17:35:56.798917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1292 2633 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.798920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.798925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.798929 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.798935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.798945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.798949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.798952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.798954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.798958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.798970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.798975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.809898 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.809916 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.809937 LLDP, length 82 [|LLDP] 17:35:56.809938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129a 8c9a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.809941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.809947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.809950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.809954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.809965 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.809971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.809981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.809986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.809989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.809991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.809996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:35:56.818173 IP 1.1.1.2.45084 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:35:56.818213 IP 1.1.1.2.34314 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.818244 LLDP, length 82 [|LLDP] 17:35:56.818247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 12a0 d967 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:35:56.818249 IP 192.168.1.1.51845 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:35:56.818256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:35:56.818272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:35:56.818279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.818283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:35:56.818285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:35:56.818293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:35:56.818296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:35:56.818300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:35:56.818313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:35:56.818319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9082 packets captured 9082 packets received by filter 0 packets dropped by kernel 606 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:36:05 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:36:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:36:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif | 261.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2477' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.3, port 42114 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:36:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782650>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 606 Rx 606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 606 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG infra2:Logger.py:156 17:40:12.553317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.553387 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.553393 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.553398 LLDP, length 82 [|LLDP] 17:40:12.553401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0099 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.553405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.553410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.553415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.553420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.553425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.561543 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.561564 LLDP, length 82 [|LLDP] 17:40:12.561565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.561568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.561572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.561577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.561580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.561589 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.561593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.561598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.572554 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.572569 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.572574 LLDP, length 82 [|LLDP] 17:40:12.572576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a8 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.572578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.572582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.572586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.572590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.572593 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.572598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.580803 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.580819 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.580823 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.580827 LLDP, length 82 [|LLDP] 17:40:12.580829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.580831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.580835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.580839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.580842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.580847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.591810 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.591826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.591830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.591834 LLDP, length 82 [|LLDP] 17:40:12.591835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b6 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.591837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.591841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.591845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.591849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.591853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.602818 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.602835 LLDP, length 82 [|LLDP] 17:40:12.602836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bf 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.602838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.602843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.602847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.602849 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.602854 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.602858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.602862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.611077 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.611093 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.611097 LLDP, length 82 [|LLDP] 17:40:12.611098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.611101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.611105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.611110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.611112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.611117 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.611121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.622093 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.622111 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.622116 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.622120 LLDP, length 82 [|LLDP] 17:40:12.622122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.622124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.622128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.622132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.622135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.622139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.633109 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.633127 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.633131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.633135 LLDP, length 82 [|LLDP] 17:40:12.633136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d6 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.633138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.633143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.633147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.633150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.633154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.641360 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.641378 LLDP, length 82 [|LLDP] 17:40:12.641380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.641382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.641386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.641390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.641393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.641397 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.641402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.641406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.652366 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.652382 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.652387 LLDP, length 82 [|LLDP] 17:40:12.652388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.652391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.652395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.652399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.652402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.652406 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.652411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.660626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.660643 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.660647 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.660651 LLDP, length 82 [|LLDP] 17:40:12.660653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.660655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.660659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.660663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.660667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.660671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.671634 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.671649 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.671654 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.671658 LLDP, length 82 [|LLDP] 17:40:12.671660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f3 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.671661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.671666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.671670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.671672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.671677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.682644 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.682659 LLDP, length 82 [|LLDP] 17:40:12.682661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fc 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.682663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.682667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.682671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.682674 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.682678 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.682682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.682687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.690906 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.690922 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.690926 LLDP, length 82 [|LLDP] 17:40:12.690928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.690929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.690934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.690938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.690941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.690945 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.690950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.701910 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.701926 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.701930 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.701934 LLDP, length 82 [|LLDP] 17:40:12.701936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010a c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.701938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.701942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.701946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.701948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.701953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.712921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.712936 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.712940 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.712944 LLDP, length 82 [|LLDP] 17:40:12.712946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0113 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.712948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.712952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.712957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.712959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.712964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.721178 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.721193 LLDP, length 82 [|LLDP] 17:40:12.721195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.721197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.721201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.721206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.721208 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.721212 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.721217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.721221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.732198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.732221 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.732225 LLDP, length 82 [|LLDP] 17:40:12.732227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.732229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.732233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.732237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.732240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.732244 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.732249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.743196 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.743211 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.743215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.743219 LLDP, length 82 [|LLDP] 17:40:12.743221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012a 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.743223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.743227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.743231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.743234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.743238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.751458 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.751475 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.751479 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.751483 LLDP, length 82 [|LLDP] 17:40:12.751485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 9175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.751487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.751492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.751496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.751498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.751503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.762466 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.762480 LLDP, length 82 [|LLDP] 17:40:12.762482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.762484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.762488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.762492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.762495 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.762499 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.762503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.762508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.770721 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.770735 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.770739 LLDP, length 82 [|LLDP] 17:40:12.770741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.770743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.770747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.770751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.770754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.770758 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.770763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.781735 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.781750 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.781754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.781759 LLDP, length 82 [|LLDP] 17:40:12.781760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0147 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.781762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.781767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.781770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.781773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.781778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.795744 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.795760 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.795764 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.795769 LLDP, length 82 [|LLDP] 17:40:12.795770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0150 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.795772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.795776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.795781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.795783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.795787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.801017 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.801032 LLDP, length 82 [|LLDP] 17:40:12.801034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.801036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.801040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.801044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.801047 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.801051 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.801055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.801060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.812020 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.812035 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.812039 LLDP, length 82 [|LLDP] 17:40:12.812041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015e c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.812043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.812047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.812051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.812054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.812058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.812063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.823022 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.823037 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.823041 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.823046 LLDP, length 82 [|LLDP] 17:40:12.823048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0167 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.823050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.823054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.823058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.823061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.823066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.831278 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.831294 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.831299 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.831309 LLDP, length 82 [|LLDP] 17:40:12.831311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.831313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.831317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.831322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.831325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.831329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.842287 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.842302 LLDP, length 82 [|LLDP] 17:40:12.842303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.842306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.842310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.842314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.842317 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.842321 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.842325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.842329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.850544 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.850557 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.850561 LLDP, length 82 [|LLDP] 17:40:12.850563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.850565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.850569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.850573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.850576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.850580 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.850585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.861557 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.861573 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.861576 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.861581 LLDP, length 82 [|LLDP] 17:40:12.861582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0184 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.861584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.861588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.861592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.861595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.861599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.872563 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.872578 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.872582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.872586 LLDP, length 82 [|LLDP] 17:40:12.872588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.872590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.872594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.872598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.872601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.872605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.880822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.880837 LLDP, length 82 [|LLDP] 17:40:12.880838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.880841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.880845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.880849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.880852 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.880856 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.880861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.880865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.891832 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.891847 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.891851 LLDP, length 82 [|LLDP] 17:40:12.891853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019b ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.891855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.891859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.891863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.891866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.891870 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.891875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.902852 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.902872 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.902876 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.902880 LLDP, length 82 [|LLDP] 17:40:12.902882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a4 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.902884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.902888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.902892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.902895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.902900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.911102 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.911122 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.911126 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.911130 LLDP, length 82 [|LLDP] 17:40:12.911131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.911133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.911138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.911142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.911144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.911149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.922115 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.922132 LLDP, length 82 [|LLDP] 17:40:12.922134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b2 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.922136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.922140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.922144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.922147 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.922151 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.922155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.922159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.933120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.933135 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.933140 LLDP, length 82 [|LLDP] 17:40:12.933141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bb 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.933143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.933147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.933151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.933154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.933158 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.933163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.941378 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.941392 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.941396 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.941400 LLDP, length 82 [|LLDP] 17:40:12.941402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.941404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.941408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.941412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.941415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.941419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.952386 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.952400 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.952404 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.952408 LLDP, length 82 [|LLDP] 17:40:12.952409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.952411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.952416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.952420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.952423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.952427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.960652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.960671 LLDP, length 82 [|LLDP] 17:40:12.960673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d0 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.960675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.960679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.960683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.960686 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.960690 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.960694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.960699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.971661 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.971679 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.971683 LLDP, length 82 [|LLDP] 17:40:12.971685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d8 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.971687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.971692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.971696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.971699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.971704 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.971708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.982673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.982691 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.982696 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.982701 LLDP, length 82 [|LLDP] 17:40:12.982702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.982704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.982709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.982713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.982716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.982721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.990926 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.990945 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.990949 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.990954 LLDP, length 82 [|LLDP] 17:40:12.990955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.990957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.990962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.990966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.990969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.990974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.001948 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.001968 LLDP, length 82 [|LLDP] 17:40:13.001970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ef ab0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.001972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.001977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.001981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.001984 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.001988 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.001992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.001997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.012946 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.012963 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.012967 LLDP, length 82 [|LLDP] 17:40:13.012969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f8 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.012971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.012975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.012980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.012983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.012987 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.012991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.021209 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.021225 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.021230 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.021234 LLDP, length 82 [|LLDP] 17:40:13.021235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.021237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.021242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.021245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.021249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.021253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.032214 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.032229 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.032233 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.032237 LLDP, length 82 [|LLDP] 17:40:13.032239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0206 c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.032241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.032246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.032250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.032253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.032257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.043225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.043241 LLDP, length 82 [|LLDP] 17:40:13.043242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020f 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.043245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.043249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.043253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.043256 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.043260 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.043264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.043269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.051490 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.051506 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.051511 LLDP, length 82 [|LLDP] 17:40:13.051513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.051515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.051520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.051524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.051528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.051532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.051536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.062485 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.062504 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.062508 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.062513 LLDP, length 82 [|LLDP] 17:40:13.062515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.062517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.062530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.062535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.062538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.062543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.070751 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.070770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.070774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.070779 LLDP, length 82 [|LLDP] 17:40:13.070781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0224 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.070783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.070788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.070792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.070795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.070799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.081758 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.081776 LLDP, length 82 [|LLDP] 17:40:13.081778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022c 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.081780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.081785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.081788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.081792 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.081796 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.081800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.081805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.092765 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.092782 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.092786 LLDP, length 82 [|LLDP] 17:40:13.092788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.092790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.092794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.092798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.092801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.092805 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.092810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.101024 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.101040 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.101044 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.101048 LLDP, length 82 [|LLDP] 17:40:13.101050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.101052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.101056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.101060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.101062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.101067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.112031 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.112047 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.112051 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.112055 LLDP, length 82 [|LLDP] 17:40:13.112056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0243 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.112058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.112062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.112066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.112069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.112073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.123043 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.123059 LLDP, length 82 [|LLDP] 17:40:13.123061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024c 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.123063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.123067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.123071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.123074 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.123078 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.123082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.123087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.131317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.131333 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.131337 LLDP, length 82 [|LLDP] 17:40:13.131339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.131341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.131346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.131350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.131353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.131358 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.131363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.142310 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.142325 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.142329 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.142333 LLDP, length 82 [|LLDP] 17:40:13.142334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025a c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.142336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.142341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.142345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.142348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.142352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.150570 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.150584 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.150588 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.150592 LLDP, length 82 [|LLDP] 17:40:13.150594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0261 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.150596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.150600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.150604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.150607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.150612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.161569 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.161584 LLDP, length 82 [|LLDP] 17:40:13.161586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0269 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.161588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.161592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.172588 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.172603 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.172607 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.172611 LLDP, length 82 [|LLDP] 17:40:13.172613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.172615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.172620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.172623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.172626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.172631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.180841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.180856 LLDP, length 82 [|LLDP] 17:40:13.180857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0278 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.180860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.180864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.180868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.180871 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.180875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.180879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.180884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.191865 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.191879 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.191883 LLDP, length 82 [|LLDP] 17:40:13.191885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0280 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.191887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.191891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.191895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.191898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.191902 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.191906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.202862 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.202877 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.202881 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.202885 LLDP, length 82 [|LLDP] 17:40:13.202887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.202889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.202893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.202897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.202899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.202904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.211120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.211144 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.211149 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.211153 LLDP, length 82 [|LLDP] 17:40:13.211154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.211156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.211161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.211164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.211167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.211172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.222131 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.222148 LLDP, length 82 [|LLDP] 17:40:13.222149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0297 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.222151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.222155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.222160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.222163 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.222167 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.222171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.222176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.233141 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.233156 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.233160 LLDP, length 82 [|LLDP] 17:40:13.233162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a0 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.233164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.233168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.233172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.233175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.233179 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.233183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.241400 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.241415 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.241419 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.241424 LLDP, length 82 [|LLDP] 17:40:13.241425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.241427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.241431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.241435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.241438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.241443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.252414 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.252430 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.252434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.252438 LLDP, length 82 [|LLDP] 17:40:13.252440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ae c4a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.252442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.252446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.252450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.252453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.252457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.260668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.260685 LLDP, length 82 [|LLDP] 17:40:13.260687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b5 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.260689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.260693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.260697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.260700 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.260704 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.260709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.260713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.271680 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.271698 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.271703 LLDP, length 82 [|LLDP] 17:40:13.271704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bd 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.271707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.271711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.271715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.271718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.271722 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.271727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.282691 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.282708 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.282712 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.282716 LLDP, length 82 [|LLDP] 17:40:13.282718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.282720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.282724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.282728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.282731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.282735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.290947 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.290963 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.290967 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.290971 LLDP, length 82 [|LLDP] 17:40:13.290972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cc 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.290974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.290979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.290983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.290986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.290990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.301953 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.301970 LLDP, length 82 [|LLDP] 17:40:13.301972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d4 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.301974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.301978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.301983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.301986 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.301990 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.301994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.301998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.312964 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.312980 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.312984 LLDP, length 82 [|LLDP] 17:40:13.312986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.312988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.312992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.312996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.313000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.313011 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.313016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.321225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.321243 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.321247 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.321252 LLDP, length 82 [|LLDP] 17:40:13.321253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.321256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.321260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.321264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.321268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.321272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.332237 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.332257 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.332261 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.332265 LLDP, length 82 [|LLDP] 17:40:13.332267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02eb ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.332269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.332273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.332277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.332280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.332285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.340496 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.340513 LLDP, length 82 [|LLDP] 17:40:13.340515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.340517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.340522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.340526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.340529 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.340533 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.340537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.340542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.351510 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.351532 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.351537 LLDP, length 82 [|LLDP] 17:40:13.351538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fa 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.351541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.351545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.351549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.351552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.351556 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.351561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.362521 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.362543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.362548 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.362551 LLDP, length 82 [|LLDP] 17:40:13.362553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0302 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.362555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.362559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.362563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.362566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.362571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.370770 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.370788 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.370792 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.370796 LLDP, length 82 [|LLDP] 17:40:13.370798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0309 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.370800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.370805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.370809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.370812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.370816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.381776 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.381793 LLDP, length 82 [|LLDP] 17:40:13.381795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0311 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.381797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.381801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.381805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.381809 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.381813 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.381817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.381821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.392790 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.392806 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.392811 LLDP, length 82 [|LLDP] 17:40:13.392812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.392815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.392819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.392823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.392826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.392830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.392835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.401049 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.401063 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.401067 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.401071 LLDP, length 82 [|LLDP] 17:40:13.401073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0320 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.401075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.401080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.401083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.401086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.401091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.412063 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.412080 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.412084 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.412089 LLDP, length 82 [|LLDP] 17:40:13.412090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0328 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.412092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.412096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.412100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.412103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.412108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.423066 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.423083 LLDP, length 82 [|LLDP] 17:40:13.423085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 f7d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.423087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.423091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.423095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.423098 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.423102 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.423106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.423110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.431327 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.431345 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.431350 LLDP, length 82 [|LLDP] 17:40:13.431351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.431353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.431357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.431361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.431364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.431368 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.431373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.442345 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.442363 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.442367 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.442371 LLDP, length 82 [|LLDP] 17:40:13.442373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.442375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.442379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.442383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.442386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.442390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.450589 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.450609 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.450613 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.450617 LLDP, length 82 [|LLDP] 17:40:13.450619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 f7d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.450621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.450625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.450629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.450631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.450635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.461606 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.461622 LLDP, length 82 [|LLDP] 17:40:13.461624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034e 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.461626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.461631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.461634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.461637 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.461641 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.461645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.461649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.472612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.472634 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.472638 LLDP, length 82 [|LLDP] 17:40:13.472640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0356 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.472642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.472647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.472651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.472654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.472658 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.472662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.480865 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.480881 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.480886 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.480890 LLDP, length 82 [|LLDP] 17:40:13.480892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035d 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.480894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.480898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.480902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.480905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.480910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.491878 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.491894 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.491899 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.491903 LLDP, length 82 [|LLDP] 17:40:13.491904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0365 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.491906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.491910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.491914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.491917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.491921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.502887 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.502904 LLDP, length 82 [|LLDP] 17:40:13.502906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d de42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.502908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.502912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.502916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.502919 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.502923 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.502927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.502932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.511154 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.511174 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.511178 LLDP, length 82 [|LLDP] 17:40:13.511179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0374 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.511181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.511186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.511190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.511193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.511197 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.511202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.522157 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.522172 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.522176 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.522180 LLDP, length 82 [|LLDP] 17:40:13.522182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037c 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.522184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.522188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.522192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.522195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.522200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.533167 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.533190 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.533194 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.533198 LLDP, length 82 [|LLDP] 17:40:13.533200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.533202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.533206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.533210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.533213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.533218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.541423 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.541438 LLDP, length 82 [|LLDP] 17:40:13.541440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.541442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.541447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.541451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.541454 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.541458 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.541462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.541466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.552429 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.552444 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.552448 LLDP, length 82 [|LLDP] 17:40:13.552450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0393 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.552452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.552456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.552460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.552463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.552467 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.552472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.560715 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.560742 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.560746 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.560751 LLDP, length 82 [|LLDP] 17:40:13.560753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.560755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.560759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.560763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.560766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.560771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.571727 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.571753 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.571758 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.571762 LLDP, length 82 [|LLDP] 17:40:13.571764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a2 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.571767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.571772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.571776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.571780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.571784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.582721 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.582745 LLDP, length 82 [|LLDP] 17:40:13.582747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03aa c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.582749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.582753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.582758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.582761 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.582765 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.582770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.582775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.590989 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.591007 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.591011 LLDP, length 82 [|LLDP] 17:40:13.591013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b1 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.591015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.591019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.591023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.591026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.591031 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.591035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.601994 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.602018 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.602022 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.602027 LLDP, length 82 [|LLDP] 17:40:13.602029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b9 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.602031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.602036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.602040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.602043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.602048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.612993 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.613010 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.613015 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.613019 LLDP, length 82 [|LLDP] 17:40:13.613020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.613022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.613027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.613031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.613034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.613039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.621247 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.621263 LLDP, length 82 [|LLDP] 17:40:13.621265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c8 2b0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.621267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.621276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.621280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.621283 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.621287 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.621291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.621295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.632264 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.632283 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.632287 LLDP, length 82 [|LLDP] 17:40:13.632289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d0 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.632291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.632295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.632299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.632302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.632306 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.632310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.643838 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.643857 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.643861 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.643865 LLDP, length 82 [|LLDP] 17:40:13.643867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.643869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.643873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.643877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.643880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.643884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.651523 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.651540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.651544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.651548 LLDP, length 82 [|LLDP] 17:40:13.651550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03df 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.651552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.651557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.651561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.651564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.651568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.662535 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.662550 LLDP, length 82 [|LLDP] 17:40:13.662552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e7 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.662554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.662559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.662563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.662566 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.662570 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.662574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.662578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.670786 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.670802 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.670806 LLDP, length 82 [|LLDP] 17:40:13.670807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.670809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.670814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.670818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.670821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.670825 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.670833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.681805 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.681825 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.681829 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.681833 LLDP, length 82 [|LLDP] 17:40:13.681834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f6 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.681836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.681841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.681845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.681848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.681852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.692813 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.692836 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.692840 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.692845 LLDP, length 82 [|LLDP] 17:40:13.692846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fe c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.692849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.692853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.692857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.692860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.692864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.704503 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.704521 LLDP, length 82 [|LLDP] 17:40:13.704522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0405 1172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.704524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.704528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.704533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.704536 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.704540 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.704544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.704549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.712083 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.712100 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.712104 LLDP, length 82 [|LLDP] 17:40:13.712106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.712108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.712112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.712116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.712118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.712122 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.712127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.723091 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.723108 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.723112 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.723117 LLDP, length 82 [|LLDP] 17:40:13.723118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.723120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.723125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.723129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.723132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.723136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.731360 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.731377 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.731382 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.731386 LLDP, length 82 [|LLDP] 17:40:13.731387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.731390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.731394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.731398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.731401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.731405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.742357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.742373 LLDP, length 82 [|LLDP] 17:40:13.742374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0424 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.742376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.742381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.742385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.742388 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.742392 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.742396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.742401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.750612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.750627 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.750631 LLDP, length 82 [|LLDP] 17:40:13.750633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.750635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.750639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.750643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.750646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.750650 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.750655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.765153 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.765169 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.765173 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.765177 LLDP, length 82 [|LLDP] 17:40:13.765179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0433 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.765181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.765185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.765190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.765193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.765197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.772626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.772639 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.772643 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.772647 LLDP, length 82 [|LLDP] 17:40:13.772648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043b ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.772651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.772655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.772659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.772662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.772666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.780886 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.780901 LLDP, length 82 [|LLDP] 17:40:13.780903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.780905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.780910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.780914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.780916 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.780921 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.780925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.780930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.791898 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.791913 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.791918 LLDP, length 82 [|LLDP] 17:40:13.791920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.791921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.791926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.791929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.791932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.791936 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.791940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.802908 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.802923 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.802927 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.802931 LLDP, length 82 [|LLDP] 17:40:13.802933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0452 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.802935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.802939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.802943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.802946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.802950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.811164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.811179 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.811183 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.811187 LLDP, length 82 [|LLDP] 17:40:13.811188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0459 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.811191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.811195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.811199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.811202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.811206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.825824 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.825838 LLDP, length 82 [|LLDP] 17:40:13.825840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0461 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.825842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.825846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.825850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.825853 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.825858 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.825863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.825867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.833184 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.833199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.833203 LLDP, length 82 [|LLDP] 17:40:13.833205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.833207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.833211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.833215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.833218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.833222 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.833226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.841439 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.841455 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.841459 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.841463 LLDP, length 82 [|LLDP] 17:40:13.841465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0470 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.841467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.841471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.841476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.841478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.841483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.852455 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.852470 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.852475 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.852479 LLDP, length 82 [|LLDP] 17:40:13.852481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0478 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.852483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.852487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.852491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.852494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.852499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.860710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.860725 LLDP, length 82 [|LLDP] 17:40:13.860727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.860729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.860733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.860737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.860740 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.860744 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.860748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.860753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.871718 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.871732 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.871736 LLDP, length 82 [|LLDP] 17:40:13.871738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0487 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.871740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.871744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.871748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.871751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.871754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.871759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.886447 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.886462 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.886466 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.886470 LLDP, length 82 [|LLDP] 17:40:13.886471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.886473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.886477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.886481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.886484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.886488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.890982 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.890997 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.891001 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.891005 LLDP, length 82 [|LLDP] 17:40:13.891007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.891009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.891013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.891017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.891020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.891024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.901995 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.902010 LLDP, length 82 [|LLDP] 17:40:13.902012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049e 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.902014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.902018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.902022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.902025 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.902029 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.902033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.902038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.913006 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.913020 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.913025 LLDP, length 82 [|LLDP] 17:40:13.913026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a6 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.913028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.913032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.913036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.913039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.913043 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.913047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.921268 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.921284 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.921289 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.921293 LLDP, length 82 [|LLDP] 17:40:13.921294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ad 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.921296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.921300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.921305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.921307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.921312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.932276 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.932292 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.932296 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.932300 LLDP, length 82 [|LLDP] 17:40:13.932302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b5 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.932304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.932308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.932312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.932315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.932319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.940531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.940546 LLDP, length 82 [|LLDP] 17:40:13.940547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bb c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.940549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.940553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.940557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.940560 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.940564 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.940568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.940572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.951545 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.951559 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.951563 LLDP, length 82 [|LLDP] 17:40:13.951565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c4 2b09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.951567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.951571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.951575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.951578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.951582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.951586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.962561 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.962578 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.962582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.962586 LLDP, length 82 [|LLDP] 17:40:13.962588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cc 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.962590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.962594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.962599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.962601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.962605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.970822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.970838 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.970842 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.970846 LLDP, length 82 [|LLDP] 17:40:13.970848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.970850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.970854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.970858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.970861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.970865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.981823 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.981836 LLDP, length 82 [|LLDP] 17:40:13.981838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04db 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.981840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.981844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.981848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.981851 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.981855 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.981859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.981863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.992829 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.992844 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.992848 LLDP, length 82 [|LLDP] 17:40:13.992850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e3 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.992852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.992856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.992860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.992863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.992867 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.992872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.001086 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.001103 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.001107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.001111 LLDP, length 82 [|LLDP] 17:40:14.001113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.001115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.001119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.001123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.001126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.001131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.012099 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.012113 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.012117 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.012121 LLDP, length 82 [|LLDP] 17:40:14.012123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f2 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.012125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.012130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.012134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.012136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.012141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.023164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.023209 LLDP, length 82 [|LLDP] 17:40:14.023210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fa c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.023214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.023223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.023228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.023233 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.023237 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.023242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.023248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.031480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.031523 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.031528 LLDP, length 82 [|LLDP] 17:40:14.031530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0501 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.031533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.031538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.031542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.031546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.031550 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.031555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.042437 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.042479 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.042484 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.042488 LLDP, length 82 [|LLDP] 17:40:14.042490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0509 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.042493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.042498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.042502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.042506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.042511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.050688 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.050728 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.050733 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.050738 LLDP, length 82 [|LLDP] 17:40:14.050740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050f c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.050743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.050748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.050752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.050756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.050760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.061698 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.061736 LLDP, length 82 [|LLDP] 17:40:14.061738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0518 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.061741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.061746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.061750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.061754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.061759 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.061763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.061767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.072716 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.072758 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.072763 LLDP, length 82 [|LLDP] 17:40:14.072765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0520 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.072767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.072773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.072777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.072782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.072786 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.072791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.080969 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.081007 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.081012 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.081017 LLDP, length 82 [|LLDP] 17:40:14.081019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.081023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.081027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.081032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.081036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.081041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.091981 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.092024 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.092029 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.092033 LLDP, length 82 [|LLDP] 17:40:14.092035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052f 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.092038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.092043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.092048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.092052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.092057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.102980 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.103020 LLDP, length 82 [|LLDP] 17:40:14.103022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0537 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.103025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.103030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.103034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.103038 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.103043 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.103047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.103052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.111186 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.111203 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.111207 LLDP, length 82 [|LLDP] 17:40:14.111209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.111211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.111215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.111219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.111222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.111226 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.111230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.122196 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.122210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.122215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.122219 LLDP, length 82 [|LLDP] 17:40:14.122220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0546 5e41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.122222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.122226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.122230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.122233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.122237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.130451 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.130463 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.130467 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.130471 LLDP, length 82 [|LLDP] 17:40:14.130473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054c ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.130475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.130479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.130483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.130486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.130490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.141459 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.141472 LLDP, length 82 [|LLDP] 17:40:14.141474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0555 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.141476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.141480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.141484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.141487 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.141492 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.141496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.141500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.152468 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.152481 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.152485 LLDP, length 82 [|LLDP] 17:40:14.152486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.152488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.152492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.152496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.152499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.152503 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.152507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.160725 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.160738 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.160742 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.160746 LLDP, length 82 [|LLDP] 17:40:14.160747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0563 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.160749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.160754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.160758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.160760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.160765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.171737 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.171750 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.171754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.171758 LLDP, length 82 [|LLDP] 17:40:14.171759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.171761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.171765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.171769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.171772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.171776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.182747 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.182760 LLDP, length 82 [|LLDP] 17:40:14.182761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0574 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.182763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.182767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.182771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.182774 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.182778 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.182782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.182787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.191004 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.191017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.191021 LLDP, length 82 [|LLDP] 17:40:14.191022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.191024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.191028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.191032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.191034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.191038 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.191043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.202014 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.202026 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.202030 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.202034 LLDP, length 82 [|LLDP] 17:40:14.202036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0583 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.202038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.202042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.202046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.202048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.202052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.213021 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.213034 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.213038 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.213042 LLDP, length 82 [|LLDP] 17:40:14.213044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058b ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.213045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.213050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.213054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.213056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.213061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.221281 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.221295 LLDP, length 82 [|LLDP] 17:40:14.221296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.221298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.221302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.221306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.221309 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.221313 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.221318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.221322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.232291 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.232303 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.232307 LLDP, length 82 [|LLDP] 17:40:14.232308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.232310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.232314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.232319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.232322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.232325 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.232330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.240549 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.240562 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.240566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.240570 LLDP, length 82 [|LLDP] 17:40:14.240572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a0 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.240573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.240577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.240581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.240584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.240588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.251557 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.251570 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.251574 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.251578 LLDP, length 82 [|LLDP] 17:40:14.251579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a9 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.251582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.251586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.251589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.251592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.251597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.262569 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.262583 LLDP, length 82 [|LLDP] 17:40:14.262585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b1 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.262587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.262591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.262595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.262598 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.262602 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.262606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.262611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.270824 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.270837 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.270841 LLDP, length 82 [|LLDP] 17:40:14.270843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b7 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.270845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.270849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.270853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.270855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.270859 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.270864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.281850 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.281866 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.281871 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.281874 LLDP, length 82 [|LLDP] 17:40:14.281876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c0 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.281878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.281882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.281886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.281889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.281894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.292851 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.292866 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.292870 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.292874 LLDP, length 82 [|LLDP] 17:40:14.292876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c8 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.292878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.292882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.292886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.292890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.292894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.301108 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.301122 LLDP, length 82 [|LLDP] 17:40:14.301123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.301125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.301129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.301133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.301136 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.301140 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.301144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.301148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.312116 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.312130 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.312134 LLDP, length 82 [|LLDP] 17:40:14.312136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d7 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.312138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.312142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.312146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.312149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.312153 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.312158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.323138 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.323156 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.323160 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.323164 LLDP, length 82 [|LLDP] 17:40:14.323166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05df ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.323168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.323172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.323176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.323180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.323184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.331395 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.331414 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.331418 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.331423 LLDP, length 82 [|LLDP] 17:40:14.331424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.331426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.331431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.331434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.331438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.331442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.342401 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.342418 LLDP, length 82 [|LLDP] 17:40:14.342420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ee 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.342422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.342426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.342430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.342433 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.342437 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.342441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.342445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.350652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.350667 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.350671 LLDP, length 82 [|LLDP] 17:40:14.350672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f4 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.350675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.350679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.350683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.350686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.350694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.350698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.361668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.361682 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.361687 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.361691 LLDP, length 82 [|LLDP] 17:40:14.361692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fd 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.361694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.361699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.361703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.361705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.361710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.372673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.372688 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.372692 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.372696 LLDP, length 82 [|LLDP] 17:40:14.372698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0605 77db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.372704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.372708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.372712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.372715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.372719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.380932 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.380948 LLDP, length 82 [|LLDP] 17:40:14.380949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060b c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.380952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.380965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.380969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.380973 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.380977 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.380981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.380985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.391956 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.391978 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.391982 LLDP, length 82 [|LLDP] 17:40:14.391984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0614 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.391986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.391990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.391994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.391998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.392002 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.392006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.402961 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.402981 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.402985 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.402989 LLDP, length 82 [|LLDP] 17:40:14.402991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061c 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.402993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.402998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.403002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.403005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.403009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.411214 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.411230 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.411235 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.411239 LLDP, length 82 [|LLDP] 17:40:14.411240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.411242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.411247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.411251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.411254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.411259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.422223 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.422239 LLDP, length 82 [|LLDP] 17:40:14.422240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062b 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.422242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.422246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.422250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.422253 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.422257 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.422261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.422266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.432421 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.432436 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.432441 LLDP, length 82 [|LLDP] 17:40:14.432443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.432445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.432450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.432454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.432456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.432461 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.432465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.441487 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.441502 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.441506 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.441510 LLDP, length 82 [|LLDP] 17:40:14.441511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.441514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.441518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.441522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.441525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.441529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.452493 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.452509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.452513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.452517 LLDP, length 82 [|LLDP] 17:40:14.452519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0642 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.452521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.452526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.452529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.452532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.452536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.460752 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.460766 LLDP, length 82 [|LLDP] 17:40:14.460767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0648 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.460769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.460774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.460778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.460781 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.460785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.460789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.460794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.471760 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.471776 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.471780 LLDP, length 82 [|LLDP] 17:40:14.471781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0651 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.471784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.471788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.471792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.471795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.471799 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.471804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.482770 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.482785 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.482790 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.482794 LLDP, length 82 [|LLDP] 17:40:14.482795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0659 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.482797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.482802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.482806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.482809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.482813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.493082 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.493098 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.493102 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.493106 LLDP, length 82 [|LLDP] 17:40:14.493108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065f c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.493110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.493114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.493118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.493121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.493125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.502040 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.502055 LLDP, length 82 [|LLDP] 17:40:14.502056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0668 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.502058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.502063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.502067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.502069 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.502074 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.502078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.502083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.513049 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.513063 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.513067 LLDP, length 82 [|LLDP] 17:40:14.513069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0670 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.513071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.513075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.513079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.513081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.513086 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.513090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.521310 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.521326 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.521331 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.521335 LLDP, length 82 [|LLDP] 17:40:14.521336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.521339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.521343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.521347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.521349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.521354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.532316 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.532329 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.532333 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.532338 LLDP, length 82 [|LLDP] 17:40:14.532339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067f 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.532342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.532346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.532350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.532353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.532358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.540570 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.540584 LLDP, length 82 [|LLDP] 17:40:14.540585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.540587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.540591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.540595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.540598 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.540603 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.540607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.540611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.553745 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.553759 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.553763 LLDP, length 82 [|LLDP] 17:40:14.553764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.553766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.553770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.553774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.553777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.553781 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.553786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.562591 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.562603 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.562607 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.562611 LLDP, length 82 [|LLDP] 17:40:14.562613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0696 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.562614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.562619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.562623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.562625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.562630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.570847 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.570859 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.570863 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.570866 LLDP, length 82 [|LLDP] 17:40:14.570868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069c ab0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.570870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.570874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.570878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.570881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.570885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.581886 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.581911 LLDP, length 82 [|LLDP] 17:40:14.581913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a5 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.581916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.581920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.581924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.581928 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.581932 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.581936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.581940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.592899 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.592926 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.592931 LLDP, length 82 [|LLDP] 17:40:14.592933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ad 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.592935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.592940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.592944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.592948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.592952 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.592957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.601134 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.601150 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.601155 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.601159 LLDP, length 82 [|LLDP] 17:40:14.601160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.601162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.601167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.601170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.601173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.601178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.614422 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.614437 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.614441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.614445 LLDP, length 82 [|LLDP] 17:40:14.614447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bc 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.614449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.614454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.614457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.614460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.614465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.620399 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.620414 LLDP, length 82 [|LLDP] 17:40:14.620416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.620418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.620422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.620426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.620429 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.620433 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.620437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.620441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.631407 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.631424 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.631428 LLDP, length 82 [|LLDP] 17:40:14.631430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.631431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.631435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.631439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.631442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.631447 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.631451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.642418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.642434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.642438 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.642442 LLDP, length 82 [|LLDP] 17:40:14.642443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d3 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.642445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.642449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.642453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.642456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.642461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.650671 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.650687 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.650691 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.650696 LLDP, length 82 [|LLDP] 17:40:14.650697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.650699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.650703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.650707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.650710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.650715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.661683 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.661699 LLDP, length 82 [|LLDP] 17:40:14.661700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.661702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.661706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.661710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.661713 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.661717 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.661721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.661726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.675091 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.675105 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.675109 LLDP, length 82 [|LLDP] 17:40:14.675111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ea 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.675112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.675117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.675121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.675124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.675128 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.675132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.680957 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.680976 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.680981 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.680984 LLDP, length 82 [|LLDP] 17:40:14.680986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f0 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.680988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.680993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.680997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.680999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.681004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.691960 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.691975 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.691979 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.691983 LLDP, length 82 [|LLDP] 17:40:14.691984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f9 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.691986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.691990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.691994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.691997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.692001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.702974 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.702988 LLDP, length 82 [|LLDP] 17:40:14.702990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0701 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.702992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.702996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.703000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.703003 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.703007 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.703011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.703015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.711228 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.711246 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.711250 LLDP, length 82 [|LLDP] 17:40:14.711252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0707 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.711254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.711258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.711262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.711265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.711269 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.711274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.722244 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.722259 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.722263 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.722267 LLDP, length 82 [|LLDP] 17:40:14.722268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0710 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.722270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.722274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.722278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.722281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.722285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.730494 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.730509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.730513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.730518 LLDP, length 82 [|LLDP] 17:40:14.730519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.730521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.730525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.730530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.730532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.730537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.741512 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.741529 LLDP, length 82 [|LLDP] 17:40:14.741531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.741532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.741537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.741541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.741543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.741547 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.741552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.741556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.752516 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.752530 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.752534 LLDP, length 82 [|LLDP] 17:40:14.752536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0727 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.752538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.752542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.752546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.752548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.752552 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.752557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.760775 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.760790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.760794 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.760798 LLDP, length 82 [|LLDP] 17:40:14.760800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.760802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.760806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.760810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.760813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.760818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.771784 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.771800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.771804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.771808 LLDP, length 82 [|LLDP] 17:40:14.771810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.771812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.771816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.771820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.771823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.771827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.782795 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.782811 LLDP, length 82 [|LLDP] 17:40:14.782812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073e 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.782814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.782819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.782822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.782826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.782830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.782834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.782838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.791053 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.791068 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.791072 LLDP, length 82 [|LLDP] 17:40:14.791073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0744 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.791076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.791080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.791084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.791087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.791091 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.791095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.802062 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.802076 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.802080 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.802084 LLDP, length 82 [|LLDP] 17:40:14.802086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074d 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.802088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.802092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.802096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.802098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.802102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.813073 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.813088 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.813092 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.813096 LLDP, length 82 [|LLDP] 17:40:14.813098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0755 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.813100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.813104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.813108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.813111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.813115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.821331 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.821346 LLDP, length 82 [|LLDP] 17:40:14.821347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075b c4a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.821349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.821354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.821358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.821360 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.821364 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.821368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.821373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.832336 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.832351 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.832355 LLDP, length 82 [|LLDP] 17:40:14.832357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0764 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.832359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.832363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.832367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.832370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.832374 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.832378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.840597 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.840612 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.840617 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.840621 LLDP, length 82 [|LLDP] 17:40:14.840622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.840624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.840628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.840632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.840636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.840640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.851605 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.851620 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.851624 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.851628 LLDP, length 82 [|LLDP] 17:40:14.851630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.851632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.851636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.851640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.851643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.851647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.862617 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.862631 LLDP, length 82 [|LLDP] 17:40:14.862633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077b 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.862635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.862639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.862643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.862646 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.862650 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.862654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.862658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.870873 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.870888 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.870891 LLDP, length 82 [|LLDP] 17:40:14.870894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.870896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.870900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.870904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.870906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.870910 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.870915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.881882 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.881897 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.881901 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.881905 LLDP, length 82 [|LLDP] 17:40:14.881907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.881908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.881912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.881916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.881919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.881923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.892892 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.892907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.892911 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.892915 LLDP, length 82 [|LLDP] 17:40:14.892916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0792 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.892918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.892922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.892926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.892929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.892933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.901148 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.901162 LLDP, length 82 [|LLDP] 17:40:14.901164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0798 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.901166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.901170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.901174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.901177 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.901181 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.901185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.901189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.912159 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.912173 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.912178 LLDP, length 82 [|LLDP] 17:40:14.912180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a1 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.912182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.912186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.912190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.912193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.912197 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.912201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.920419 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.920434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.920439 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.920442 LLDP, length 82 [|LLDP] 17:40:14.920444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.920446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.920451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.920455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.920458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.920462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.931431 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.931446 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.931450 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.931454 LLDP, length 82 [|LLDP] 17:40:14.931456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07af c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.931458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.931462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.931466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.931469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.931473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.942440 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.942455 LLDP, length 82 [|LLDP] 17:40:14.942457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b8 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.942459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.942463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.942467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.942470 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.942474 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.942479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.942483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.950697 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.950711 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.950715 LLDP, length 82 [|LLDP] 17:40:14.950717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.950719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.950723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.950727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.950730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.950734 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.950739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.961711 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.961728 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.961732 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.961736 LLDP, length 82 [|LLDP] 17:40:14.961737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.961739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.961743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.961747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.961750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.961754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.972718 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.972734 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.972738 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.972742 LLDP, length 82 [|LLDP] 17:40:14.972743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cf 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.972745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.972750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.972754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.972756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.972760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.980979 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.980994 LLDP, length 82 [|LLDP] 17:40:14.980996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.980998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.981002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.981006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.981009 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.981014 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.981018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.981022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.991984 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.991998 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.992002 LLDP, length 82 [|LLDP] 17:40:14.992004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd f7db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.992006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.992010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.992014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.992017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.992021 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.992025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.002994 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.003008 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.003012 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.003016 LLDP, length 82 [|LLDP] 17:40:15.003018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e6 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.003020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.003024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.003028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.003031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.003035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.011249 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.011265 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.011270 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.011273 LLDP, length 82 [|LLDP] 17:40:15.011275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ec ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.011277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.011282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.011286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.011288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.011293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.022263 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.022277 LLDP, length 82 [|LLDP] 17:40:15.022278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f5 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.022280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.022284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.022288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.022291 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.022295 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.022300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.022304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.030515 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.030528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.030533 LLDP, length 82 [|LLDP] 17:40:15.030534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.030536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.030541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.030545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.030548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.030553 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.030557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.041526 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.041540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.041544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.041548 LLDP, length 82 [|LLDP] 17:40:15.041549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0803 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.041551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.041555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.041559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.041562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.041567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.052535 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.052548 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.052552 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.052556 LLDP, length 82 [|LLDP] 17:40:15.052557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.052559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.052563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.052567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.052570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.052574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.060790 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.060801 LLDP, length 82 [|LLDP] 17:40:15.060803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.060805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.060809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.060813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.060816 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.060820 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.060823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.060828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.071801 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.071813 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.071818 LLDP, length 82 [|LLDP] 17:40:15.071819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.071821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.071825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.071829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.071832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.071835 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.071840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.082817 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.082839 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.082844 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.082849 LLDP, length 82 [|LLDP] 17:40:15.082850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0823 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.082853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.082857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.082861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.082864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.082868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.091077 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.091090 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.091094 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.091098 LLDP, length 82 [|LLDP] 17:40:15.091100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.091101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.091106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.091109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.091113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.091117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.102173 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.102222 LLDP, length 82 [|LLDP] 17:40:15.102230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.102232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.102239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.102243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.102249 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.102254 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.102258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.102264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.113142 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.113198 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.113204 LLDP, length 82 [|LLDP] 17:40:15.113206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.113209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.113214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.113218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.113223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.113228 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.113233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.121391 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.121427 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.121433 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.121437 LLDP, length 82 [|LLDP] 17:40:15.121439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0840 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.121441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.121446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.121450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.121454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.121459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.132377 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.132402 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.132407 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.132411 LLDP, length 82 [|LLDP] 17:40:15.132413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0849 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.132415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.132420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.132424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.132427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.132432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.140632 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.140653 LLDP, length 82 [|LLDP] 17:40:15.140655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.140657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.140661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.140665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.140668 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.140673 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.140677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.140681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.151638 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.151654 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.151658 LLDP, length 82 [|LLDP] 17:40:15.151660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0857 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.151662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.151666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.151670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.151674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.151678 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.151683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.162639 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.162660 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.162664 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.162668 LLDP, length 82 [|LLDP] 17:40:15.162670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0860 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.162673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.162677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.162681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.162684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.162689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.170902 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.170918 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.170922 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.170926 LLDP, length 82 [|LLDP] 17:40:15.170928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.170930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.170934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.170938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.170941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.170945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.181921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.181938 LLDP, length 82 [|LLDP] 17:40:15.181940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.181942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.181946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.181950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.181954 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.181958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.181963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.181967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.192923 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.192941 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.192945 LLDP, length 82 [|LLDP] 17:40:15.192946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0877 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.192948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.192952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.192956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.192959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.192963 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.192968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.201171 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.201186 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.201190 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.201194 LLDP, length 82 [|LLDP] 17:40:15.201196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.201198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.201202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.201206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.201209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.201213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.212192 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.212207 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.212211 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.212215 LLDP, length 82 [|LLDP] 17:40:15.212216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.212218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.212222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.212226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.212229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.212234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.220445 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.220458 LLDP, length 82 [|LLDP] 17:40:15.220460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.220462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.220466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.220470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.220473 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.220477 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.220481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.220485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.231450 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.231463 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.231467 LLDP, length 82 [|LLDP] 17:40:15.231468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0894 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.231470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.231474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.231478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.231481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.231485 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.231489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.242460 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.242474 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.242478 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.242482 LLDP, length 82 [|LLDP] 17:40:15.242484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089d 1174 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.242486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.242490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.242494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.242497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.242501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.250712 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.250726 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.250730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.250734 LLDP, length 82 [|LLDP] 17:40:15.250735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.250737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.250742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.250746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.250749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.250753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.261726 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.261740 LLDP, length 82 [|LLDP] 17:40:15.261741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ab c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.261743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.261748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.261752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.261754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.261759 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.261763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.261768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.272737 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.272751 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.272755 LLDP, length 82 [|LLDP] 17:40:15.272757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b4 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.272759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.272763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.272767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.272770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.272774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.272778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.280997 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.281011 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.281015 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.281019 LLDP, length 82 [|LLDP] 17:40:15.281020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.281022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.281026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.281030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.281033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.281037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.292003 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.292017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.292022 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.292026 LLDP, length 82 [|LLDP] 17:40:15.292027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.292029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.292033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.292037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.292040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.292044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.303010 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.303024 LLDP, length 82 [|LLDP] 17:40:15.303025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cb 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.303027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.303031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.303035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.303038 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.303042 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.303046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.303050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.311271 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.311285 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.311290 LLDP, length 82 [|LLDP] 17:40:15.311291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.311293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.311298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.311309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.311313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.311318 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.311322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.322279 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.322293 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.322297 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.322301 LLDP, length 82 [|LLDP] 17:40:15.322303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 f7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.322305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.322309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.322313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.322317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.322321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.330538 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.330552 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.330556 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.330560 LLDP, length 82 [|LLDP] 17:40:15.330561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.330564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.330568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.330572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.330575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.330579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.341552 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.341566 LLDP, length 82 [|LLDP] 17:40:15.341567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e8 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.341569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.341573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.341577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.341580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.341585 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.341589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.341593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.352562 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.352577 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.352581 LLDP, length 82 [|LLDP] 17:40:15.352583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f1 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.352585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.352589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.352592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.352595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.352599 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.352604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.360812 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.360826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.360830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.360834 LLDP, length 82 [|LLDP] 17:40:15.360835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.360837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.360841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.360845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.360847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.360852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.371822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.371835 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.371839 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.371843 LLDP, length 82 [|LLDP] 17:40:15.371845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ff c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.371847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.371851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.371855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.371857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.371861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.382834 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.382847 LLDP, length 82 [|LLDP] 17:40:15.382848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0908 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.382850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.382854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.382858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.382861 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.382865 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.382869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.382874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.391092 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.391106 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.391111 LLDP, length 82 [|LLDP] 17:40:15.391112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.391115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.391119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.391123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.391127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.391131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.391136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.402121 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.402143 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.402148 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.402152 LLDP, length 82 [|LLDP] 17:40:15.402154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.402156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.402160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.402164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.402168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.402172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.410373 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.410393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.410397 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.410401 LLDP, length 82 [|LLDP] 17:40:15.410404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091d 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.410406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.410410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.410415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.410418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.410422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.421380 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.421399 LLDP, length 82 [|LLDP] 17:40:15.421401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0925 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.421403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.421407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.421411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.421415 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.421419 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.421423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.421428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.432386 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.432404 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.432408 LLDP, length 82 [|LLDP] 17:40:15.432410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.432412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.432416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.432419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.432423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.432427 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.432432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.440640 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.440656 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.440660 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.440664 LLDP, length 82 [|LLDP] 17:40:15.440666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.440668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.440672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.440676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.440678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.440683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.451649 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.451665 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.451670 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.451674 LLDP, length 82 [|LLDP] 17:40:15.451675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093c ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.451678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.451682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.451686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.451689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.451693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.462662 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.462678 LLDP, length 82 [|LLDP] 17:40:15.462680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0945 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.462682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.462686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.462691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.462694 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.462698 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.462703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.462707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.470920 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.470935 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.470939 LLDP, length 82 [|LLDP] 17:40:15.470941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.470942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.470947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.470951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.470954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.470958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.470963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.481934 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.481953 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.481957 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.481962 LLDP, length 82 [|LLDP] 17:40:15.481963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0953 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.481965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.481970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.481974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.481978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.481983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.492941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.492959 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.492964 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.492968 LLDP, length 82 [|LLDP] 17:40:15.492969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095c 2b0f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.492971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.492976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.492980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.492982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.492994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.501198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.501214 LLDP, length 82 [|LLDP] 17:40:15.501215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.501217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.501221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.501225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.501228 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.501232 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.501237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.501241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.512212 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.512228 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.512232 LLDP, length 82 [|LLDP] 17:40:15.512234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.512236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.512240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.512244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.512247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.512251 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.512255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.523977 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.523991 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.523995 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.523999 LLDP, length 82 [|LLDP] 17:40:15.524000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0971 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.524003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.524007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.524011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.524014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.524019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.531469 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.531483 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.531487 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.531491 LLDP, length 82 [|LLDP] 17:40:15.531492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0979 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.531495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.531499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.531503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.531505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.531509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.542480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.542494 LLDP, length 82 [|LLDP] 17:40:15.542496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.542498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.542502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.542506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.542509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.542513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.542517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.542521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.550739 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.550754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.550758 LLDP, length 82 [|LLDP] 17:40:15.550760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.550761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.550766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.550769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.550772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.550776 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.550781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.561749 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.561762 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.561766 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.561770 LLDP, length 82 [|LLDP] 17:40:15.561772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0990 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.561773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.561778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.561782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.561786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.561790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.572766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.572781 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.572785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.572789 LLDP, length 82 [|LLDP] 17:40:15.572791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0999 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.572792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.572797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.572801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.572804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.572808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.584572 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.584587 LLDP, length 82 [|LLDP] 17:40:15.584588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.584590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.584594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.584598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.584601 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.584605 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.584609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.584613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.592022 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.592035 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.592039 LLDP, length 82 [|LLDP] 17:40:15.592041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a7 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.592043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.592047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.592051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.592054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.592058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.592062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.603033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.603046 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.603050 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.603054 LLDP, length 82 [|LLDP] 17:40:15.603056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b0 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.603057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.603062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.603066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.603068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.603072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.611340 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.611368 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.611373 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.611377 LLDP, length 82 [|LLDP] 17:40:15.611379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.611381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.611386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.611390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.611393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.611398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.622312 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.622328 LLDP, length 82 [|LLDP] 17:40:15.622330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.622332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.622336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.622340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.622343 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.622347 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.622351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.622356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.630565 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.630580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.630584 LLDP, length 82 [|LLDP] 17:40:15.630586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c5 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.630588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.630592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.630596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.630599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.630603 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.630607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.645204 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.645224 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.645229 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.645233 LLDP, length 82 [|LLDP] 17:40:15.645235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cd 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.645237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.645241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.645245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.645249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.645253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.652579 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.652593 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.652598 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.652602 LLDP, length 82 [|LLDP] 17:40:15.652603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.652605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.652609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.652613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.652616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.652620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.660835 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.660848 LLDP, length 82 [|LLDP] 17:40:15.660850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.660851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.660855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.660859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.660862 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.660866 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.660871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.660875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.671848 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.671864 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.671868 LLDP, length 82 [|LLDP] 17:40:15.671870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e4 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.671872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.671876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.671880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.671883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.671887 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.671891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.682856 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.682870 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.682874 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.682877 LLDP, length 82 [|LLDP] 17:40:15.682879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ed 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.682881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.682886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.682890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.682892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.682897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.691112 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.691125 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.691130 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.691134 LLDP, length 82 [|LLDP] 17:40:15.691135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 5e41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.691137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.691142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.691145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.691148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.691152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.705789 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.705803 LLDP, length 82 [|LLDP] 17:40:15.705804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fb c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.705806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.705810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.705814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.705817 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.705821 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.705826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.705830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.710381 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.710393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.710397 LLDP, length 82 [|LLDP] 17:40:15.710398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a02 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.710400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.710404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.710408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.710411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.710415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.710420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.721388 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.721402 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.721407 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.721411 LLDP, length 82 [|LLDP] 17:40:15.721412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0a 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.721414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.721418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.721422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.721425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.721429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.732403 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.732416 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.732420 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.732424 LLDP, length 82 [|LLDP] 17:40:15.732426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.732427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.732431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.732435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.732438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.732443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.740659 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.740672 LLDP, length 82 [|LLDP] 17:40:15.740673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a19 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.740675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.740679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.740683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.740685 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.740689 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.740693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.740697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.751667 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.751680 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.751684 LLDP, length 82 [|LLDP] 17:40:15.751685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a21 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.751687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.751692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.751695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.751698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.751702 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.751706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.762677 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.762690 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.762694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.762698 LLDP, length 82 [|LLDP] 17:40:15.762699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.762701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.762705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.762709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.762711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.762716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.770935 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.770947 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.770952 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.770956 LLDP, length 82 [|LLDP] 17:40:15.770957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.770959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.770964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.770967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.770970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.770974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.781945 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.781964 LLDP, length 82 [|LLDP] 17:40:15.781965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a38 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.781967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.781972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.781976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.781979 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.781983 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.781987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.781991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.792955 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.792968 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.792972 LLDP, length 82 [|LLDP] 17:40:15.792974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a41 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.792976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.792980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.792984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.792987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.792991 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.792995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.801221 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.801241 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.801246 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.801250 LLDP, length 82 [|LLDP] 17:40:15.801252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.801254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.801259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.801263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.801267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.801271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.812225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.812239 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.812243 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.812247 LLDP, length 82 [|LLDP] 17:40:15.812248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4f c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.812250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.812254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.812258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.812261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.812265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.820481 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.820494 LLDP, length 82 [|LLDP] 17:40:15.820495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a56 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.820497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.820501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.820505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.820508 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.820513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.820517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.820522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.831492 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.831506 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.831510 LLDP, length 82 [|LLDP] 17:40:15.831512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5e 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.831514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.831518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.831522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.831524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.831528 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.831533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.842502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.842515 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.842519 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.842523 LLDP, length 82 [|LLDP] 17:40:15.842524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.842526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.842530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.842534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.842537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.842541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.850756 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.850770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.850773 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.850778 LLDP, length 82 [|LLDP] 17:40:15.850779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6d 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.850781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.850785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.850789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.850792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.850796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.861764 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.861779 LLDP, length 82 [|LLDP] 17:40:15.861780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a75 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.861782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.861786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.861790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.861793 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.861797 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.861802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.861806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.872779 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.872791 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.872796 LLDP, length 82 [|LLDP] 17:40:15.872797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.872799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.872804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.872808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.872811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.872815 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.872819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.881033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.881045 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.881049 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.881053 LLDP, length 82 [|LLDP] 17:40:15.881054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.881056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.881061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.881065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.881068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.881072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.892044 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.892058 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.892062 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.892066 LLDP, length 82 [|LLDP] 17:40:15.892068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8c ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.892069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.892074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.892078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.892081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.892085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.900303 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.900316 LLDP, length 82 [|LLDP] 17:40:15.900318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.900320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.900324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.900328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.900330 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.900334 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.900339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.900343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.911318 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.911331 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.911335 LLDP, length 82 [|LLDP] 17:40:15.911336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9b 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.911338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.911342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.911346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.911348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.911352 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.911357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.922320 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.922335 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.922338 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.922342 LLDP, length 82 [|LLDP] 17:40:15.922344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.922346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.922350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.922354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.922357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.922361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.930580 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.930593 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.930597 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.930601 LLDP, length 82 [|LLDP] 17:40:15.930603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaa 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.930605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.930609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.930613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.930616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.930621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.941587 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.941601 LLDP, length 82 [|LLDP] 17:40:15.941602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab2 77dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.941604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.941608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.941612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.941615 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.941619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.941623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.941627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.952601 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.952614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.952618 LLDP, length 82 [|LLDP] 17:40:15.952620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.952621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.952626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.952629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.952633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.952637 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.952641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.960871 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.960889 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.960893 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.960897 LLDP, length 82 [|LLDP] 17:40:15.960899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac1 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.960901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.960905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.960909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.960912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.960917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.971877 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.971895 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.971900 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.971904 LLDP, length 82 [|LLDP] 17:40:15.971905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac9 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.971907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.971911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.971915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.971918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.971922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.982879 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.982893 LLDP, length 82 [|LLDP] 17:40:15.982894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.982896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.982900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.982904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.982907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.982911 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.982915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.982920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.991138 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.991153 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.991158 LLDP, length 82 [|LLDP] 17:40:15.991159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.991161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.991166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.991170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.991173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.991177 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.991181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.002144 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.002157 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.002161 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.002165 LLDP, length 82 [|LLDP] 17:40:16.002166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae0 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.002168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.002172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.002176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.002179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.002183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.012946 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.012959 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.012963 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.012967 LLDP, length 82 [|LLDP] 17:40:16.012968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.012970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.012974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.012978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.012981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.012985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.021412 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.021424 LLDP, length 82 [|LLDP] 17:40:16.021425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aef 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.021427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.021431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.021435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.021438 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.021442 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.021446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.021451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.032422 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.032434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.032438 LLDP, length 82 [|LLDP] 17:40:16.032439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af7 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.032441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.032445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.032449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.032451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.032455 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.032459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.040676 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.040690 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.040694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.040698 LLDP, length 82 [|LLDP] 17:40:16.040699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afe 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.040701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.040706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.040710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.040712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.040716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.051690 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.051703 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.051707 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.051711 LLDP, length 82 [|LLDP] 17:40:16.051712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b06 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.051714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.051718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.051722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.051725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.051729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.062697 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.062710 LLDP, length 82 [|LLDP] 17:40:16.062711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.062713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.062717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.062721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.062724 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.062728 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.062732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.062736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.073574 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.073587 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.073592 LLDP, length 82 [|LLDP] 17:40:16.073593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b15 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.073595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.073599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.073603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.073605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.073609 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.073614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.081965 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.081978 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.081982 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.081986 LLDP, length 82 [|LLDP] 17:40:16.081987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1d 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.081989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.081993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.081997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.082000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.082004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.092976 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.092988 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.092992 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.092996 LLDP, length 82 [|LLDP] 17:40:16.092997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.092999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.093003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.093007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.093009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.093021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.101232 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.101246 LLDP, length 82 [|LLDP] 17:40:16.101248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.101249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.101254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.101258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.101260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.101264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.101268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.101273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.112242 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.112255 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.112260 LLDP, length 82 [|LLDP] 17:40:16.112261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b34 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.112263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.112267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.112272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.112275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.112279 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.112283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.120502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.120514 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.120518 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.120523 LLDP, length 82 [|LLDP] 17:40:16.120524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.120526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.120530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.120534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.120537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.120542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.134197 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.134210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.134214 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.134218 LLDP, length 82 [|LLDP] 17:40:16.134219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b43 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.134221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.134226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.134229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.134232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.134236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.142522 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.142532 LLDP, length 82 [|LLDP] 17:40:16.142533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4b c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.142535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.142539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.142543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.142546 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.142549 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.142554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.142559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.150777 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.150790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.150795 LLDP, length 82 [|LLDP] 17:40:16.150797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b52 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.150799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.150803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.150807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.150810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.150815 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.150819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.161788 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.161800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.161804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.161809 LLDP, length 82 [|LLDP] 17:40:16.161810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5a 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.161812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.161816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.161820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.161822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.161826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.172799 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.172812 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.172816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.172820 LLDP, length 82 [|LLDP] 17:40:16.172822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.172823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.172827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.172831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.172834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.172839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.181055 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.181068 LLDP, length 82 [|LLDP] 17:40:16.181069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b69 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.181072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.181076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.181080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.181082 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.181087 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.181091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.181095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.194839 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.194852 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.194856 LLDP, length 82 [|LLDP] 17:40:16.194857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b71 9175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.194859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.194863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.194868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.194870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.194875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.194879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.200323 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.200337 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.200341 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.200345 LLDP, length 82 [|LLDP] 17:40:16.200347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.200348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.200353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.200357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.200359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.200364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.211342 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.211354 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.211359 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.211362 LLDP, length 82 [|LLDP] 17:40:16.211364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b80 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.211366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.211370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.211374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.211377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.211382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.222342 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.222354 LLDP, length 82 [|LLDP] 17:40:16.222356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b88 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.222357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.222361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.222365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.222368 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.222372 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.222376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.222381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.230601 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.230614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.230618 LLDP, length 82 [|LLDP] 17:40:16.230620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e f7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.230622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.230626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.230630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.230632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.230636 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.230641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.241612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.241625 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.241629 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.241632 LLDP, length 82 [|LLDP] 17:40:16.241634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b97 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.241636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.241640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.241644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.241646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.241651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.255504 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.255518 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.255522 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.255526 LLDP, length 82 [|LLDP] 17:40:16.255528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9f c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.255530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.255534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.255538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.255540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.255544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.260875 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.260887 LLDP, length 82 [|LLDP] 17:40:16.260889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba6 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.260890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.260894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.260898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.260901 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.260905 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.260909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.260914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.271888 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.271900 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.271904 LLDP, length 82 [|LLDP] 17:40:16.271906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bae 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.271908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.271912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.271916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.271919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.271923 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.271927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.282897 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.282909 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.282913 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.282917 LLDP, length 82 [|LLDP] 17:40:16.282919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.282921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.282925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.282929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.282931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.282936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.291158 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.291170 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.291174 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.291178 LLDP, length 82 [|LLDP] 17:40:16.291179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbd 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.291181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.291185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.291189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.291192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.291196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.302164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.302177 LLDP, length 82 [|LLDP] 17:40:16.302179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc5 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.302180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.302184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.302188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.302192 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.302196 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.302200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.302204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.310429 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.310442 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.310446 LLDP, length 82 [|LLDP] 17:40:16.310447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb de41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.310449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.310453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.310457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.310460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.310464 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.310468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.321435 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.321448 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.321452 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.321456 LLDP, length 82 [|LLDP] 17:40:16.321458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd4 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.321460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.321464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.321468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.321470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.321475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.332444 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.332456 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.332460 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.332464 LLDP, length 82 [|LLDP] 17:40:16.332466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdc ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.332468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.332472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.332476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.332478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.332482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.340699 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.340711 LLDP, length 82 [|LLDP] 17:40:16.340713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.340715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.340719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.340723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.340726 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.340730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.340734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.340738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.351710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.351723 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.351727 LLDP, length 82 [|LLDP] 17:40:16.351729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0beb 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.351731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.351735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.351747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.351750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.351755 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.351760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.362720 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.362733 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.362737 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.362742 LLDP, length 82 [|LLDP] 17:40:16.362743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.362745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.362749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.362753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.362757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.362761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.370978 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.370991 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.370995 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.370999 LLDP, length 82 [|LLDP] 17:40:16.371000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfa 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.371002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.371006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.371010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.371013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.371017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.381989 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.382003 LLDP, length 82 [|LLDP] 17:40:16.382004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c02 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.382006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.382010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.382015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.382017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.382021 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.382025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.382030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.393001 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.393014 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.393018 LLDP, length 82 [|LLDP] 17:40:16.393019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.393021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.393025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.393029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.393032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.393036 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.393041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.401264 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.401277 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.401281 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.401285 LLDP, length 82 [|LLDP] 17:40:16.401287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c11 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.401289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.401293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.401297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.401300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.401304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.412263 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.412276 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.412280 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.412284 LLDP, length 82 [|LLDP] 17:40:16.412285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c19 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.412287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.412291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.412295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.412297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.412302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.420523 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.420535 LLDP, length 82 [|LLDP] 17:40:16.420537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.420539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.420544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.420548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.420551 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.420555 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.420559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.420563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.431531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.431544 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.431548 LLDP, length 82 [|LLDP] 17:40:16.431550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c28 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.431551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.431555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.431560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.431563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.431566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.431571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.442547 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.442559 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.442564 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.442568 LLDP, length 82 [|LLDP] 17:40:16.442570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c30 ab0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.442572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.442576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.442580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.442583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.442587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.450800 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.450812 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.450816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.450820 LLDP, length 82 [|LLDP] 17:40:16.450822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.450824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.450828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.450832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.450835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.450839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.461810 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.461823 LLDP, length 82 [|LLDP] 17:40:16.461825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.461826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.461830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.461834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.461837 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.461841 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.461845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.461849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.472823 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.472836 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.472840 LLDP, length 82 [|LLDP] 17:40:16.472841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c47 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.472843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.472847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.472851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.472853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.472857 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.472862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.481094 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.481114 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.481119 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.481123 LLDP, length 82 [|LLDP] 17:40:16.481125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4e 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.481127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.481132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.481136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.481138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.481143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.492097 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.492114 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.492118 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.492122 LLDP, length 82 [|LLDP] 17:40:16.492123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c56 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.492125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.492130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.492134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.492137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.492141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.500351 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.500366 LLDP, length 82 [|LLDP] 17:40:16.500368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5c c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.500370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.500374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.500378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.500381 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.500385 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.500389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.500394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.511365 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.511396 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.511401 LLDP, length 82 [|LLDP] 17:40:16.511402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c65 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.511405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.511409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.511413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.511416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.511421 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.511426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.522373 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.522388 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.522392 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.522396 LLDP, length 82 [|LLDP] 17:40:16.522397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6d 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.522400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.522404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.522408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.522411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.522415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.530626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.530640 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.530644 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.530648 LLDP, length 82 [|LLDP] 17:40:16.530650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.530652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.530656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.530660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.530663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.530668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.541635 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.541650 LLDP, length 82 [|LLDP] 17:40:16.541651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7c 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.541653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.541657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.541661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.541664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.541669 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.541673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.541677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.552651 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.552668 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.552672 LLDP, length 82 [|LLDP] 17:40:16.552674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c84 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.552676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.552680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.552684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.552687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.552691 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.552695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.560905 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.560920 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.560924 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.560928 LLDP, length 82 [|LLDP] 17:40:16.560929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a f7dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.560932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.560936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.560939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.560942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.560947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.571921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.571936 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.571940 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.571944 LLDP, length 82 [|LLDP] 17:40:16.571945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c93 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.571947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.571951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.571955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.571958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.571962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.582923 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.582938 LLDP, length 82 [|LLDP] 17:40:16.582940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9b c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.582942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.582946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.582950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.582953 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.582957 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.582961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.582966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.591180 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.591193 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.591197 LLDP, length 82 [|LLDP] 17:40:16.591199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca2 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.591200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.591205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.591208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.591212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.591216 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.591220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.602187 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.602200 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.602204 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.602208 LLDP, length 82 [|LLDP] 17:40:16.602209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caa 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.602211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.602215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.602219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.602222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.602226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.610447 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.610459 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.610463 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.610467 LLDP, length 82 [|LLDP] 17:40:16.610469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb0 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.610471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.610475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.610479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.610481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.610485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.621456 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.621469 LLDP, length 82 [|LLDP] 17:40:16.621470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb9 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.621472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.621476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.621480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.621482 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.621487 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.621490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.621495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.632502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.632528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.632533 LLDP, length 82 [|LLDP] 17:40:16.632535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc1 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.632537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.632542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.632546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.632550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.632554 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.632559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.640747 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.640770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.640774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.640779 LLDP, length 82 [|LLDP] 17:40:16.640781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.640783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.640788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.640792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.640796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.640801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.651740 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.651755 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.651760 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.651764 LLDP, length 82 [|LLDP] 17:40:16.651766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd0 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.651768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.651772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.651776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.651779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.651783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.662746 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.662759 LLDP, length 82 [|LLDP] 17:40:16.662760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd8 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.662762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.662766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.662770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.662773 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.662777 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.662781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.662785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.670999 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.671013 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.671017 LLDP, length 82 [|LLDP] 17:40:16.671018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.671020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.671024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.671028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.671032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.671036 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.671040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.682012 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.682026 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.682030 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.682034 LLDP, length 82 [|LLDP] 17:40:16.682035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.682037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.682041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.682046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.682049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.682053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.690277 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.690290 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.690294 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.690299 LLDP, length 82 [|LLDP] 17:40:16.690300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ced ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.690302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.690306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.690310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.690312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.690317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.701279 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.701294 LLDP, length 82 [|LLDP] 17:40:16.701296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf6 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.701298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.701302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.701306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.701309 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.701313 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.701317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.701321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.712294 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.712308 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.712312 LLDP, length 82 [|LLDP] 17:40:16.712313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfe 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.712315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.712319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.712323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.712326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.712330 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.712334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.720541 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.720554 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.720559 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.720563 LLDP, length 82 [|LLDP] 17:40:16.720564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d04 c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.720566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.720571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.720575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.720578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.720582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.731551 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.731564 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.731568 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.731572 LLDP, length 82 [|LLDP] 17:40:16.731574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0d 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.731576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.731580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.731584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.731587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.731592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.742565 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.742578 LLDP, length 82 [|LLDP] 17:40:16.742579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d15 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.742581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.742585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.742589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.742592 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.742596 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.742600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.742604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.750821 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.750833 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.750837 LLDP, length 82 [|LLDP] 17:40:16.750839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.750840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.750844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.750849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.750852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.750856 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.750860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.761835 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.761850 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.761854 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.761858 LLDP, length 82 [|LLDP] 17:40:16.761859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d24 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.761861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.761865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.761869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.761872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.761876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.772841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.772855 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.772859 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.772863 LLDP, length 82 [|LLDP] 17:40:16.772864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2c ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.772866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.772870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.772874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.772877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.772882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.781099 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.781112 LLDP, length 82 [|LLDP] 17:40:16.781113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.781115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.781119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.781123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.781126 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.781130 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.781134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.781138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.792110 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.792123 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.792127 LLDP, length 82 [|LLDP] 17:40:16.792128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3b 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.792130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.792135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.792139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.792142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.792146 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.792151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.800370 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.800384 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.800388 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.800392 LLDP, length 82 [|LLDP] 17:40:16.800394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d41 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.800396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.800400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.800404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.800407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.800411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.811375 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.811389 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.811393 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.811397 LLDP, length 82 [|LLDP] 17:40:16.811399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4a 1175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.811401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.811405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.811409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.811412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.811416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.822384 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.822397 LLDP, length 82 [|LLDP] 17:40:16.822398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d52 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.822400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.822404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.822408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.822411 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.822415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.822419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.822424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.830642 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.830655 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.830659 LLDP, length 82 [|LLDP] 17:40:16.830660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d58 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.830662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.830666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.830669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.830672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.830676 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.830680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.841656 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.841669 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.841673 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.841677 LLDP, length 82 [|LLDP] 17:40:16.841679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d61 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.841681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.841685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.841689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.841692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.841696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.852663 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.852675 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.852679 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.852683 LLDP, length 82 [|LLDP] 17:40:16.852685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d69 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.852687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.852691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.852695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.852698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.852702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.860924 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.860937 LLDP, length 82 [|LLDP] 17:40:16.860938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f de5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.860940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.860944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.860948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.860951 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.860955 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.860959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.860963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.871939 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.871952 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.871956 LLDP, length 82 [|LLDP] 17:40:16.871957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d78 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.871959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.871964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.871968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.871970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.871974 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.871979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.882941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.882954 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.882958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.882962 LLDP, length 82 [|LLDP] 17:40:16.882963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d80 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.882965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.882970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.882974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.882976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.882981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.891200 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.891213 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.891217 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.891221 LLDP, length 82 [|LLDP] 17:40:16.891222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.891224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.891228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.891232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.891235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.891239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.902209 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.902222 LLDP, length 82 [|LLDP] 17:40:16.902224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8f 5e63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.902225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.902229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.902233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.902236 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.902240 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.902245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.902249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.910465 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.910478 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.910482 LLDP, length 82 [|LLDP] 17:40:16.910483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d95 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.910485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.910489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.910492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.910495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.910499 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.910504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.921480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.921493 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.921497 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.921501 LLDP, length 82 [|LLDP] 17:40:16.921502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9e 1190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.921504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.921508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.921513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.921516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.921520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.932485 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.932499 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.932504 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.932508 LLDP, length 82 [|LLDP] 17:40:16.932509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da6 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.932511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.932515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.932519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.932522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.932526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.940745 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.940758 LLDP, length 82 [|LLDP] 17:40:16.940759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dac c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.940761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.940765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.940769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.940771 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.940775 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.940779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.940784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.951757 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.951771 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.951775 LLDP, length 82 [|LLDP] 17:40:16.951776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db5 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.951778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.951782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.951786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.951789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.951793 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.951798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.962781 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.962799 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.962803 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.962807 LLDP, length 82 [|LLDP] 17:40:16.962809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbd 9190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.962811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.962816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.962820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.962823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.962827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.971026 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.971040 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.971044 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.971048 LLDP, length 82 [|LLDP] 17:40:16.971050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.971052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.971056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.971060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.971063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.971067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.982034 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.982047 LLDP, length 82 [|LLDP] 17:40:16.982049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcc 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.982051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.982054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.982058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.982061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.982065 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.982069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.982074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.990290 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.990303 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.990307 LLDP, length 82 [|LLDP] 17:40:16.990309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.990311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.990315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.990318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.990322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.990326 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.990330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.001298 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.001310 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.001314 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.001318 LLDP, length 82 [|LLDP] 17:40:17.001319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda f7f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.001321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.001325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.001329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.001332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.001336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.012307 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.012320 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.012324 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.012328 LLDP, length 82 [|LLDP] 17:40:17.012330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de3 5e5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.012331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.012336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.012340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.012343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.012347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.020568 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.020580 LLDP, length 82 [|LLDP] 17:40:17.020581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de9 ab28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.020583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.020587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.020591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.020594 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.020598 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.020602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.020606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.031576 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.031596 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.031600 LLDP, length 82 [|LLDP] 17:40:17.031602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df2 118e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.031604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.031608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.031612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.031615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.031619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.031623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.042591 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.042605 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.042609 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.042613 LLDP, length 82 [|LLDP] 17:40:17.042614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfa 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.042616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.042621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.042625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.042627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.042632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.050839 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.050852 LLDP, length 82 [|LLDP] 17:40:17.050853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e00 c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.050855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.050859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.061853 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.061865 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.061869 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.061874 LLDP, length 82 [|LLDP] 17:40:17.061875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e09 2b28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.061877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.061882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.061886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.061888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.061892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.072862 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.072876 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.072880 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.072884 LLDP, length 82 [|LLDP] 17:40:17.072886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e11 918e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.072888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.072892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.072897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.072899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.072904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.081124 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.081137 LLDP, length 82 [|LLDP] 17:40:17.081138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.081140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.081145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.081149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.081152 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.081156 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.081161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.081165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.092132 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.092145 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.092149 LLDP, length 82 [|LLDP] 17:40:17.092150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e20 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.092152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.092156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.092160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.092163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.092167 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.092172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.100394 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.100407 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.100411 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.100415 LLDP, length 82 [|LLDP] 17:40:17.100417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 9196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.100419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.100422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.100426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.100429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.100434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.111397 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.111410 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.111414 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.111418 LLDP, length 82 [|LLDP] 17:40:17.111420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.111421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.111425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.111429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.111432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.111436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.122409 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.122423 LLDP, length 82 [|LLDP] 17:40:17.122424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e37 5e5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.122426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.122430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.122434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.122437 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.122441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.122445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.122449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.130668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.130681 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.130685 LLDP, length 82 [|LLDP] 17:40:17.130686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3d ab28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.130688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.130692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.130696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.130699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.130702 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.130707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.141676 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.141689 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.141693 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.141697 LLDP, length 82 [|LLDP] 17:40:17.141699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e46 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.141701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.141705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.141709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.141711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.141715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.152688 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.152702 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.152706 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.152710 LLDP, length 82 [|LLDP] 17:40:17.152711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4e 77fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.152713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.152717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.152722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.152725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.152729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.160945 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.160958 LLDP, length 82 [|LLDP] 17:40:17.160959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e54 c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.160961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.160965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.160969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.160972 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.160976 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.160980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.160985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.171955 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.171968 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.171972 LLDP, length 82 [|LLDP] 17:40:17.171974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5d 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.171975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.171980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.171984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.171987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.171990 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.171995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.180224 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.180244 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.180249 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.180254 LLDP, length 82 [|LLDP] 17:40:17.180255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.180257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.180262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.180266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.180269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.180274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.191228 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.191244 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.191248 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.191252 LLDP, length 82 [|LLDP] 17:40:17.191253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.191255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.191260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.191264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.191267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.191271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.202237 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.202254 LLDP, length 82 [|LLDP] 17:40:17.202255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e74 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.202257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.202261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.202265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.202268 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.202272 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.202276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.202281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.210494 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.210510 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.210513 LLDP, length 82 [|LLDP] 17:40:17.210515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.210517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.210521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.210525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.210528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.210532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.210536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.221501 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.221522 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.221526 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.221530 LLDP, length 82 [|LLDP] 17:40:17.221531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.221534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.221538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.221542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.221545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.221549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.232510 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.232528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.232532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.232536 LLDP, length 82 [|LLDP] 17:40:17.232538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8b 5e5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.232540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.232544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.232548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.232551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.232555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.240766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.240780 LLDP, length 82 [|LLDP] 17:40:17.240782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e91 ab2a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.240783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.240788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.240792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.240794 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.240799 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.240803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.240807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.251779 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.251793 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.251797 LLDP, length 82 [|LLDP] 17:40:17.251799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9a 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.251801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.251806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.251810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.251812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.251816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.251820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.262786 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.262800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.262804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.262808 LLDP, length 82 [|LLDP] 17:40:17.262810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea2 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.262812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.262816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.262820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.262823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.262827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.271044 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.271057 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.271061 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.271065 LLDP, length 82 [|LLDP] 17:40:17.271067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea8 c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.271068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.271073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.271076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.271080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.271084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.282066 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.282080 LLDP, length 82 [|LLDP] 17:40:17.282082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb1 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.282084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.282088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.282092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.282095 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.282099 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.282104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.290309 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.290320 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.290324 LLDP, length 82 [|LLDP] 17:40:17.290326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.290328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.290332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.290337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.290339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.290343 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.290348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.301322 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.301333 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.301337 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.301342 LLDP, length 82 [|LLDP] 17:40:17.301343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf de5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.301345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.301349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.301354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.301356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.301360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.312330 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.312341 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.312345 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.312349 LLDP, length 82 [|LLDP] 17:40:17.312351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec8 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.312352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.312357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.312361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.312363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.312367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.320582 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.320592 LLDP, length 82 [|LLDP] 17:40:17.320593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece 9190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.320595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.320599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.320603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.320606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.320610 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.320614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.320618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.331596 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.331606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.331610 LLDP, length 82 [|LLDP] 17:40:17.331611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 f7f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.331614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.331618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.331622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.331624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.331628 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.331632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.342603 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.342614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.342618 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.342622 LLDP, length 82 [|LLDP] 17:40:17.342623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edf 5e5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.342625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.342629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.342633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.342636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.342640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.350861 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.350871 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.350875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.350879 LLDP, length 82 [|LLDP] 17:40:17.350880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee5 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.350882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.350886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.350890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.350892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.350896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.361868 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.361878 LLDP, length 82 [|LLDP] 17:40:17.361880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eee 1190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.361881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.361885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.361889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.361892 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.361896 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.361900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.361904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.372882 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.372894 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.372897 LLDP, length 82 [|LLDP] 17:40:17.372899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef6 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.372901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.372905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.372909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.372911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.372915 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.372919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.381137 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.381147 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.381151 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.381155 LLDP, length 82 [|LLDP] 17:40:17.381156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efc c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.381158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.381162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.381166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.381168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.381172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.392146 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.392155 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.392159 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.392163 LLDP, length 82 [|LLDP] 17:40:17.392165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f05 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.392167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.392171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.392175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.392177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.392181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.400406 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.400418 LLDP, length 82 [|LLDP] 17:40:17.400419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.400421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.400426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.400430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.400432 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.400436 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.400440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.400445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.411418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.411429 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.411433 LLDP, length 82 [|LLDP] 17:40:17.411435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.411436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.411440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.411444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.411447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.411451 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.411456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.422425 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.422434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.422438 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.422442 LLDP, length 82 [|LLDP] 17:40:17.422443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1c 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.422445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.422450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.422453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.422456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.422461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.430680 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.430689 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.430693 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.430697 LLDP, length 82 [|LLDP] 17:40:17.430698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.430700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.430704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.430709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.430711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.430715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.441690 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.441701 LLDP, length 82 [|LLDP] 17:40:17.441703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a f7f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.441704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.441708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.441712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.441715 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.441719 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.441723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.441727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.452701 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.452712 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.452716 LLDP, length 82 [|LLDP] 17:40:17.452718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f33 5e5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.452719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.452724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.452727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.452730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.452734 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.452738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.460961 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.460971 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.460975 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.460979 LLDP, length 82 [|LLDP] 17:40:17.460980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f39 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.460982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.460986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.460990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.460992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.460996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.471969 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.471980 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.471984 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.471988 LLDP, length 82 [|LLDP] 17:40:17.471989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f42 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.471991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.471995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.471999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.472002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.472006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.480226 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.480235 LLDP, length 82 [|LLDP] 17:40:17.480236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 5e5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.480238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.480242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.480246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.480248 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.480252 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.480256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.480260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.491235 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.491245 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.491249 LLDP, length 82 [|LLDP] 17:40:17.491250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f50 c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.491252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.491256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.491260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.491263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.491267 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.491271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.502246 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.502255 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.502259 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.502263 LLDP, length 82 [|LLDP] 17:40:17.502264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f59 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.502266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.502270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.502274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.502277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.502281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.510505 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.510516 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.510520 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.510524 LLDP, length 82 [|LLDP] 17:40:17.510525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.510527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.510531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.510535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.510538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.510542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.521514 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.521523 LLDP, length 82 [|LLDP] 17:40:17.521524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.521526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.521530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.521534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.521537 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.521541 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.521545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.521549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.532524 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.532533 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.532537 LLDP, length 82 [|LLDP] 17:40:17.532538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f70 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.532540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.532544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.532548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.532551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.532554 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.532559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.540780 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.540790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.540794 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.540798 LLDP, length 82 [|LLDP] 17:40:17.540799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.540801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.540805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.540808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.540811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.540815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.551801 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.551815 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.551819 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.551824 LLDP, length 82 [|LLDP] 17:40:17.551825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.551827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.551832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.551836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.551838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.551843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.562822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.562840 LLDP, length 82 [|LLDP] 17:40:17.562842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f87 5e7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.562844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.562849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.562853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.562855 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.562860 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.562864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.562869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.571068 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.571083 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.571087 LLDP, length 82 [|LLDP] 17:40:17.571088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8d ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.571090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.571094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.571099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.571103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.571107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.571111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.582085 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.582102 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.582107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.582111 LLDP, length 82 [|LLDP] 17:40:17.582113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f96 11b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.582115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.582120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.582124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.582127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.582131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.590346 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.590363 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.590367 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.590379 LLDP, length 82 [|LLDP] 17:40:17.590381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.590383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.590388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.590392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.590395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.590399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.601347 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.601362 LLDP, length 82 [|LLDP] 17:40:17.601363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa4 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.601365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.601370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.601374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.601377 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.601381 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.601385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.601390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.612357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.612371 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.612375 LLDP, length 82 [|LLDP] 17:40:17.612376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fad 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.612378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.612382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.612387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.612390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.612394 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.612398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.620615 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.620629 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.620633 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.620637 LLDP, length 82 [|LLDP] 17:40:17.620639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 7818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.620641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.620645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.620649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.620652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.620656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.631631 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.631648 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.631652 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.631656 LLDP, length 82 [|LLDP] 17:40:17.631658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.631660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.631665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.631669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.631671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.631676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.642634 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.642649 LLDP, length 82 [|LLDP] 17:40:17.642651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc4 44e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.642653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.642657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.642660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.642664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.642668 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.642672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.642676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.650893 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.650907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.650912 LLDP, length 82 [|LLDP] 17:40:17.650913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca 91b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.650915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.650919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.650923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.650926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.650930 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.650935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.661931 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.661956 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.661961 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.661965 LLDP, length 82 [|LLDP] 17:40:17.661967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 f818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.661970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.661974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.661979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.661983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.661987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.672920 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.672934 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.672938 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.672943 LLDP, length 82 [|LLDP] 17:40:17.672944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdb 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.672946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.672951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.672955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.672958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.672963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.681171 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.681185 LLDP, length 82 [|LLDP] 17:40:17.681186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe1 ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.681188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.681192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.681196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.681199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.681203 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.681208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.681212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.692176 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.692189 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.692193 LLDP, length 82 [|LLDP] 17:40:17.692194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fea 11b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.692197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.692201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.692205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.692208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.692212 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.692216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.700431 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.700443 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.700447 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.700451 LLDP, length 82 [|LLDP] 17:40:17.700452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 5e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.700454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.700458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.700462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.700465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.700469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.711443 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.711455 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.711458 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.711462 LLDP, length 82 [|LLDP] 17:40:17.711464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 c4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.711466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.711470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.711474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.711477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.711481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.722452 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.722464 LLDP, length 82 [|LLDP] 17:40:17.722466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1001 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.722468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.722472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.722476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.722478 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.722482 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.722486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.722491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.730710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.730722 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.730726 LLDP, length 82 [|LLDP] 17:40:17.730727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.730729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.730733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.730737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.730740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.730743 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.730748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.741719 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.741731 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.741735 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.741739 LLDP, length 82 [|LLDP] 17:40:17.741741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f de7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.741743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.741747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.741751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.741754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.741758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.752729 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.752742 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.752746 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.752750 LLDP, length 82 [|LLDP] 17:40:17.752752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1018 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.752754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.752758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.752762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.752764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.752769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.760988 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.761000 LLDP, length 82 [|LLDP] 17:40:17.761002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e 91b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.761004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.761008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.761012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.761015 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.761019 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.761024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.761028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.771996 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.772009 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.772013 LLDP, length 82 [|LLDP] 17:40:17.772015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.772016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.772020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.772024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.772027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.772031 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.772035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.780256 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.780269 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.780273 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.780277 LLDP, length 82 [|LLDP] 17:40:17.780278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d 44e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.780280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.780284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.780288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.780291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.780296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.791267 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.791280 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.791284 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.791288 LLDP, length 82 [|LLDP] 17:40:17.791290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 ab4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.791292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.791296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.791300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.791314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.791319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.802274 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.802286 LLDP, length 82 [|LLDP] 17:40:17.802287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103e 11b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.802289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.802293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.802297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.802300 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.802304 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.802308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.802313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.810531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.810543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.810547 LLDP, length 82 [|LLDP] 17:40:17.810548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 5e84 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.810550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.810554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.810558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.810561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.810565 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.810569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.821543 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.821556 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.821560 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.821564 LLDP, length 82 [|LLDP] 17:40:17.821566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.821568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.821572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.821576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.821579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.821583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.832553 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.832565 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.832569 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.832573 LLDP, length 82 [|LLDP] 17:40:17.832574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1055 2b4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.832577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.832581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.832585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.832588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.832592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.840808 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.840820 LLDP, length 82 [|LLDP] 17:40:17.840822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.840823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.840828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.840831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.840834 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.840838 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.840842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.840846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.851818 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.851831 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.851835 LLDP, length 82 [|LLDP] 17:40:17.851836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 de7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.851838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.851843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.851846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.851849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.851853 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.851857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.862828 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.862840 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.862844 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.862848 LLDP, length 82 [|LLDP] 17:40:17.862849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106c 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.862851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.862855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.862859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.862861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.862865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.871088 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.871101 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.871105 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.871110 LLDP, length 82 [|LLDP] 17:40:17.871111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 91b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.871113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.871117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.871121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.871124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.871129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.882101 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.882113 LLDP, length 82 [|LLDP] 17:40:17.882115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.882117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.882121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.882124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.882127 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.882131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.882135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.882140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.890357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.890370 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.890374 LLDP, length 82 [|LLDP] 17:40:17.890376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.890377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.890381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.890385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.890388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.890391 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.890395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.901378 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.901396 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.901401 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.901405 LLDP, length 82 [|LLDP] 17:40:17.901406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 ab4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.901409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.901413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.901417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.901420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.901424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.912384 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.912398 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.912403 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.912407 LLDP, length 82 [|LLDP] 17:40:17.912408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1092 11b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.912410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.912415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.912419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.912421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.912426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.920633 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.920645 LLDP, length 82 [|LLDP] 17:40:17.920646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 5e7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.920648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.920652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.920656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.920659 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.920663 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.920667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.920671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.931642 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.931657 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.931662 LLDP, length 82 [|LLDP] 17:40:17.931664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.931665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.931670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.931674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.931677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.931681 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.931686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.942652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.942664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.942668 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.942672 LLDP, length 82 [|LLDP] 17:40:17.942673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a9 2b51 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.942675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.942679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.942683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.942686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.942690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.953401 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.953414 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.953418 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.953422 LLDP, length 82 [|LLDP] 17:40:17.953424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.953426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.953430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.953434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.953437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.953441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.961929 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.961946 LLDP, length 82 [|LLDP] 17:40:17.961948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.961949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.961954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.961958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.961960 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.961964 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.961968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.961972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.970183 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.970199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.970203 LLDP, length 82 [|LLDP] 17:40:17.970204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10be 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.970206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.970211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.970215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.970218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.970222 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.970226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.981190 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.981203 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.981207 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.981211 LLDP, length 82 [|LLDP] 17:40:17.981212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 91b7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.981214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.981218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.981222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.981225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.981229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.992197 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.992210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.992214 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.992218 LLDP, length 82 [|LLDP] 17:40:17.992219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce f818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.992221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.992226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.992230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.992232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.992236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.000456 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.000468 LLDP, length 82 [|LLDP] 17:40:18.000469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.000471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.000475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.000479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.000482 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.000486 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.000490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.000495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.014024 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.014036 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.014040 LLDP, length 82 [|LLDP] 17:40:18.014041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.014043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.014047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.014051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.014054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.014058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.014062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.022474 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.022485 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.022489 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.022493 LLDP, length 82 [|LLDP] 17:40:18.022495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e6 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.022497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.022501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.022505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.022508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.022512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.030732 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.030745 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.030749 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.030753 LLDP, length 82 [|LLDP] 17:40:18.030754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.030756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.030760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.030764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.030767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.030771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.041743 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.041755 LLDP, length 82 [|LLDP] 17:40:18.041756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.041758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.041762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.041766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.041768 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.041772 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.041777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.041781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.052751 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.052763 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.052767 LLDP, length 82 [|LLDP] 17:40:18.052768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fd 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.052770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.052774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.052778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.052781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.052785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.052789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.061009 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.061021 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.061025 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.061029 LLDP, length 82 [|LLDP] 17:40:18.061031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 783a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.061033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.061037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.061041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.061043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.061047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.074698 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.074712 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.074716 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.074720 LLDP, length 82 [|LLDP] 17:40:18.074721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b dea0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.074724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.074728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.074732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.074735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.074739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.080277 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.080290 LLDP, length 82 [|LLDP] 17:40:18.080292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1112 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.080294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.080297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.080301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.080304 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.080308 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.080313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.080318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.091286 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.091298 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.091311 LLDP, length 82 [|LLDP] 17:40:18.091313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a 91d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.091319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.091323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.091326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.091330 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.091334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.102295 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.102307 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.102311 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.102315 LLDP, length 82 [|LLDP] 17:40:18.102316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 f83a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.102318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.102322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.102327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.102329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.102333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.110551 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.110562 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.110566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.110571 LLDP, length 82 [|LLDP] 17:40:18.110572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.110574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.110578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.110582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.110585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.110589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.121563 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.121575 LLDP, length 82 [|LLDP] 17:40:18.121576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 ab6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.121578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.121583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.121586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.121589 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.121593 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.121597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.121602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.135365 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.135378 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.135382 LLDP, length 82 [|LLDP] 17:40:18.135383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113a 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.135385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.135389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.135393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.135396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.135400 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.135404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.140831 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.140843 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.140847 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.140851 LLDP, length 82 [|LLDP] 17:40:18.140852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.140854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.140859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.140862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.140865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.140869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.151841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.151853 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.151857 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.151861 LLDP, length 82 [|LLDP] 17:40:18.151862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.151864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.151868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.151872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.151875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.151879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.162852 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.162864 LLDP, length 82 [|LLDP] 17:40:18.162865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1151 2b6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.162867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.162872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.162876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.162878 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.162883 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.162887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.162892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.171108 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.171120 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.171124 LLDP, length 82 [|LLDP] 17:40:18.171126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 7839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.171127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.171131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.171135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.171138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.171142 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.171147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.182117 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.182130 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.182135 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.182139 LLDP, length 82 [|LLDP] 17:40:18.182140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f de9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.182142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.182146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.182151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.182154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.182158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.190377 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.190390 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.190394 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.190398 LLDP, length 82 [|LLDP] 17:40:18.190399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1166 2b6b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.190401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.190406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.190410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.190412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.190416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.201385 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.201397 LLDP, length 82 [|LLDP] 17:40:18.201398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.201400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.201404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.201408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.201411 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.201415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.201419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.201424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.212397 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.212419 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.212423 LLDP, length 82 [|LLDP] 17:40:18.212425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 f838 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.212426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.212431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.212434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.212437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.212441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.212445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.220651 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.220662 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.220666 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.220670 LLDP, length 82 [|LLDP] 17:40:18.220672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.220674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.220678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.220681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.220684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.220688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.231662 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.231673 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.231677 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.231681 LLDP, length 82 [|LLDP] 17:40:18.231683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 ab73 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.231685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.231689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.231693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.231695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.231699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.242673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.242685 LLDP, length 82 [|LLDP] 17:40:18.242687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118e 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.242689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.242694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.242698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.242701 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.242705 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.242709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.242714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.250931 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.250944 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.250948 LLDP, length 82 [|LLDP] 17:40:18.250949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.250951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.250955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.250959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.250962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.250966 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.250970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.261941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.261952 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.261956 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.261960 LLDP, length 82 [|LLDP] 17:40:18.261961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.261963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.261967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.261971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.261974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.261978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.270198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.270210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.270215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.270219 LLDP, length 82 [|LLDP] 17:40:18.270220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a3 11d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.270222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.270226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.270231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.270234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.270238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.281210 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.281222 LLDP, length 82 [|LLDP] 17:40:18.281223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab 7839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.281225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.281230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.281234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.281237 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.281241 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.281245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.281249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.292219 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.292231 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.292235 LLDP, length 82 [|LLDP] 17:40:18.292236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.292238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.292242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.292246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.292249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.292253 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.292258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.300475 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.300487 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.300492 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.300496 LLDP, length 82 [|LLDP] 17:40:18.300497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ba 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.300499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.300503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.300507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.300509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.300514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.311484 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.311495 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.311500 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.311504 LLDP, length 82 [|LLDP] 17:40:18.311505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.311507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.311511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.311515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.311518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.311522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.322508 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.322526 LLDP, length 82 [|LLDP] 17:40:18.322527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.322529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.322533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.322537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.322540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.322544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.322549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.322553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.330761 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.330782 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.330787 LLDP, length 82 [|LLDP] 17:40:18.330788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.330791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.330795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.330799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.330802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.330807 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.330811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.341766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.341780 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.341784 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.341788 LLDP, length 82 [|LLDP] 17:40:18.341790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 ab6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.341792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.341796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.341800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.341803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.341808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.352776 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.352789 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.352793 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.352797 LLDP, length 82 [|LLDP] 17:40:18.352799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e2 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.352801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.352805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.352809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.352811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.352815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.361033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.361046 LLDP, length 82 [|LLDP] 17:40:18.361048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.361050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.361054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.361058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.361061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.361065 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.361069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.361074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.372046 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.372061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.372065 LLDP, length 82 [|LLDP] 17:40:18.372066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.372068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.372072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.372076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.372079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.372083 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.372088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.380302 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.380316 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.380320 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.380324 LLDP, length 82 [|LLDP] 17:40:18.380325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f7 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.380328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.380332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.380336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.380338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.380343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.391323 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.391341 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.391346 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.391350 LLDP, length 82 [|LLDP] 17:40:18.391351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff 783a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.391353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.391358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.391362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.391364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.391369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.402317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.402340 LLDP, length 82 [|LLDP] 17:40:18.402342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 dea6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.402344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.402349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.402356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.402359 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.402364 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.402368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.402372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.410581 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.410595 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.410599 LLDP, length 82 [|LLDP] 17:40:18.410601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120e 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.410603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.410607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.410612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.410615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.410619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.410624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.421595 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.421608 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.421612 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.421616 LLDP, length 82 [|LLDP] 17:40:18.421617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 91d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.421619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.421623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.421627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.421630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.421634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.432594 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.432606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.432610 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.432614 LLDP, length 82 [|LLDP] 17:40:18.432615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.432617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.432621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.432625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.432628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.432632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.440848 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.440858 LLDP, length 82 [|LLDP] 17:40:18.440860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.440861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.440866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.440869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.440872 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.440876 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.440880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.440884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.451861 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.451873 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.451877 LLDP, length 82 [|LLDP] 17:40:18.451879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d ab6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.451881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.451885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.451890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.451892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.451901 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.451906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.460120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.460132 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.460136 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.460140 LLDP, length 82 [|LLDP] 17:40:18.460145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.460147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.460151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.460155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.460158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.460162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.471132 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.471144 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.471149 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.471153 LLDP, length 82 [|LLDP] 17:40:18.471155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.471157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.471161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.471165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.471167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.471172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.482139 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.482151 LLDP, length 82 [|LLDP] 17:40:18.482153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 c50b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.482154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.482158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.482162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.482165 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.482169 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.482173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.482177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.490399 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.490413 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.490418 LLDP, length 82 [|LLDP] 17:40:18.490419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124b 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.490421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.490426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.490430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.490432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.490437 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.490442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.501417 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.501430 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.501434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.501439 LLDP, length 82 [|LLDP] 17:40:18.501440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 7838 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.501442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.501446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.501450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.501453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.501458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.512418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.512431 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.512434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.512438 LLDP, length 82 [|LLDP] 17:40:18.512440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.512442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.512446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.512450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.512452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.512456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.520675 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.520688 LLDP, length 82 [|LLDP] 17:40:18.520689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.520691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.520695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.520699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.520701 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.520705 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.520709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.520713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.531692 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.531707 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.531712 LLDP, length 82 [|LLDP] 17:40:18.531713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.531715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.531719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.531723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.531726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.531730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.531735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.542701 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.542713 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.542717 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.542721 LLDP, length 82 [|LLDP] 17:40:18.542722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.542725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.542729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.542733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.542735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.542739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.550952 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.550964 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.550968 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.550972 LLDP, length 82 [|LLDP] 17:40:18.550974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.550976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.550980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.550984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.550987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.550991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.561966 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.561980 LLDP, length 82 [|LLDP] 17:40:18.561982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1281 ab8d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.561983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.561988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.561992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.561995 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.561999 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.562003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.562008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.570229 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.570245 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.570250 LLDP, length 82 [|LLDP] 17:40:18.570251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 f85a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.570253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.570257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.570262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.570264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.570268 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.570273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.581246 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.581260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.581264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.581268 LLDP, length 82 [|LLDP] 17:40:18.581270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1290 5ec1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.581271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.581276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.581280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.581283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.581287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.592245 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.592260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.592264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.592268 LLDP, length 82 [|LLDP] 17:40:18.592270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1298 c527 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.592271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.592276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.592279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.592282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.592286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.600500 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.600512 LLDP, length 82 [|LLDP] 17:40:18.600514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129f 11f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.600516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.600520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.600524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.600527 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.600531 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.600535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.600539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 6050 packets captured 6050 packets received by filter 0 packets dropped by kernel 606 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 17:40:12.553317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.553387 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.553393 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.553398 LLDP, length 82 [|LLDP] 17:40:12.553401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0099 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.553405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.553410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.553415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.553420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.553425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.561543 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.561564 LLDP, length 82 [|LLDP] 17:40:12.561565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.561568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.561572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.561577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.561580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.561589 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.561593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.561598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.572554 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.572569 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.572574 LLDP, length 82 [|LLDP] 17:40:12.572576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a8 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.572578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.572582 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.572586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.572590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.572593 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.572598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.580803 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.580819 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.580823 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.580827 LLDP, length 82 [|LLDP] 17:40:12.580829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.580831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.580835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.580839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.580842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.580847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.591810 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.591826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.591830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.591834 LLDP, length 82 [|LLDP] 17:40:12.591835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b6 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.591837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.591841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.591845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.591849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.591853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.602818 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.602835 LLDP, length 82 [|LLDP] 17:40:12.602836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bf 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.602838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.602843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.602847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.602849 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.602854 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.602858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.602862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.611077 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.611093 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.611097 LLDP, length 82 [|LLDP] 17:40:12.611098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.611101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.611105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.611110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.611112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.611117 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.611121 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.622093 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.622111 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.622116 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.622120 LLDP, length 82 [|LLDP] 17:40:12.622122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.622124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.622128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.622132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.622135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.622139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.633109 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.633127 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.633131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.633135 LLDP, length 82 [|LLDP] 17:40:12.633136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d6 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.633138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.633143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.633147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.633150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.633154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.641360 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.641378 LLDP, length 82 [|LLDP] 17:40:12.641380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.641382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.641386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.641390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.641393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.641397 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.641402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.641406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.652366 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.652382 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.652387 LLDP, length 82 [|LLDP] 17:40:12.652388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.652391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.652395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.652399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.652402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.652406 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.652411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.660626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.660643 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.660647 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.660651 LLDP, length 82 [|LLDP] 17:40:12.660653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.660655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.660659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.660663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.660667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.660671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.671634 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.671649 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.671654 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.671658 LLDP, length 82 [|LLDP] 17:40:12.671660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f3 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.671661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.671666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.671670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.671672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.671677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.682644 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.682659 LLDP, length 82 [|LLDP] 17:40:12.682661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fc 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.682663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.682667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.682671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.682674 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.682678 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.682682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.682687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.690906 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.690922 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.690926 LLDP, length 82 [|LLDP] 17:40:12.690928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.690929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.690934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.690938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.690941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.690945 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.690950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.701910 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.701926 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.701930 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.701934 LLDP, length 82 [|LLDP] 17:40:12.701936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010a c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.701938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.701942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.701946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.701948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.701953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.712921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.712936 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.712940 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.712944 LLDP, length 82 [|LLDP] 17:40:12.712946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0113 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.712948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.712952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.712957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.712959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.712964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.721178 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.721193 LLDP, length 82 [|LLDP] 17:40:12.721195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.721197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.721201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.721206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.721208 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.721212 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.721217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.721221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.732198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.732221 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.732225 LLDP, length 82 [|LLDP] 17:40:12.732227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.732229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.732233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.732237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.732240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.732244 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.732249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.743196 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.743211 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.743215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.743219 LLDP, length 82 [|LLDP] 17:40:12.743221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012a 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.743223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.743227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.743231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.743234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.743238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.751458 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.751475 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.751479 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.751483 LLDP, length 82 [|LLDP] 17:40:12.751485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 9175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.751487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.751492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.751496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.751498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.751503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.762466 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.762480 LLDP, length 82 [|LLDP] 17:40:12.762482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.762484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.762488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.762492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.762495 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.762499 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.762503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.762508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.770721 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.770735 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.770739 LLDP, length 82 [|LLDP] 17:40:12.770741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.770743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.770747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.770751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.770754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.770758 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.770763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.781735 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.781750 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.781754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.781759 LLDP, length 82 [|LLDP] 17:40:12.781760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0147 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.781762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.781767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.781770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.781773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.781778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.795744 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.795760 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.795764 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.795769 LLDP, length 82 [|LLDP] 17:40:12.795770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0150 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.795772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.795776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.795781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.795783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.795787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.801017 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.801032 LLDP, length 82 [|LLDP] 17:40:12.801034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.801036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.801040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.801044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.801047 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.801051 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.801055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.801060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.812020 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.812035 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.812039 LLDP, length 82 [|LLDP] 17:40:12.812041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015e c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.812043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.812047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.812051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.812054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.812058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.812063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.823022 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.823037 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.823041 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.823046 LLDP, length 82 [|LLDP] 17:40:12.823048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0167 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.823050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.823054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.823058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.823061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.823066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.831278 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.831294 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.831299 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.831309 LLDP, length 82 [|LLDP] 17:40:12.831311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.831313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.831317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.831322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.831325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.831329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.842287 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.842302 LLDP, length 82 [|LLDP] 17:40:12.842303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.842306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.842310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.842314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.842317 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.842321 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.842325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.842329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.850544 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.850557 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.850561 LLDP, length 82 [|LLDP] 17:40:12.850563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.850565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.850569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.850573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.850576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.850580 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.850585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.861557 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.861573 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.861576 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.861581 LLDP, length 82 [|LLDP] 17:40:12.861582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0184 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.861584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.861588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.861592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.861595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.861599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.872563 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.872578 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.872582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.872586 LLDP, length 82 [|LLDP] 17:40:12.872588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.872590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.872594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.872598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.872601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.872605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.880822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.880837 LLDP, length 82 [|LLDP] 17:40:12.880838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.880841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.880845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.880849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.880852 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.880856 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.880861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.880865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.891832 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.891847 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.891851 LLDP, length 82 [|LLDP] 17:40:12.891853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019b ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.891855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.891859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.891863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.891866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.891870 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.891875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.902852 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.902872 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.902876 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.902880 LLDP, length 82 [|LLDP] 17:40:12.902882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a4 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.902884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.902888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.902892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.902895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.902900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.911102 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.911122 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.911126 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.911130 LLDP, length 82 [|LLDP] 17:40:12.911131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.911133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.911138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.911142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.911144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.911149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.922115 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.922132 LLDP, length 82 [|LLDP] 17:40:12.922134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b2 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.922136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.922140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.922144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.922147 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.922151 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.922155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.922159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.933120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.933135 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.933140 LLDP, length 82 [|LLDP] 17:40:12.933141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bb 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.933143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.933147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.933151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.933154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.933158 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.933163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.941378 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.941392 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.941396 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.941400 LLDP, length 82 [|LLDP] 17:40:12.941402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.941404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.941408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.941412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.941415 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.941419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.952386 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.952400 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.952404 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.952408 LLDP, length 82 [|LLDP] 17:40:12.952409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.952411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.952416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.952420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.952423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.952427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.960652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.960671 LLDP, length 82 [|LLDP] 17:40:12.960673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d0 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.960675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.960679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.960683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.960686 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.960690 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.960694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.960699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.971661 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.971679 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.971683 LLDP, length 82 [|LLDP] 17:40:12.971685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d8 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.971687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.971692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.971696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.971699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.971704 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.971708 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.982673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.982691 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.982696 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.982701 LLDP, length 82 [|LLDP] 17:40:12.982702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.982704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.982709 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.982713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.982716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.982721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:12.990926 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:12.990945 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.990949 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:12.990954 LLDP, length 82 [|LLDP] 17:40:12.990955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:12.990957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:12.990962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:12.990966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:12.990969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:12.990974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.001948 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.001968 LLDP, length 82 [|LLDP] 17:40:13.001970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ef ab0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.001972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.001977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.001981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.001984 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.001988 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.001992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.001997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.012946 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.012963 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.012967 LLDP, length 82 [|LLDP] 17:40:13.012969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f8 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.012971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.012975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.012980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.012983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.012987 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.012991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.021209 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.021225 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.021230 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.021234 LLDP, length 82 [|LLDP] 17:40:13.021235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.021237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.021242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.021245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.021249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.021253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.032214 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.032229 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.032233 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.032237 LLDP, length 82 [|LLDP] 17:40:13.032239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0206 c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.032241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.032246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.032250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.032253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.032257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.043225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.043241 LLDP, length 82 [|LLDP] 17:40:13.043242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020f 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.043245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.043249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.043253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.043256 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.043260 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.043264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.043269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.051490 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.051506 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.051511 LLDP, length 82 [|LLDP] 17:40:13.051513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.051515 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.051520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.051524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.051528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.051532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.051536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.062485 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.062504 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.062508 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.062513 LLDP, length 82 [|LLDP] 17:40:13.062515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.062517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.062530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.062535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.062538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.062543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.070751 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.070770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.070774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.070779 LLDP, length 82 [|LLDP] 17:40:13.070781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0224 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.070783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.070788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.070792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.070795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.070799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.081758 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.081776 LLDP, length 82 [|LLDP] 17:40:13.081778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022c 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.081780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.081785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.081788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.081792 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.081796 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.081800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.081805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.092765 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.092782 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.092786 LLDP, length 82 [|LLDP] 17:40:13.092788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.092790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.092794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.092798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.092801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.092805 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.092810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.101024 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.101040 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.101044 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.101048 LLDP, length 82 [|LLDP] 17:40:13.101050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.101052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.101056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.101060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.101062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.101067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.112031 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.112047 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.112051 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.112055 LLDP, length 82 [|LLDP] 17:40:13.112056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0243 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.112058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.112062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.112066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.112069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.112073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.123043 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.123059 LLDP, length 82 [|LLDP] 17:40:13.123061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024c 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.123063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.123067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.123071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.123074 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.123078 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.123082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.123087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.131317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.131333 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.131337 LLDP, length 82 [|LLDP] 17:40:13.131339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.131341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.131346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.131350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.131353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.131358 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.131363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.142310 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.142325 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.142329 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.142333 LLDP, length 82 [|LLDP] 17:40:13.142334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025a c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.142336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.142341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.142345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.142348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.142352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.150570 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.150584 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.150588 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.150592 LLDP, length 82 [|LLDP] 17:40:13.150594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0261 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.150596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.150600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.150604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.150607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.150612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.161569 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.161584 LLDP, length 82 [|LLDP] 17:40:13.161586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0269 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.161588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.161592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.172588 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.172603 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.172607 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.172611 LLDP, length 82 [|LLDP] 17:40:13.172613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.172615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.172620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.172623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.172626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.172631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.180841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.180856 LLDP, length 82 [|LLDP] 17:40:13.180857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0278 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.180860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.180864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.180868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.180871 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.180875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.180879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.180884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.191865 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.191879 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.191883 LLDP, length 82 [|LLDP] 17:40:13.191885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0280 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.191887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.191891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.191895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.191898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.191902 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.191906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.202862 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.202877 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.202881 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.202885 LLDP, length 82 [|LLDP] 17:40:13.202887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.202889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.202893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.202897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.202899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.202904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.211120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.211144 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.211149 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.211153 LLDP, length 82 [|LLDP] 17:40:13.211154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.211156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.211161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.211164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.211167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.211172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.222131 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.222148 LLDP, length 82 [|LLDP] 17:40:13.222149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0297 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.222151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.222155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.222160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.222163 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.222167 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.222171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.222176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.233141 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.233156 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.233160 LLDP, length 82 [|LLDP] 17:40:13.233162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a0 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.233164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.233168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.233172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.233175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.233179 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.233183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.241400 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.241415 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.241419 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.241424 LLDP, length 82 [|LLDP] 17:40:13.241425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.241427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.241431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.241435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.241438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.241443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.252414 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.252430 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.252434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.252438 LLDP, length 82 [|LLDP] 17:40:13.252440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ae c4a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.252442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.252446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.252450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.252453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.252457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.260668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.260685 LLDP, length 82 [|LLDP] 17:40:13.260687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b5 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.260689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.260693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.260697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.260700 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.260704 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.260709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.260713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.271680 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.271698 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.271703 LLDP, length 82 [|LLDP] 17:40:13.271704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bd 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.271707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.271711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.271715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.271718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.271722 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.271727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.282691 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.282708 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.282712 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.282716 LLDP, length 82 [|LLDP] 17:40:13.282718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.282720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.282724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.282728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.282731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.282735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.290947 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.290963 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.290967 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.290971 LLDP, length 82 [|LLDP] 17:40:13.290972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cc 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.290974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.290979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.290983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.290986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.290990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.301953 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.301970 LLDP, length 82 [|LLDP] 17:40:13.301972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d4 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.301974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.301978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.301983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.301986 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.301990 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.301994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.301998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.312964 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.312980 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.312984 LLDP, length 82 [|LLDP] 17:40:13.312986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.312988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.312992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.312996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.313000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.313011 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.313016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.321225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.321243 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.321247 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.321252 LLDP, length 82 [|LLDP] 17:40:13.321253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.321256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.321260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.321264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.321268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.321272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.332237 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.332257 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.332261 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.332265 LLDP, length 82 [|LLDP] 17:40:13.332267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02eb ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.332269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.332273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.332277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.332280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.332285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.340496 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.340513 LLDP, length 82 [|LLDP] 17:40:13.340515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.340517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.340522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.340526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.340529 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.340533 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.340537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.340542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.351510 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.351532 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.351537 LLDP, length 82 [|LLDP] 17:40:13.351538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fa 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.351541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.351545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.351549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.351552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.351556 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.351561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.362521 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.362543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.362548 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.362551 LLDP, length 82 [|LLDP] 17:40:13.362553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0302 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.362555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.362559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.362563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.362566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.362571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.370770 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.370788 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.370792 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.370796 LLDP, length 82 [|LLDP] 17:40:13.370798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0309 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.370800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.370805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.370809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.370812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.370816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.381776 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.381793 LLDP, length 82 [|LLDP] 17:40:13.381795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0311 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.381797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.381801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.381805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.381809 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.381813 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.381817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.381821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.392790 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.392806 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.392811 LLDP, length 82 [|LLDP] 17:40:13.392812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.392815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.392819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.392823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.392826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.392830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.392835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.401049 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.401063 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.401067 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.401071 LLDP, length 82 [|LLDP] 17:40:13.401073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0320 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.401075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.401080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.401083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.401086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.401091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.412063 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.412080 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.412084 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.412089 LLDP, length 82 [|LLDP] 17:40:13.412090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0328 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.412092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.412096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.412100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.412103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.412108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.423066 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.423083 LLDP, length 82 [|LLDP] 17:40:13.423085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 f7d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.423087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.423091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.423095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.423098 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.423102 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.423106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.423110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.431327 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.431345 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.431350 LLDP, length 82 [|LLDP] 17:40:13.431351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.431353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.431357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.431361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.431364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.431368 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.431373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.442345 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.442363 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.442367 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.442371 LLDP, length 82 [|LLDP] 17:40:13.442373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.442375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.442379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.442383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.442386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.442390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.450589 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.450609 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.450613 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.450617 LLDP, length 82 [|LLDP] 17:40:13.450619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 f7d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.450621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.450625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.450629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.450631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.450635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.461606 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.461622 LLDP, length 82 [|LLDP] 17:40:13.461624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034e 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.461626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.461631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.461634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.461637 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.461641 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.461645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.461649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.472612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.472634 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.472638 LLDP, length 82 [|LLDP] 17:40:13.472640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0356 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.472642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.472647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.472651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.472654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.472658 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.472662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.480865 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.480881 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.480886 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.480890 LLDP, length 82 [|LLDP] 17:40:13.480892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035d 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.480894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.480898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.480902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.480905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.480910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.491878 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.491894 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.491899 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.491903 LLDP, length 82 [|LLDP] 17:40:13.491904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0365 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.491906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.491910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.491914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.491917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.491921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.502887 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.502904 LLDP, length 82 [|LLDP] 17:40:13.502906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d de42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.502908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.502912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.502916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.502919 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.502923 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.502927 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.502932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.511154 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.511174 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.511178 LLDP, length 82 [|LLDP] 17:40:13.511179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0374 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.511181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.511186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.511190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.511193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.511197 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.511202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.522157 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.522172 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.522176 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.522180 LLDP, length 82 [|LLDP] 17:40:13.522182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037c 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.522184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.522188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.522192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.522195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.522200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.533167 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.533190 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.533194 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.533198 LLDP, length 82 [|LLDP] 17:40:13.533200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.533202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.533206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.533210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.533213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.533218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.541423 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.541438 LLDP, length 82 [|LLDP] 17:40:13.541440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.541442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.541447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.541451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.541454 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.541458 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.541462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.541466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.552429 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.552444 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.552448 LLDP, length 82 [|LLDP] 17:40:13.552450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0393 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.552452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.552456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.552460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.552463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.552467 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.552472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.560715 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.560742 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.560746 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.560751 LLDP, length 82 [|LLDP] 17:40:13.560753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.560755 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.560759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.560763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.560766 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.560771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.571727 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.571753 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.571758 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.571762 LLDP, length 82 [|LLDP] 17:40:13.571764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a2 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.571767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.571772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.571776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.571780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.571784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.582721 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.582745 LLDP, length 82 [|LLDP] 17:40:13.582747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03aa c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.582749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.582753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.582758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.582761 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.582765 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.582770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.582775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.590989 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.591007 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.591011 LLDP, length 82 [|LLDP] 17:40:13.591013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b1 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.591015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.591019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.591023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.591026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.591031 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.591035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.601994 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.602018 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.602022 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.602027 LLDP, length 82 [|LLDP] 17:40:13.602029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b9 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.602031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.602036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.602040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.602043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.602048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.612993 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.613010 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.613015 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.613019 LLDP, length 82 [|LLDP] 17:40:13.613020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.613022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.613027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.613031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.613034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.613039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.621247 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.621263 LLDP, length 82 [|LLDP] 17:40:13.621265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c8 2b0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.621267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.621276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.621280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.621283 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.621287 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.621291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.621295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.632264 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.632283 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.632287 LLDP, length 82 [|LLDP] 17:40:13.632289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d0 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.632291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.632295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.632299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.632302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.632306 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.632310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.643838 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.643857 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.643861 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.643865 LLDP, length 82 [|LLDP] 17:40:13.643867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.643869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.643873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.643877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.643880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.643884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.651523 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.651540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.651544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.651548 LLDP, length 82 [|LLDP] 17:40:13.651550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03df 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.651552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.651557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.651561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.651564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.651568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.662535 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.662550 LLDP, length 82 [|LLDP] 17:40:13.662552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e7 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.662554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.662559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.662563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.662566 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.662570 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.662574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.662578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.670786 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.670802 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.670806 LLDP, length 82 [|LLDP] 17:40:13.670807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.670809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.670814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.670818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.670821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.670825 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.670833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.681805 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.681825 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.681829 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.681833 LLDP, length 82 [|LLDP] 17:40:13.681834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f6 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.681836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.681841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.681845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.681848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.681852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.692813 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.692836 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.692840 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.692845 LLDP, length 82 [|LLDP] 17:40:13.692846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fe c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.692849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.692853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.692857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.692860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.692864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.704503 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.704521 LLDP, length 82 [|LLDP] 17:40:13.704522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0405 1172 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.704524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.704528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.704533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.704536 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.704540 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.704544 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.704549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.712083 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.712100 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.712104 LLDP, length 82 [|LLDP] 17:40:13.712106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.712108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.712112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.712116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.712118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.712122 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.712127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.723091 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.723108 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.723112 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.723117 LLDP, length 82 [|LLDP] 17:40:13.723118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.723120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.723125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.723129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.723132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.723136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.731360 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.731377 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.731382 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.731386 LLDP, length 82 [|LLDP] 17:40:13.731387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.731390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.731394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.731398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.731401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.731405 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.742357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.742373 LLDP, length 82 [|LLDP] 17:40:13.742374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0424 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.742376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.742381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.742385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.742388 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.742392 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.742396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.742401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.750612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.750627 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.750631 LLDP, length 82 [|LLDP] 17:40:13.750633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.750635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.750639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.750643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.750646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.750650 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.750655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.765153 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.765169 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.765173 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.765177 LLDP, length 82 [|LLDP] 17:40:13.765179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0433 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.765181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.765185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.765190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.765193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.765197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.772626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.772639 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.772643 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.772647 LLDP, length 82 [|LLDP] 17:40:13.772648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043b ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.772651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.772655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.772659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.772662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.772666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.780886 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.780901 LLDP, length 82 [|LLDP] 17:40:13.780903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.780905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.780910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.780914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.780916 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.780921 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.780925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.780930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.791898 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.791913 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.791918 LLDP, length 82 [|LLDP] 17:40:13.791920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.791921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.791926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.791929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.791932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.791936 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.791940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.802908 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.802923 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.802927 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.802931 LLDP, length 82 [|LLDP] 17:40:13.802933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0452 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.802935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.802939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.802943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.802946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.802950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.811164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.811179 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.811183 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.811187 LLDP, length 82 [|LLDP] 17:40:13.811188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0459 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.811191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.811195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.811199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.811202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.811206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.825824 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.825838 LLDP, length 82 [|LLDP] 17:40:13.825840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0461 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.825842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.825846 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.825850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.825853 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.825858 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.825863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.825867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.833184 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.833199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.833203 LLDP, length 82 [|LLDP] 17:40:13.833205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.833207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.833211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.833215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.833218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.833222 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.833226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.841439 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.841455 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.841459 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.841463 LLDP, length 82 [|LLDP] 17:40:13.841465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0470 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.841467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.841471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.841476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.841478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.841483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.852455 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.852470 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.852475 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.852479 LLDP, length 82 [|LLDP] 17:40:13.852481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0478 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.852483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.852487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.852491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.852494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.852499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.860710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.860725 LLDP, length 82 [|LLDP] 17:40:13.860727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.860729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.860733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.860737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.860740 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.860744 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.860748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.860753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.871718 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.871732 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.871736 LLDP, length 82 [|LLDP] 17:40:13.871738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0487 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.871740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.871744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.871748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.871751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.871754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.871759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.886447 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.886462 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.886466 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.886470 LLDP, length 82 [|LLDP] 17:40:13.886471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048f ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.886473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.886477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.886481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.886484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.886488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.890982 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.890997 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.891001 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.891005 LLDP, length 82 [|LLDP] 17:40:13.891007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.891009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.891013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.891017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.891020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.891024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.901995 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.902010 LLDP, length 82 [|LLDP] 17:40:13.902012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049e 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.902014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.902018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.902022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.902025 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.902029 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.902033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.902038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.913006 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.913020 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.913025 LLDP, length 82 [|LLDP] 17:40:13.913026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a6 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.913028 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.913032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.913036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.913039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.913043 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.913047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.921268 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.921284 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.921289 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.921293 LLDP, length 82 [|LLDP] 17:40:13.921294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ad 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.921296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.921300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.921305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.921307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.921312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.932276 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.932292 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.932296 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.932300 LLDP, length 82 [|LLDP] 17:40:13.932302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b5 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.932304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.932308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.932312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.932315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.932319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.940531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.940546 LLDP, length 82 [|LLDP] 17:40:13.940547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bb c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.940549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.940553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.940557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.940560 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.940564 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.940568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.940572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.951545 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.951559 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.951563 LLDP, length 82 [|LLDP] 17:40:13.951565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c4 2b09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.951567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.951571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.951575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.951578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.951582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.951586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.962561 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.962578 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.962582 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.962586 LLDP, length 82 [|LLDP] 17:40:13.962588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cc 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.962590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.962594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.962599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.962601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.962605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.970822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.970838 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.970842 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.970846 LLDP, length 82 [|LLDP] 17:40:13.970848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.970850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.970854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.970858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.970861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.970865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.981823 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.981836 LLDP, length 82 [|LLDP] 17:40:13.981838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04db 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.981840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.981844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.981848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.981851 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.981855 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.981859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.981863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:13.992829 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:13.992844 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.992848 LLDP, length 82 [|LLDP] 17:40:13.992850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e3 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:13.992852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:13.992856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:13.992860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:13.992863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:13.992867 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:13.992872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.001086 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.001103 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.001107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.001111 LLDP, length 82 [|LLDP] 17:40:14.001113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.001115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.001119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.001123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.001126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.001131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.012099 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.012113 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.012117 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.012121 LLDP, length 82 [|LLDP] 17:40:14.012123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f2 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.012125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.012130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.012134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.012136 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.012141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.023164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.023209 LLDP, length 82 [|LLDP] 17:40:14.023210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fa c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.023214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.023223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.023228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.023233 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.023237 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.023242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.023248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.031480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.031523 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.031528 LLDP, length 82 [|LLDP] 17:40:14.031530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0501 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.031533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.031538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.031542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.031546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.031550 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.031555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.042437 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.042479 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.042484 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.042488 LLDP, length 82 [|LLDP] 17:40:14.042490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0509 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.042493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.042498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.042502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.042506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.042511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.050688 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.050728 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.050733 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.050738 LLDP, length 82 [|LLDP] 17:40:14.050740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050f c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.050743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.050748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.050752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.050756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.050760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.061698 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.061736 LLDP, length 82 [|LLDP] 17:40:14.061738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0518 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.061741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.061746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.061750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.061754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.061759 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.061763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.061767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.072716 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.072758 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.072763 LLDP, length 82 [|LLDP] 17:40:14.072765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0520 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.072767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.072773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.072777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.072782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.072786 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.072791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.080969 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.081007 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.081012 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.081017 LLDP, length 82 [|LLDP] 17:40:14.081019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.081023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.081027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.081032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.081036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.081041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.091981 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.092024 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.092029 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.092033 LLDP, length 82 [|LLDP] 17:40:14.092035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052f 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.092038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.092043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.092048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.092052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.092057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.102980 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.103020 LLDP, length 82 [|LLDP] 17:40:14.103022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0537 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.103025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.103030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.103034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.103038 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.103043 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.103047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.103052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.111186 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.111203 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.111207 LLDP, length 82 [|LLDP] 17:40:14.111209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.111211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.111215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.111219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.111222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.111226 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.111230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.122196 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.122210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.122215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.122219 LLDP, length 82 [|LLDP] 17:40:14.122220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0546 5e41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.122222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.122226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.122230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.122233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.122237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.130451 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.130463 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.130467 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.130471 LLDP, length 82 [|LLDP] 17:40:14.130473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054c ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.130475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.130479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.130483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.130486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.130490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.141459 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.141472 LLDP, length 82 [|LLDP] 17:40:14.141474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0555 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.141476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.141480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.141484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.141487 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.141492 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.141496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.141500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.152468 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.152481 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.152485 LLDP, length 82 [|LLDP] 17:40:14.152486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055d 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.152488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.152492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.152496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.152499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.152503 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.152507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.160725 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.160738 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.160742 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.160746 LLDP, length 82 [|LLDP] 17:40:14.160747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0563 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.160749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.160754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.160758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.160760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.160765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.171737 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.171750 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.171754 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.171758 LLDP, length 82 [|LLDP] 17:40:14.171759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.171761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.171765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.171769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.171772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.171776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.182747 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.182760 LLDP, length 82 [|LLDP] 17:40:14.182761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0574 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.182763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.182767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.182771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.182774 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.182778 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.182782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.182787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.191004 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.191017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.191021 LLDP, length 82 [|LLDP] 17:40:14.191022 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.191024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.191028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.191032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.191034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.191038 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.191043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.202014 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.202026 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.202030 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.202034 LLDP, length 82 [|LLDP] 17:40:14.202036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0583 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.202038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.202042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.202046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.202048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.202052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.213021 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.213034 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.213038 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.213042 LLDP, length 82 [|LLDP] 17:40:14.213044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058b ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.213045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.213050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.213054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.213056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.213061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.221281 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.221295 LLDP, length 82 [|LLDP] 17:40:14.221296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.221298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.221302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.221306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.221309 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.221313 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.221318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.221322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.232291 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.232303 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.232307 LLDP, length 82 [|LLDP] 17:40:14.232308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.232310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.232314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.232319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.232322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.232325 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.232330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.240549 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.240562 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.240566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.240570 LLDP, length 82 [|LLDP] 17:40:14.240572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a0 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.240573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.240577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.240581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.240584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.240588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.251557 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.251570 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.251574 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.251578 LLDP, length 82 [|LLDP] 17:40:14.251579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a9 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.251582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.251586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.251589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.251592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.251597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.262569 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.262583 LLDP, length 82 [|LLDP] 17:40:14.262585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b1 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.262587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.262591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.262595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.262598 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.262602 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.262606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.262611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.270824 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.270837 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.270841 LLDP, length 82 [|LLDP] 17:40:14.270843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b7 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.270845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.270849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.270853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.270855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.270859 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.270864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.281850 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.281866 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.281871 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.281874 LLDP, length 82 [|LLDP] 17:40:14.281876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c0 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.281878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.281882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.281886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.281889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.281894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.292851 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.292866 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.292870 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.292874 LLDP, length 82 [|LLDP] 17:40:14.292876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c8 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.292878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.292882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.292886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.292890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.292894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.301108 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.301122 LLDP, length 82 [|LLDP] 17:40:14.301123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.301125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.301129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.301133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.301136 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.301140 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.301144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.301148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.312116 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.312130 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.312134 LLDP, length 82 [|LLDP] 17:40:14.312136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d7 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.312138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.312142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.312146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.312149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.312153 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.312158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.323138 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.323156 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.323160 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.323164 LLDP, length 82 [|LLDP] 17:40:14.323166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05df ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.323168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.323172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.323176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.323180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.323184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.331395 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.331414 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.331418 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.331423 LLDP, length 82 [|LLDP] 17:40:14.331424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.331426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.331431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.331434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.331438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.331442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.342401 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.342418 LLDP, length 82 [|LLDP] 17:40:14.342420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ee 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.342422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.342426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.342430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.342433 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.342437 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.342441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.342445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.350652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.350667 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.350671 LLDP, length 82 [|LLDP] 17:40:14.350672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f4 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.350675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.350679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.350683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.350686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.350694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.350698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.361668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.361682 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.361687 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.361691 LLDP, length 82 [|LLDP] 17:40:14.361692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fd 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.361694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.361699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.361703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.361705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.361710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.372673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.372688 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.372692 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.372696 LLDP, length 82 [|LLDP] 17:40:14.372698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0605 77db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.372704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.372708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.372712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.372715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.372719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.380932 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.380948 LLDP, length 82 [|LLDP] 17:40:14.380949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060b c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.380952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.380965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.380969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.380973 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.380977 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.380981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.380985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.391956 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.391978 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.391982 LLDP, length 82 [|LLDP] 17:40:14.391984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0614 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.391986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.391990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.391994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.391998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.392002 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.392006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.402961 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.402981 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.402985 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.402989 LLDP, length 82 [|LLDP] 17:40:14.402991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061c 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.402993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.402998 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.403002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.403005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.403009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.411214 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.411230 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.411235 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.411239 LLDP, length 82 [|LLDP] 17:40:14.411240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.411242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.411247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.411251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.411254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.411259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.422223 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.422239 LLDP, length 82 [|LLDP] 17:40:14.422240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062b 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.422242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.422246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.422250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.422253 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.422257 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.422261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.422266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.432421 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.432436 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.432441 LLDP, length 82 [|LLDP] 17:40:14.432443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.432445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.432450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.432454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.432456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.432461 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.432465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.441487 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.441502 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.441506 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.441510 LLDP, length 82 [|LLDP] 17:40:14.441511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.441514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.441518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.441522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.441525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.441529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.452493 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.452509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.452513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.452517 LLDP, length 82 [|LLDP] 17:40:14.452519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0642 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.452521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.452526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.452529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.452532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.452536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.460752 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.460766 LLDP, length 82 [|LLDP] 17:40:14.460767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0648 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.460769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.460774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.460778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.460781 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.460785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.460789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.460794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.471760 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.471776 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.471780 LLDP, length 82 [|LLDP] 17:40:14.471781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0651 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.471784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.471788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.471792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.471795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.471799 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.471804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.482770 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.482785 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.482790 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.482794 LLDP, length 82 [|LLDP] 17:40:14.482795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0659 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.482797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.482802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.482806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.482809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.482813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.493082 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.493098 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.493102 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.493106 LLDP, length 82 [|LLDP] 17:40:14.493108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065f c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.493110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.493114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.493118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.493121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.493125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.502040 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.502055 LLDP, length 82 [|LLDP] 17:40:14.502056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0668 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.502058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.502063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.502067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.502069 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.502074 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.502078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.502083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.513049 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.513063 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.513067 LLDP, length 82 [|LLDP] 17:40:14.513069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0670 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.513071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.513075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.513079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.513081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.513086 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.513090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.521310 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.521326 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.521331 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.521335 LLDP, length 82 [|LLDP] 17:40:14.521336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.521339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.521343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.521347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.521349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.521354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.532316 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.532329 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.532333 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.532338 LLDP, length 82 [|LLDP] 17:40:14.532339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067f 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.532342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.532346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.532350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.532353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.532358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.540570 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.540584 LLDP, length 82 [|LLDP] 17:40:14.540585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.540587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.540591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.540595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.540598 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.540603 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.540607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.540611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.553745 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.553759 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.553763 LLDP, length 82 [|LLDP] 17:40:14.553764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.553766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.553770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.553774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.553777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.553781 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.553786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.562591 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.562603 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.562607 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.562611 LLDP, length 82 [|LLDP] 17:40:14.562613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0696 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.562614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.562619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.562623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.562625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.562630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.570847 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.570859 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.570863 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.570866 LLDP, length 82 [|LLDP] 17:40:14.570868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069c ab0e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.570870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.570874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.570878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.570881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.570885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.581886 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.581911 LLDP, length 82 [|LLDP] 17:40:14.581913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a5 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.581916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.581920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.581924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.581928 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.581932 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.581936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.581940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.592899 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.592926 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.592931 LLDP, length 82 [|LLDP] 17:40:14.592933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ad 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.592935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.592940 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.592944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.592948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.592952 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.592957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.601134 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.601150 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.601155 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.601159 LLDP, length 82 [|LLDP] 17:40:14.601160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.601162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.601167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.601170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.601173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.601178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.614422 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.614437 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.614441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.614445 LLDP, length 82 [|LLDP] 17:40:14.614447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bc 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.614449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.614454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.614457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.614460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.614465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.620399 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.620414 LLDP, length 82 [|LLDP] 17:40:14.620416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.620418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.620422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.620426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.620429 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.620433 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.620437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.620441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.631407 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.631424 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.631428 LLDP, length 82 [|LLDP] 17:40:14.631430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.631431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.631435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.631439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.631442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.631447 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.631451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.642418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.642434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.642438 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.642442 LLDP, length 82 [|LLDP] 17:40:14.642443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d3 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.642445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.642449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.642453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.642456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.642461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.650671 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.650687 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.650691 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.650696 LLDP, length 82 [|LLDP] 17:40:14.650697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.650699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.650703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.650707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.650710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.650715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.661683 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.661699 LLDP, length 82 [|LLDP] 17:40:14.661700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.661702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.661706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.661710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.661713 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.661717 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.661721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.661726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.675091 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.675105 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.675109 LLDP, length 82 [|LLDP] 17:40:14.675111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ea 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.675112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.675117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.675121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.675124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.675128 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.675132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.680957 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.680976 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.680981 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.680984 LLDP, length 82 [|LLDP] 17:40:14.680986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f0 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.680988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.680993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.680997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.680999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.681004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.691960 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.691975 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.691979 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.691983 LLDP, length 82 [|LLDP] 17:40:14.691984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f9 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.691986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.691990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.691994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.691997 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.692001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.702974 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.702988 LLDP, length 82 [|LLDP] 17:40:14.702990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0701 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.702992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.702996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.703000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.703003 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.703007 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.703011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.703015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.711228 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.711246 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.711250 LLDP, length 82 [|LLDP] 17:40:14.711252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0707 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.711254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.711258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.711262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.711265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.711269 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.711274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.722244 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.722259 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.722263 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.722267 LLDP, length 82 [|LLDP] 17:40:14.722268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0710 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.722270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.722274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.722278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.722281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.722285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.730494 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.730509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.730513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.730518 LLDP, length 82 [|LLDP] 17:40:14.730519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.730521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.730525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.730530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.730532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.730537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.741512 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.741529 LLDP, length 82 [|LLDP] 17:40:14.741531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.741532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.741537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.741541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.741543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.741547 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.741552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.741556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.752516 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.752530 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.752534 LLDP, length 82 [|LLDP] 17:40:14.752536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0727 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.752538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.752542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.752546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.752548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.752552 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.752557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.760775 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.760790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.760794 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.760798 LLDP, length 82 [|LLDP] 17:40:14.760800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.760802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.760806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.760810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.760813 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.760818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.771784 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.771800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.771804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.771808 LLDP, length 82 [|LLDP] 17:40:14.771810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.771812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.771816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.771820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.771823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.771827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.782795 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.782811 LLDP, length 82 [|LLDP] 17:40:14.782812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073e 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.782814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.782819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.782822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.782826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.782830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.782834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.782838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.791053 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.791068 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.791072 LLDP, length 82 [|LLDP] 17:40:14.791073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0744 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.791076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.791080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.791084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.791087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.791091 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.791095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.802062 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.802076 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.802080 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.802084 LLDP, length 82 [|LLDP] 17:40:14.802086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074d 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.802088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.802092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.802096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.802098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.802102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.813073 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.813088 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.813092 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.813096 LLDP, length 82 [|LLDP] 17:40:14.813098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0755 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.813100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.813104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.813108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.813111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.813115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.821331 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.821346 LLDP, length 82 [|LLDP] 17:40:14.821347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075b c4a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.821349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.821354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.821358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.821360 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.821364 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.821368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.821373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.832336 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.832351 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.832355 LLDP, length 82 [|LLDP] 17:40:14.832357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0764 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.832359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.832363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.832367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.832370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.832374 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.832378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.840597 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.840612 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.840617 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.840621 LLDP, length 82 [|LLDP] 17:40:14.840622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.840624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.840628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.840632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.840636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.840640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.851605 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.851620 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.851624 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.851628 LLDP, length 82 [|LLDP] 17:40:14.851630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.851632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.851636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.851640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.851643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.851647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.862617 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.862631 LLDP, length 82 [|LLDP] 17:40:14.862633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077b 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.862635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.862639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.862643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.862646 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.862650 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.862654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.862658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.870873 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.870888 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.870891 LLDP, length 82 [|LLDP] 17:40:14.870894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.870896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.870900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.870904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.870906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.870910 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.870915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.881882 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.881897 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.881901 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.881905 LLDP, length 82 [|LLDP] 17:40:14.881907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.881908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.881912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.881916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.881919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.881923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.892892 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.892907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.892911 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.892915 LLDP, length 82 [|LLDP] 17:40:14.892916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0792 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.892918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.892922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.892926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.892929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.892933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.901148 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.901162 LLDP, length 82 [|LLDP] 17:40:14.901164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0798 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.901166 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.901170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.901174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.901177 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.901181 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.901185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.901189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.912159 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.912173 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.912178 LLDP, length 82 [|LLDP] 17:40:14.912180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a1 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.912182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.912186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.912190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.912193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.912197 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.912201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.920419 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.920434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.920439 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.920442 LLDP, length 82 [|LLDP] 17:40:14.920444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.920446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.920451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.920455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.920458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.920462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.931431 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.931446 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.931450 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.931454 LLDP, length 82 [|LLDP] 17:40:14.931456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07af c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.931458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.931462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.931466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.931469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.931473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.942440 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.942455 LLDP, length 82 [|LLDP] 17:40:14.942457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b8 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.942459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.942463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.942467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.942470 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.942474 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.942479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.942483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.950697 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.950711 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.950715 LLDP, length 82 [|LLDP] 17:40:14.950717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.950719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.950723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.950727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.950730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.950734 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.950739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.961711 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.961728 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.961732 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.961736 LLDP, length 82 [|LLDP] 17:40:14.961737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.961739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.961743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.961747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.961750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.961754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.972718 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.972734 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.972738 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.972742 LLDP, length 82 [|LLDP] 17:40:14.972743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cf 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.972745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.972750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.972754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.972756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.972760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.980979 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.980994 LLDP, length 82 [|LLDP] 17:40:14.980996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.980998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.981002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.981006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.981009 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.981014 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.981018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.981022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:14.991984 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:14.991998 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.992002 LLDP, length 82 [|LLDP] 17:40:14.992004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd f7db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:14.992006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:14.992010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:14.992014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:14.992017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:14.992021 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:14.992025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.002994 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.003008 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.003012 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.003016 LLDP, length 82 [|LLDP] 17:40:15.003018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e6 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.003020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.003024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.003028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.003031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.003035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.011249 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.011265 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.011270 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.011273 LLDP, length 82 [|LLDP] 17:40:15.011275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ec ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.011277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.011282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.011286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.011288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.011293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.022263 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.022277 LLDP, length 82 [|LLDP] 17:40:15.022278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f5 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.022280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.022284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.022288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.022291 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.022295 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.022300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.022304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.030515 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.030528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.030533 LLDP, length 82 [|LLDP] 17:40:15.030534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.030536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.030541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.030545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.030548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.030553 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.030557 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.041526 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.041540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.041544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.041548 LLDP, length 82 [|LLDP] 17:40:15.041549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0803 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.041551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.041555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.041559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.041562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.041567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.052535 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.052548 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.052552 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.052556 LLDP, length 82 [|LLDP] 17:40:15.052557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080c 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.052559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.052563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.052567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.052570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.052574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.060790 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.060801 LLDP, length 82 [|LLDP] 17:40:15.060803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.060805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.060809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.060813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.060816 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.060820 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.060823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.060828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.071801 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.071813 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.071818 LLDP, length 82 [|LLDP] 17:40:15.071819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a de3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.071821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.071825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.071829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.071832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.071835 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.071840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.082817 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.082839 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.082844 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.082849 LLDP, length 82 [|LLDP] 17:40:15.082850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0823 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.082853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.082857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.082861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.082864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.082868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.091077 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.091090 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.091094 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.091098 LLDP, length 82 [|LLDP] 17:40:15.091100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 916f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.091101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.091106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.091109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.091113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.091117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.102173 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.102222 LLDP, length 82 [|LLDP] 17:40:15.102230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.102232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.102239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.102243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.102249 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.102254 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.102258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.102264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.113142 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.113198 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.113204 LLDP, length 82 [|LLDP] 17:40:15.113206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083a 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.113209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.113214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.113218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.113223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.113228 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.113233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.121391 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.121427 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.121433 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.121437 LLDP, length 82 [|LLDP] 17:40:15.121439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0840 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.121441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.121446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.121450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.121454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.121459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.132377 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.132402 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.132407 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.132411 LLDP, length 82 [|LLDP] 17:40:15.132413 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0849 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.132415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.132420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.132424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.132427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.132432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.140632 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.140653 LLDP, length 82 [|LLDP] 17:40:15.140655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.140657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.140661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.140665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.140668 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.140673 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.140677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.140681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.151638 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.151654 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.151658 LLDP, length 82 [|LLDP] 17:40:15.151660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0857 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.151662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.151666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.151670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.151674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.151678 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.151683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.162639 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.162660 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.162664 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.162668 LLDP, length 82 [|LLDP] 17:40:15.162670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0860 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.162673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.162677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.162681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.162684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.162689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.170902 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.170918 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.170922 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.170926 LLDP, length 82 [|LLDP] 17:40:15.170928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.170930 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.170934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.170938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.170941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.170945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.181921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.181938 LLDP, length 82 [|LLDP] 17:40:15.181940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.181942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.181946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.181950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.181954 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.181958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.181963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.181967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.192923 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.192941 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.192945 LLDP, length 82 [|LLDP] 17:40:15.192946 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0877 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.192948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.192952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.192956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.192959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.192963 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.192968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.201171 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.201186 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.201190 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.201194 LLDP, length 82 [|LLDP] 17:40:15.201196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.201198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.201202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.201206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.201209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.201213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.212192 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.212207 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.212211 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.212215 LLDP, length 82 [|LLDP] 17:40:15.212216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.212218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.212222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.212226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.212229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.212234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.220445 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.220458 LLDP, length 82 [|LLDP] 17:40:15.220460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.220462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.220466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.220470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.220473 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.220477 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.220481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.220485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.231450 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.231463 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.231467 LLDP, length 82 [|LLDP] 17:40:15.231468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0894 ab06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.231470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.231474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.231478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.231481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.231485 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.231489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.242460 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.242474 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.242478 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.242482 LLDP, length 82 [|LLDP] 17:40:15.242484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089d 1174 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.242486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.242490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.242494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.242497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.242501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.250712 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.250726 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.250730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.250734 LLDP, length 82 [|LLDP] 17:40:15.250735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.250737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.250742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.250746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.250749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.250753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.261726 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.261740 LLDP, length 82 [|LLDP] 17:40:15.261741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ab c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.261743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.261748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.261752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.261754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.261759 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.261763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.261768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.272737 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.272751 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.272755 LLDP, length 82 [|LLDP] 17:40:15.272757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b4 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.272759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.272763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.272767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.272770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.272774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.272778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.280997 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.281011 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.281015 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.281019 LLDP, length 82 [|LLDP] 17:40:15.281020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.281022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.281026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.281030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.281033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.281037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.292003 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.292017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.292022 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.292026 LLDP, length 82 [|LLDP] 17:40:15.292027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.292029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.292033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.292037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.292040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.292044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.303010 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.303024 LLDP, length 82 [|LLDP] 17:40:15.303025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cb 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.303027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.303031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.303035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.303038 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.303042 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.303046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.303050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.311271 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.311285 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.311290 LLDP, length 82 [|LLDP] 17:40:15.311291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.311293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.311298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.311309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.311313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.311318 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.311322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.322279 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.322293 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.322297 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.322301 LLDP, length 82 [|LLDP] 17:40:15.322303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 f7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.322305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.322309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.322313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.322317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.322321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.330538 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.330552 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.330556 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.330560 LLDP, length 82 [|LLDP] 17:40:15.330561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.330564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.330568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.330572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.330575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.330579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.341552 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.341566 LLDP, length 82 [|LLDP] 17:40:15.341567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e8 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.341569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.341573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.341577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.341580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.341585 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.341589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.341593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.352562 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.352577 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.352581 LLDP, length 82 [|LLDP] 17:40:15.352583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f1 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.352585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.352589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.352592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.352595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.352599 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.352604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.360812 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.360826 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.360830 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.360834 LLDP, length 82 [|LLDP] 17:40:15.360835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.360837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.360841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.360845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.360847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.360852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.371822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.371835 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.371839 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.371843 LLDP, length 82 [|LLDP] 17:40:15.371845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ff c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.371847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.371851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.371855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.371857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.371861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.382834 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.382847 LLDP, length 82 [|LLDP] 17:40:15.382848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0908 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.382850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.382854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.382858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.382861 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.382865 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.382869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.382874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.391092 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.391106 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.391111 LLDP, length 82 [|LLDP] 17:40:15.391112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.391115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.391119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.391123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.391127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.391131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.391136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.402121 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.402143 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.402148 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.402152 LLDP, length 82 [|LLDP] 17:40:15.402154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.402156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.402160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.402164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.402168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.402172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.410373 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.410393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.410397 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.410401 LLDP, length 82 [|LLDP] 17:40:15.410404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091d 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.410406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.410410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.410415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.410418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.410422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.421380 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.421399 LLDP, length 82 [|LLDP] 17:40:15.421401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0925 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.421403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.421407 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.421411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.421415 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.421419 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.421423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.421428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.432386 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.432404 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.432408 LLDP, length 82 [|LLDP] 17:40:15.432410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.432412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.432416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.432419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.432423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.432427 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.432432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.440640 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.440656 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.440660 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.440664 LLDP, length 82 [|LLDP] 17:40:15.440666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 44a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.440668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.440672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.440676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.440678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.440683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.451649 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.451665 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.451670 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.451674 LLDP, length 82 [|LLDP] 17:40:15.451675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093c ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.451678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.451682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.451686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.451689 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.451693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.462662 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.462678 LLDP, length 82 [|LLDP] 17:40:15.462680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0945 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.462682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.462686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.462691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.462694 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.462698 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.462703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.462707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.470920 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.470935 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.470939 LLDP, length 82 [|LLDP] 17:40:15.470941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.470942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.470947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.470951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.470954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.470958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.470963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.481934 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.481953 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.481957 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.481962 LLDP, length 82 [|LLDP] 17:40:15.481963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0953 c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.481965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.481970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.481974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.481978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.481983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.492941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.492959 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.492964 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.492968 LLDP, length 82 [|LLDP] 17:40:15.492969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095c 2b0f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.492971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.492976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.492980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.492982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.492994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.501198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.501214 LLDP, length 82 [|LLDP] 17:40:15.501215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.501217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.501221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.501225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.501228 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.501232 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.501237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.501241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.512212 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.512228 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.512232 LLDP, length 82 [|LLDP] 17:40:15.512234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.512236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.512240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.512244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.512247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.512251 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.512255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.523977 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.523991 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.523995 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.523999 LLDP, length 82 [|LLDP] 17:40:15.524000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0971 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.524003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.524007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.524011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.524014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.524019 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.531469 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.531483 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.531487 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.531491 LLDP, length 82 [|LLDP] 17:40:15.531492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0979 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.531495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.531499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.531503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.531505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.531509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.542480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.542494 LLDP, length 82 [|LLDP] 17:40:15.542496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.542498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.542502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.542506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.542509 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.542513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.542517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.542521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.550739 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.550754 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.550758 LLDP, length 82 [|LLDP] 17:40:15.550760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.550761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.550766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.550769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.550772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.550776 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.550781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.561749 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.561762 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.561766 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.561770 LLDP, length 82 [|LLDP] 17:40:15.561772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0990 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.561773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.561778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.561782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.561786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.561790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.572766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.572781 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.572785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.572789 LLDP, length 82 [|LLDP] 17:40:15.572791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0999 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.572792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.572797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.572801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.572804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.572808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.584572 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.584587 LLDP, length 82 [|LLDP] 17:40:15.584588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.584590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.584594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.584598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.584601 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.584605 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.584609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.584613 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.592022 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.592035 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.592039 LLDP, length 82 [|LLDP] 17:40:15.592041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a7 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.592043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.592047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.592051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.592054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.592058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.592062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.603033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.603046 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.603050 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.603054 LLDP, length 82 [|LLDP] 17:40:15.603056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b0 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.603057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.603062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.603066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.603068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.603072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.611340 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.611368 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.611373 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.611377 LLDP, length 82 [|LLDP] 17:40:15.611379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.611381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.611386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.611390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.611393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.611398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.622312 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.622328 LLDP, length 82 [|LLDP] 17:40:15.622330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.622332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.622336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.622340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.622343 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.622347 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.622351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.622356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.630565 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.630580 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.630584 LLDP, length 82 [|LLDP] 17:40:15.630586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c5 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.630588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.630592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.630596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.630599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.630603 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.630607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.645204 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.645224 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.645229 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.645233 LLDP, length 82 [|LLDP] 17:40:15.645235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cd 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.645237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.645241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.645245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.645249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.645253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.652579 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.652593 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.652598 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.652602 LLDP, length 82 [|LLDP] 17:40:15.652603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.652605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.652609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.652613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.652616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.652620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.660835 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.660848 LLDP, length 82 [|LLDP] 17:40:15.660850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.660851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.660855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.660859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.660862 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.660866 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.660871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.660875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.671848 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.671864 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.671868 LLDP, length 82 [|LLDP] 17:40:15.671870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e4 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.671872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.671876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.671880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.671883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.671887 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.671891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.682856 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.682870 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.682874 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.682877 LLDP, length 82 [|LLDP] 17:40:15.682879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ed 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.682881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.682886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.682890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.682892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.682897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.691112 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.691125 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.691130 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.691134 LLDP, length 82 [|LLDP] 17:40:15.691135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 5e41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.691137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.691142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.691145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.691148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.691152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.705789 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.705803 LLDP, length 82 [|LLDP] 17:40:15.705804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fb c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.705806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.705810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.705814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.705817 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.705821 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.705826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.705830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.710381 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.710393 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.710397 LLDP, length 82 [|LLDP] 17:40:15.710398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a02 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.710400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.710404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.710408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.710411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.710415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.710420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.721388 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.721402 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.721407 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.721411 LLDP, length 82 [|LLDP] 17:40:15.721412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0a 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.721414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.721418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.721422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.721425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.721429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.732403 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.732416 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.732420 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.732424 LLDP, length 82 [|LLDP] 17:40:15.732426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.732427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.732431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.732435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.732438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.732443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.740659 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.740672 LLDP, length 82 [|LLDP] 17:40:15.740673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a19 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.740675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.740679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.740683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.740685 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.740689 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.740693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.740697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.751667 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.751680 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.751684 LLDP, length 82 [|LLDP] 17:40:15.751685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a21 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.751687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.751692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.751695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.751698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.751702 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.751706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.762677 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.762690 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.762694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.762698 LLDP, length 82 [|LLDP] 17:40:15.762699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.762701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.762705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.762709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.762711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.762716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.770935 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.770947 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.770952 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.770956 LLDP, length 82 [|LLDP] 17:40:15.770957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.770959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.770964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.770967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.770970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.770974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.781945 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.781964 LLDP, length 82 [|LLDP] 17:40:15.781965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a38 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.781967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.781972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.781976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.781979 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.781983 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.781987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.781991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.792955 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.792968 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.792972 LLDP, length 82 [|LLDP] 17:40:15.792974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a41 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.792976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.792980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.792984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.792987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.792991 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.792995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.801221 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.801241 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.801246 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.801250 LLDP, length 82 [|LLDP] 17:40:15.801252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.801254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.801259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.801263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.801267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.801271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.812225 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.812239 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.812243 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.812247 LLDP, length 82 [|LLDP] 17:40:15.812248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4f c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.812250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.812254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.812258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.812261 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.812265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.820481 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.820494 LLDP, length 82 [|LLDP] 17:40:15.820495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a56 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.820497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.820501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.820505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.820508 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.820513 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.820517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.820522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.831492 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.831506 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.831510 LLDP, length 82 [|LLDP] 17:40:15.831512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5e 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.831514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.831518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.831522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.831524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.831528 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.831533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.842502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.842515 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.842519 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.842523 LLDP, length 82 [|LLDP] 17:40:15.842524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.842526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.842530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.842534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.842537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.842541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.850756 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.850770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.850773 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.850778 LLDP, length 82 [|LLDP] 17:40:15.850779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6d 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.850781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.850785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.850789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.850792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.850796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.861764 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.861779 LLDP, length 82 [|LLDP] 17:40:15.861780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a75 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.861782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.861786 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.861790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.861793 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.861797 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.861802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.861806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.872779 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.872791 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.872796 LLDP, length 82 [|LLDP] 17:40:15.872797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.872799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.872804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.872808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.872811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.872815 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.872819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.881033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.881045 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.881049 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.881053 LLDP, length 82 [|LLDP] 17:40:15.881054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.881056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.881061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.881065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.881068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.881072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.892044 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.892058 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.892062 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.892066 LLDP, length 82 [|LLDP] 17:40:15.892068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8c ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.892069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.892074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.892078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.892081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.892085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.900303 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.900316 LLDP, length 82 [|LLDP] 17:40:15.900318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.900320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.900324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.900328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.900330 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.900334 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.900339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.900343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.911318 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.911331 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.911335 LLDP, length 82 [|LLDP] 17:40:15.911336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9b 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.911338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.911342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.911346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.911348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.911352 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.911357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.922320 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.922335 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.922338 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.922342 LLDP, length 82 [|LLDP] 17:40:15.922344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.922346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.922350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.922354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.922357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.922361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.930580 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.930593 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.930597 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.930601 LLDP, length 82 [|LLDP] 17:40:15.930603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaa 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.930605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.930609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.930613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.930616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.930621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.941587 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.941601 LLDP, length 82 [|LLDP] 17:40:15.941602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab2 77dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.941604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.941608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.941612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.941615 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.941619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.941623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.941627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.952601 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.952614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.952618 LLDP, length 82 [|LLDP] 17:40:15.952620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.952621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.952626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.952629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.952633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.952637 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.952641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.960871 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.960889 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.960893 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.960897 LLDP, length 82 [|LLDP] 17:40:15.960899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac1 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.960901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.960905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.960909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.960912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.960917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.971877 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.971895 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.971900 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.971904 LLDP, length 82 [|LLDP] 17:40:15.971905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac9 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.971907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.971911 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.971915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.971918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.971922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.982879 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.982893 LLDP, length 82 [|LLDP] 17:40:15.982894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.982896 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.982900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.982904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.982907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.982911 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.982915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.982920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:15.991138 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:15.991153 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.991158 LLDP, length 82 [|LLDP] 17:40:15.991159 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:15.991161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:15.991166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:15.991170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:15.991173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:15.991177 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:15.991181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.002144 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.002157 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.002161 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.002165 LLDP, length 82 [|LLDP] 17:40:16.002166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae0 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.002168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.002172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.002176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.002179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.002183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.012946 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.012959 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.012963 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.012967 LLDP, length 82 [|LLDP] 17:40:16.012968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.012970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.012974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.012978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.012981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.012985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.021412 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.021424 LLDP, length 82 [|LLDP] 17:40:16.021425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aef 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.021427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.021431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.021435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.021438 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.021442 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.021446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.021451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.032422 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.032434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.032438 LLDP, length 82 [|LLDP] 17:40:16.032439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af7 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.032441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.032445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.032449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.032451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.032455 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.032459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.040676 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.040690 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.040694 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.040698 LLDP, length 82 [|LLDP] 17:40:16.040699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afe 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.040701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.040706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.040710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.040712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.040716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.051690 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.051703 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.051707 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.051711 LLDP, length 82 [|LLDP] 17:40:16.051712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b06 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.051714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.051718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.051722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.051725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.051729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.062697 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.062710 LLDP, length 82 [|LLDP] 17:40:16.062711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.062713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.062717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.062721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.062724 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.062728 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.062732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.062736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.073574 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.073587 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.073592 LLDP, length 82 [|LLDP] 17:40:16.073593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b15 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.073595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.073599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.073603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.073605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.073609 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.073614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.081965 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.081978 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.081982 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.081986 LLDP, length 82 [|LLDP] 17:40:16.081987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1d 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.081989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.081993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.081997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.082000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.082004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.092976 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.092988 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.092992 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.092996 LLDP, length 82 [|LLDP] 17:40:16.092997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.092999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.093003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.093007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.093009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.093021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.101232 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.101246 LLDP, length 82 [|LLDP] 17:40:16.101248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.101249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.101254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.101258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.101260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.101264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.101268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.101273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.112242 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.112255 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.112260 LLDP, length 82 [|LLDP] 17:40:16.112261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b34 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.112263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.112267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.112272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.112275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.112279 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.112283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.120502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.120514 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.120518 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.120523 LLDP, length 82 [|LLDP] 17:40:16.120524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.120526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.120530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.120534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.120537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.120542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.134197 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.134210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.134214 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.134218 LLDP, length 82 [|LLDP] 17:40:16.134219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b43 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.134221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.134226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.134229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.134232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.134236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.142522 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.142532 LLDP, length 82 [|LLDP] 17:40:16.142533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4b c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.142535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.142539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.142543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.142546 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.142549 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.142554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.142559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.150777 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.150790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.150795 LLDP, length 82 [|LLDP] 17:40:16.150797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b52 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.150799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.150803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.150807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.150810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.150815 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.150819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.161788 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.161800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.161804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.161809 LLDP, length 82 [|LLDP] 17:40:16.161810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5a 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.161812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.161816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.161820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.161822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.161826 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.172799 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.172812 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.172816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.172820 LLDP, length 82 [|LLDP] 17:40:16.172822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.172823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.172827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.172831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.172834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.172839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.181055 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.181068 LLDP, length 82 [|LLDP] 17:40:16.181069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b69 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.181072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.181076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.181080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.181082 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.181087 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.181091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.181095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.194839 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.194852 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.194856 LLDP, length 82 [|LLDP] 17:40:16.194857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b71 9175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.194859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.194863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.194868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.194870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.194875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.194879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.200323 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.200337 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.200341 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.200345 LLDP, length 82 [|LLDP] 17:40:16.200347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 de3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.200348 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.200353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.200357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.200359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.200364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.211342 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.211354 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.211359 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.211362 LLDP, length 82 [|LLDP] 17:40:16.211364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b80 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.211366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.211370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.211374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.211377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.211382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.222342 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.222354 LLDP, length 82 [|LLDP] 17:40:16.222356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b88 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.222357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.222361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.222365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.222368 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.222372 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.222376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.222381 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.230601 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.230614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.230618 LLDP, length 82 [|LLDP] 17:40:16.230620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e f7d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.230622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.230626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.230630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.230632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.230636 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.230641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.241612 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.241625 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.241629 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.241632 LLDP, length 82 [|LLDP] 17:40:16.241634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b97 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.241636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.241640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.241644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.241646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.241651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.255504 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.255518 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.255522 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.255526 LLDP, length 82 [|LLDP] 17:40:16.255528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9f c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.255530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.255534 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.255538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.255540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.255544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.260875 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.260887 LLDP, length 82 [|LLDP] 17:40:16.260889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba6 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.260890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.260894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.260898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.260901 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.260905 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.260909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.260914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.271888 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.271900 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.271904 LLDP, length 82 [|LLDP] 17:40:16.271906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bae 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.271908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.271912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.271916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.271919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.271923 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.271927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.282897 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.282909 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.282913 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.282917 LLDP, length 82 [|LLDP] 17:40:16.282919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.282921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.282925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.282929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.282931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.282936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.291158 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.291170 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.291174 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.291178 LLDP, length 82 [|LLDP] 17:40:16.291179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbd 2b06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.291181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.291185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.291189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.291192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.291196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.302164 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.302177 LLDP, length 82 [|LLDP] 17:40:16.302179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc5 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.302180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.302184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.302188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.302192 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.302196 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.302200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.302204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.310429 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.310442 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.310446 LLDP, length 82 [|LLDP] 17:40:16.310447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb de41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.310449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.310453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.310457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.310460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.310464 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.310468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.321435 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.321448 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.321452 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.321456 LLDP, length 82 [|LLDP] 17:40:16.321458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd4 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.321460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.321464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.321468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.321470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.321475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.332444 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.332456 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.332460 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.332464 LLDP, length 82 [|LLDP] 17:40:16.332466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdc ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.332468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.332472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.332476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.332478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.332482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.340699 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.340711 LLDP, length 82 [|LLDP] 17:40:16.340713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.340715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.340719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.340723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.340726 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.340730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.340734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.340738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.351710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.351723 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.351727 LLDP, length 82 [|LLDP] 17:40:16.351729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0beb 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.351731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.351735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.351747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.351750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.351755 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.351760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.362720 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.362733 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.362737 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.362742 LLDP, length 82 [|LLDP] 17:40:16.362743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf3 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.362745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.362749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.362753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.362757 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.362761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.370978 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.370991 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.370995 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.370999 LLDP, length 82 [|LLDP] 17:40:16.371000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfa 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.371002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.371006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.371010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.371013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.371017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.381989 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.382003 LLDP, length 82 [|LLDP] 17:40:16.382004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c02 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.382006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.382010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.382015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.382017 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.382021 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.382025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.382030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.393001 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.393014 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.393018 LLDP, length 82 [|LLDP] 17:40:16.393019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.393021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.393025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.393029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.393032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.393036 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.393041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.401264 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.401277 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.401281 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.401285 LLDP, length 82 [|LLDP] 17:40:16.401287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c11 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.401289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.401293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.401297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.401300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.401304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.412263 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.412276 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.412280 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.412284 LLDP, length 82 [|LLDP] 17:40:16.412285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c19 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.412287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.412291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.412295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.412297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.412302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.420523 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.420535 LLDP, length 82 [|LLDP] 17:40:16.420537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.420539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.420544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.420548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.420551 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.420555 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.420559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.420563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.431531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.431544 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.431548 LLDP, length 82 [|LLDP] 17:40:16.431550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c28 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.431551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.431555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.431560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.431563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.431566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.431571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.442547 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.442559 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.442564 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.442568 LLDP, length 82 [|LLDP] 17:40:16.442570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c30 ab0d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.442572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.442576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.442580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.442583 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.442587 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.450800 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.450812 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.450816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.450820 LLDP, length 82 [|LLDP] 17:40:16.450822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 f7d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.450824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.450828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.450832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.450835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.450839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.461810 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.461823 LLDP, length 82 [|LLDP] 17:40:16.461825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3f 5e3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.461826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.461830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.461834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.461837 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.461841 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.461845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.461849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.472823 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.472836 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.472840 LLDP, length 82 [|LLDP] 17:40:16.472841 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c47 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.472843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.472847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.472851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.472853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.472857 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.472862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.481094 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.481114 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.481119 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.481123 LLDP, length 82 [|LLDP] 17:40:16.481125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4e 116f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.481127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.481132 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.481136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.481138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.481143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.492097 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.492114 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.492118 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.492122 LLDP, length 82 [|LLDP] 17:40:16.492123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c56 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.492125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.492130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.492134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.492137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.492141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.500351 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.500366 LLDP, length 82 [|LLDP] 17:40:16.500368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5c c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.500370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.500374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.500378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.500381 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.500385 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.500389 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.500394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.511365 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.511396 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.511401 LLDP, length 82 [|LLDP] 17:40:16.511402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c65 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.511405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.511409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.511413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.511416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.511421 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.511426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.522373 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.522388 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.522392 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.522396 LLDP, length 82 [|LLDP] 17:40:16.522397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6d 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.522400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.522404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.522408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.522411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.522415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.530626 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.530640 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.530644 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.530648 LLDP, length 82 [|LLDP] 17:40:16.530650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.530652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.530656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.530660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.530663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.530668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.541635 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.541650 LLDP, length 82 [|LLDP] 17:40:16.541651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7c 44a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.541653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.541657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.541661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.541664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.541669 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.541673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.541677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.552651 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.552668 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.552672 LLDP, length 82 [|LLDP] 17:40:16.552674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c84 ab08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.552676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.552680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.552684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.552687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.552691 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.552695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.560905 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.560920 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.560924 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.560928 LLDP, length 82 [|LLDP] 17:40:16.560929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a f7dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.560932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.560936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.560939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.560942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.560947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.571921 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.571936 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.571940 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.571944 LLDP, length 82 [|LLDP] 17:40:16.571945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c93 5e3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.571947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.571951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.571955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.571958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.571962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.582923 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.582938 LLDP, length 82 [|LLDP] 17:40:16.582940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9b c4a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.582942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.582946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.582950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.582953 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.582957 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.582961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.582966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.591180 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.591193 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.591197 LLDP, length 82 [|LLDP] 17:40:16.591199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca2 116e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.591200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.591205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.591208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.591212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.591216 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.591220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.602187 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.602200 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.602204 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.602208 LLDP, length 82 [|LLDP] 17:40:16.602209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caa 77d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.602211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.602215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.602219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.602222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.602226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.610447 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.610459 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.610463 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.610467 LLDP, length 82 [|LLDP] 17:40:16.610469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb0 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.610471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.610475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.610479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.610481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.610485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.621456 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.621469 LLDP, length 82 [|LLDP] 17:40:16.621470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb9 2b08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.621472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.621476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.621480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.621482 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.621487 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.621490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.621495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.632502 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.632528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.632533 LLDP, length 82 [|LLDP] 17:40:16.632535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc1 916e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.632537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.632542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.632546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.632550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.632554 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.632559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.640747 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.640770 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.640774 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.640779 LLDP, length 82 [|LLDP] 17:40:16.640781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 de3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.640783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.640788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.640792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.640796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.640801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.651740 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.651755 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.651760 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.651764 LLDP, length 82 [|LLDP] 17:40:16.651766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd0 44a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.651768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.651772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.651776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.651779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.651783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.662746 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.662759 LLDP, length 82 [|LLDP] 17:40:16.662760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd8 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.662762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.662766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.662770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.662773 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.662777 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.662781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.662785 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.670999 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.671013 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.671017 LLDP, length 82 [|LLDP] 17:40:16.671018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde f7d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.671020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.671024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.671028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.671032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.671036 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.671040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.682012 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.682026 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.682030 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.682034 LLDP, length 82 [|LLDP] 17:40:16.682035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce7 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.682037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.682041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.682046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.682049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.682053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.690277 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.690290 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.690294 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.690299 LLDP, length 82 [|LLDP] 17:40:16.690300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ced ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.690302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.690306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.690310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.690312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.690317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.701279 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.701294 LLDP, length 82 [|LLDP] 17:40:16.701296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf6 116d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.701298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.701302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.701306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.701309 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.701313 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.701317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.701321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.712294 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.712308 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.712312 LLDP, length 82 [|LLDP] 17:40:16.712313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfe 77d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.712315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.712319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.712323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.712326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.712330 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.712334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.720541 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.720554 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.720559 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.720563 LLDP, length 82 [|LLDP] 17:40:16.720564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d04 c4a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.720566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.720571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.720575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.720578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.720582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.731551 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.731564 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.731568 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.731572 LLDP, length 82 [|LLDP] 17:40:16.731574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0d 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.731576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.731580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.731584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.731587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.731592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.742565 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.742578 LLDP, length 82 [|LLDP] 17:40:16.742579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d15 916d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.742581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.742585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.742589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.742592 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.742596 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.742600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.742604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.750821 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.750833 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.750837 LLDP, length 82 [|LLDP] 17:40:16.750839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b de3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.750840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.750844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.750849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.750852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.750856 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.750860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.761835 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.761850 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.761854 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.761858 LLDP, length 82 [|LLDP] 17:40:16.761859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d24 44a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.761861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.761865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.761869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.761872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.761876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.772841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.772855 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.772859 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.772863 LLDP, length 82 [|LLDP] 17:40:16.772864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2c ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.772866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.772870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.772874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.772877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.772882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.781099 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.781112 LLDP, length 82 [|LLDP] 17:40:16.781113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 f7d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.781115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.781119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.781123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.781126 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.781130 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.781134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.781138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.792110 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.792123 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.792127 LLDP, length 82 [|LLDP] 17:40:16.792128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3b 5e3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.792130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.792135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.792139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.792142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.792146 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.792151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.800370 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.800384 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.800388 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.800392 LLDP, length 82 [|LLDP] 17:40:16.800394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d41 ab07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.800396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.800400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.800404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.800407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.800411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.811375 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.811389 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.811393 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.811397 LLDP, length 82 [|LLDP] 17:40:16.811399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4a 1175 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.811401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.811405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.811409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.811412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.811416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.822384 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.822397 LLDP, length 82 [|LLDP] 17:40:16.822398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d52 77d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.822400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.822404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.822408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.822411 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.822415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.822419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.822424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.830642 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.830655 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.830659 LLDP, length 82 [|LLDP] 17:40:16.830660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d58 c4a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.830662 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.830666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.830669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.830672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.830676 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.830680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.841656 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.841669 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.841673 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.841677 LLDP, length 82 [|LLDP] 17:40:16.841679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d61 2b07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.841681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.841685 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.841689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.841692 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.841696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.852663 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.852675 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.852679 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.852683 LLDP, length 82 [|LLDP] 17:40:16.852685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d69 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.852687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.852691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.852695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.852698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.852702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.860924 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.860937 LLDP, length 82 [|LLDP] 17:40:16.860938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f de5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.860940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.860944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.860948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.860951 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.860955 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.860959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.860963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.871939 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.871952 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.871956 LLDP, length 82 [|LLDP] 17:40:16.871957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d78 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.871959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.871964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.871968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.871970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.871974 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.871979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.882941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.882954 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.882958 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.882962 LLDP, length 82 [|LLDP] 17:40:16.882963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d80 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.882965 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.882970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.882974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.882976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.882981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.891200 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.891213 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.891217 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.891221 LLDP, length 82 [|LLDP] 17:40:16.891222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.891224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.891228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.891232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.891235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.891239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.902209 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.902222 LLDP, length 82 [|LLDP] 17:40:16.902224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8f 5e63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.902225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.902229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.902233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.902236 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.902240 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.902245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.902249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.910465 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.910478 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.910482 LLDP, length 82 [|LLDP] 17:40:16.910483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d95 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.910485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.910489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.910492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.910495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.910499 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.910504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.921480 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.921493 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.921497 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.921501 LLDP, length 82 [|LLDP] 17:40:16.921502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9e 1190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.921504 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.921508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.921513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.921516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.921520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.932485 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.932499 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.932504 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.932508 LLDP, length 82 [|LLDP] 17:40:16.932509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da6 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.932511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.932515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.932519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.932522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.932526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.940745 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.940758 LLDP, length 82 [|LLDP] 17:40:16.940759 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dac c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.940761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.940765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.940769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.940771 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.940775 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.940779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.940784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.951757 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.951771 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.951775 LLDP, length 82 [|LLDP] 17:40:16.951776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db5 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.951778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.951782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.951786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.951789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.951793 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.951798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.962781 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.962799 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.962803 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.962807 LLDP, length 82 [|LLDP] 17:40:16.962809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbd 9190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.962811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.962816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.962820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.962823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.962827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.971026 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.971040 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.971044 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.971048 LLDP, length 82 [|LLDP] 17:40:16.971050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.971052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.971056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.971060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.971063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.971067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.982034 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.982047 LLDP, length 82 [|LLDP] 17:40:16.982049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcc 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.982051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.982054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.982058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.982061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.982065 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.982069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.982074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:16.990290 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:16.990303 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.990307 LLDP, length 82 [|LLDP] 17:40:16.990309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:16.990311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:16.990315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:16.990318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:16.990322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:16.990326 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:16.990330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.001298 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.001310 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.001314 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.001318 LLDP, length 82 [|LLDP] 17:40:17.001319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda f7f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.001321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.001325 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.001329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.001332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.001336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.012307 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.012320 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.012324 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.012328 LLDP, length 82 [|LLDP] 17:40:17.012330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de3 5e5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.012331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.012336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.012340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.012343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.012347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.020568 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.020580 LLDP, length 82 [|LLDP] 17:40:17.020581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de9 ab28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.020583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.020587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.020591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.020594 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.020598 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.020602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.020606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.031576 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.031596 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.031600 LLDP, length 82 [|LLDP] 17:40:17.031602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df2 118e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.031604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.031608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.031612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.031615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.031619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.031623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.042591 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.042605 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.042609 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.042613 LLDP, length 82 [|LLDP] 17:40:17.042614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfa 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.042616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.042621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.042625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.042627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.042632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.050839 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.050852 LLDP, length 82 [|LLDP] 17:40:17.050853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e00 c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.050855 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.050859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.061853 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.061865 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.061869 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.061874 LLDP, length 82 [|LLDP] 17:40:17.061875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e09 2b28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.061877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.061882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.061886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.061888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.061892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.072862 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.072876 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.072880 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.072884 LLDP, length 82 [|LLDP] 17:40:17.072886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e11 918e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.072888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.072892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.072897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.072899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.072904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.081124 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.081137 LLDP, length 82 [|LLDP] 17:40:17.081138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.081140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.081145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.081149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.081152 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.081156 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.081161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.081165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.092132 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.092145 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.092149 LLDP, length 82 [|LLDP] 17:40:17.092150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e20 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.092152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.092156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.092160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.092163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.092167 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.092172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.100394 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.100407 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.100411 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.100415 LLDP, length 82 [|LLDP] 17:40:17.100417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 9196 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.100419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.100422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.100426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.100429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.100434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.111397 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.111410 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.111414 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.111418 LLDP, length 82 [|LLDP] 17:40:17.111420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.111421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.111425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.111429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.111432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.111436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.122409 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.122423 LLDP, length 82 [|LLDP] 17:40:17.122424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e37 5e5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.122426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.122430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.122434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.122437 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.122441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.122445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.122449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.130668 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.130681 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.130685 LLDP, length 82 [|LLDP] 17:40:17.130686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3d ab28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.130688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.130692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.130696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.130699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.130702 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.130707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.141676 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.141689 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.141693 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.141697 LLDP, length 82 [|LLDP] 17:40:17.141699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e46 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.141701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.141705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.141709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.141711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.141715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.152688 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.152702 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.152706 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.152710 LLDP, length 82 [|LLDP] 17:40:17.152711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4e 77fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.152713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.152717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.152722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.152725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.152729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.160945 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.160958 LLDP, length 82 [|LLDP] 17:40:17.160959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e54 c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.160961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.160965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.160969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.160972 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.160976 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.160980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.160985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.171955 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.171968 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.171972 LLDP, length 82 [|LLDP] 17:40:17.171974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5d 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.171975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.171980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.171984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.171987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.171990 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.171995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.180224 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.180244 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.180249 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.180254 LLDP, length 82 [|LLDP] 17:40:17.180255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.180257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.180262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.180266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.180269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.180274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.191228 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.191244 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.191248 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.191252 LLDP, length 82 [|LLDP] 17:40:17.191253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.191255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.191260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.191264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.191267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.191271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.202237 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.202254 LLDP, length 82 [|LLDP] 17:40:17.202255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e74 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.202257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.202261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.202265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.202268 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.202272 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.202276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.202281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.210494 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.210510 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.210513 LLDP, length 82 [|LLDP] 17:40:17.210515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.210517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.210521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.210525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.210528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.210532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.210536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.221501 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.221522 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.221526 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.221530 LLDP, length 82 [|LLDP] 17:40:17.221531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 f7f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.221534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.221538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.221542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.221545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.221549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.232510 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.232528 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.232532 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.232536 LLDP, length 82 [|LLDP] 17:40:17.232538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8b 5e5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.232540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.232544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.232548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.232551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.232555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.240766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.240780 LLDP, length 82 [|LLDP] 17:40:17.240782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e91 ab2a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.240783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.240788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.240792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.240794 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.240799 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.240803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.240807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.251779 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.251793 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.251797 LLDP, length 82 [|LLDP] 17:40:17.251799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9a 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.251801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.251806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.251810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.251812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.251816 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.251820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.262786 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.262800 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.262804 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.262808 LLDP, length 82 [|LLDP] 17:40:17.262810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea2 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.262812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.262816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.262820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.262823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.262827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.271044 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.271057 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.271061 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.271065 LLDP, length 82 [|LLDP] 17:40:17.271067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea8 c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.271068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.271073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.271076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.271080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.271084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.282066 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.282080 LLDP, length 82 [|LLDP] 17:40:17.282082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb1 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.282084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.282088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.282092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.282095 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.282099 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.282104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.282108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.290309 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.290320 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.290324 LLDP, length 82 [|LLDP] 17:40:17.290326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.290328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.290332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.290337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.290339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.290343 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.290348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.301322 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.301333 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.301337 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.301342 LLDP, length 82 [|LLDP] 17:40:17.301343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf de5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.301345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.301349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.301354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.301356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.301360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.312330 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.312341 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.312345 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.312349 LLDP, length 82 [|LLDP] 17:40:17.312351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec8 44c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.312352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.312357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.312361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.312363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.312367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.320582 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.320592 LLDP, length 82 [|LLDP] 17:40:17.320593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece 9190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.320595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.320599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.320603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.320606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.320610 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.320614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.320618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.331596 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.331606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.331610 LLDP, length 82 [|LLDP] 17:40:17.331611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 f7f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.331614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.331618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.331622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.331624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.331628 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.331632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.342603 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.342614 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.342618 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.342622 LLDP, length 82 [|LLDP] 17:40:17.342623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edf 5e5d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.342625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.342629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.342633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.342636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.342640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.350861 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.350871 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.350875 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.350879 LLDP, length 82 [|LLDP] 17:40:17.350880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee5 ab2e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.350882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.350886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.350890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.350892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.350896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.361868 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.361878 LLDP, length 82 [|LLDP] 17:40:17.361880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eee 1190 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.361881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.361885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.361889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.361892 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.361896 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.361900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.361904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.372882 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.372894 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.372897 LLDP, length 82 [|LLDP] 17:40:17.372899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef6 77f6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.372901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.372905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.372909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.372911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.372915 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.372919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.381137 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.381147 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.381151 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.381155 LLDP, length 82 [|LLDP] 17:40:17.381156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efc c4c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.381158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.381162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.381166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.381168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.381172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.392146 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.392155 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.392159 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.392163 LLDP, length 82 [|LLDP] 17:40:17.392165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f05 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.392167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.392171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.392175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.392177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.392181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.400406 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.400418 LLDP, length 82 [|LLDP] 17:40:17.400419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.400421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.400426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.400430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.400432 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.400436 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.400440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.400445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.411418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.411429 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.411433 LLDP, length 82 [|LLDP] 17:40:17.411435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.411436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.411440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.411444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.411447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.411451 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.411456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.422425 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.422434 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.422438 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.422442 LLDP, length 82 [|LLDP] 17:40:17.422443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1c 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.422445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.422450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.422453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.422456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.422461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.430680 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.430689 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.430693 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.430697 LLDP, length 82 [|LLDP] 17:40:17.430698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.430700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.430704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.430709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.430711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.430715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.441690 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.441701 LLDP, length 82 [|LLDP] 17:40:17.441703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a f7f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.441704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.441708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.441712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.441715 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.441719 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.441723 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.441727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.452701 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.452712 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.452716 LLDP, length 82 [|LLDP] 17:40:17.452718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f33 5e5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.452719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.452724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.452727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.452730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.452734 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.452738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.460961 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.460971 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.460975 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.460979 LLDP, length 82 [|LLDP] 17:40:17.460980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f39 ab29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.460982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.460986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.460990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.460992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.460996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.471969 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.471980 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.471984 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.471988 LLDP, length 82 [|LLDP] 17:40:17.471989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f42 118f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.471991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.471995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.471999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.472002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.472006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.480226 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.480235 LLDP, length 82 [|LLDP] 17:40:17.480236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 5e5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.480238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.480242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.480246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.480248 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.480252 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.480256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.480260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.491235 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.491245 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.491249 LLDP, length 82 [|LLDP] 17:40:17.491250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f50 c4c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.491252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.491256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.491260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.491263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.491267 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.491271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.502246 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.502255 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.502259 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.502263 LLDP, length 82 [|LLDP] 17:40:17.502264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f59 2b29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.502266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.502270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.502274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.502277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.502281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.510505 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.510516 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.510520 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.510524 LLDP, length 82 [|LLDP] 17:40:17.510525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f 77f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.510527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.510531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.510535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.510538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.510542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.521514 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.521523 LLDP, length 82 [|LLDP] 17:40:17.521524 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 de5c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.521526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.521530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.521534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.521537 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.521541 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.521545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.521549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.532524 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.532533 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.532537 LLDP, length 82 [|LLDP] 17:40:17.532538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f70 44c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.532540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.532544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.532548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.532551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.532554 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.532559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.540780 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.540790 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.540794 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.540798 LLDP, length 82 [|LLDP] 17:40:17.540799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 918f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.540801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.540805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.540808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.540811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.540815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.551801 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.551815 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.551819 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.551824 LLDP, length 82 [|LLDP] 17:40:17.551825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.551827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.551832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.551836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.551838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.551843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.562822 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.562840 LLDP, length 82 [|LLDP] 17:40:17.562842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f87 5e7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.562844 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.562849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.562853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.562855 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.562860 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.562864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.562869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.571068 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.571083 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.571087 LLDP, length 82 [|LLDP] 17:40:17.571088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8d ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.571090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.571094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.571099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.571103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.571107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.571111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.582085 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.582102 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.582107 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.582111 LLDP, length 82 [|LLDP] 17:40:17.582113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f96 11b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.582115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.582120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.582124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.582127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.582131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.590346 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.590363 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.590367 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.590379 LLDP, length 82 [|LLDP] 17:40:17.590381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.590383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.590388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.590392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.590395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.590399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.601347 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.601362 LLDP, length 82 [|LLDP] 17:40:17.601363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa4 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.601365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.601370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.601374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.601377 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.601381 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.601385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.601390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.612357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.612371 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.612375 LLDP, length 82 [|LLDP] 17:40:17.612376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fad 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.612378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.612382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.612387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.612390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.612394 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.612398 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.620615 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.620629 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.620633 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.620637 LLDP, length 82 [|LLDP] 17:40:17.620639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 7818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.620641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.620645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.620649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.620652 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.620656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.631631 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.631648 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.631652 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.631656 LLDP, length 82 [|LLDP] 17:40:17.631658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.631660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.631665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.631669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.631671 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.631676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.642634 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.642649 LLDP, length 82 [|LLDP] 17:40:17.642651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc4 44e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.642653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.642657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.642660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.642664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.642668 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.642672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.642676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.650893 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.650907 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.650912 LLDP, length 82 [|LLDP] 17:40:17.650913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca 91b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.650915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.650919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.650923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.650926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.650930 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.650935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.661931 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.661956 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.661961 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.661965 LLDP, length 82 [|LLDP] 17:40:17.661967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 f818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.661970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.661974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.661979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.661983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.661987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.672920 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.672934 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.672938 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.672943 LLDP, length 82 [|LLDP] 17:40:17.672944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdb 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.672946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.672951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.672955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.672958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.672963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.681171 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.681185 LLDP, length 82 [|LLDP] 17:40:17.681186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe1 ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.681188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.681192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.681196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.681199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.681203 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.681208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.681212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.692176 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.692189 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.692193 LLDP, length 82 [|LLDP] 17:40:17.692194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fea 11b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.692197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.692201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.692205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.692208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.692212 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.692216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.700431 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.700443 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.700447 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.700451 LLDP, length 82 [|LLDP] 17:40:17.700452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 5e7f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.700454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.700458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.700462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.700465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.700469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.711443 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.711455 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.711458 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.711462 LLDP, length 82 [|LLDP] 17:40:17.711464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 c4e5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.711466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.711470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.711474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.711477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.711481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.722452 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.722464 LLDP, length 82 [|LLDP] 17:40:17.722466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1001 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.722468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.722472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.722476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.722478 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.722482 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.722486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.722491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.730710 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.730722 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.730726 LLDP, length 82 [|LLDP] 17:40:17.730727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.730729 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.730733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.730737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.730740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.730743 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.730748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.741719 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.741731 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.741735 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.741739 LLDP, length 82 [|LLDP] 17:40:17.741741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f de7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.741743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.741747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.741751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.741754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.741758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.752729 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.752742 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.752746 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.752750 LLDP, length 82 [|LLDP] 17:40:17.752752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1018 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.752754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.752758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.752762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.752764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.752769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.760988 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.761000 LLDP, length 82 [|LLDP] 17:40:17.761002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e 91b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.761004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.761008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.761012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.761015 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.761019 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.761024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.761028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.771996 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.772009 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.772013 LLDP, length 82 [|LLDP] 17:40:17.772015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.772016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.772020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.772024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.772027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.772031 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.772035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.780256 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.780269 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.780273 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.780277 LLDP, length 82 [|LLDP] 17:40:17.780278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d 44e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.780280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.780284 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.780288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.780291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.780296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.791267 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.791280 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.791284 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.791288 LLDP, length 82 [|LLDP] 17:40:17.791290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 ab4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.791292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.791296 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.791300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.791314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.791319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.802274 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.802286 LLDP, length 82 [|LLDP] 17:40:17.802287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103e 11b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.802289 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.802293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.802297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.802300 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.802304 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.802308 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.802313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.810531 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.810543 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.810547 LLDP, length 82 [|LLDP] 17:40:17.810548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 5e84 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.810550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.810554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.810558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.810561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.810565 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.810569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.821543 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.821556 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.821560 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.821564 LLDP, length 82 [|LLDP] 17:40:17.821566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.821568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.821572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.821576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.821579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.821583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.832553 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.832565 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.832569 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.832573 LLDP, length 82 [|LLDP] 17:40:17.832574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1055 2b4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.832577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.832581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.832585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.832588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.832592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.840808 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.840820 LLDP, length 82 [|LLDP] 17:40:17.840822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.840823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.840828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.840831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.840834 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.840838 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.840842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.840846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.851818 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.851831 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.851835 LLDP, length 82 [|LLDP] 17:40:17.851836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 de7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.851838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.851843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.851846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.851849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.851853 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.851857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.862828 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.862840 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.862844 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.862848 LLDP, length 82 [|LLDP] 17:40:17.862849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106c 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.862851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.862855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.862859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.862861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.862865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.871088 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.871101 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.871105 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.871110 LLDP, length 82 [|LLDP] 17:40:17.871111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 91b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.871113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.871117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.871121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.871124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.871129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.882101 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.882113 LLDP, length 82 [|LLDP] 17:40:17.882115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a f817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.882117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.882121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.882124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.882127 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.882131 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.882135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.882140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.890357 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.890370 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.890374 LLDP, length 82 [|LLDP] 17:40:17.890376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.890377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.890381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.890385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.890388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.890391 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.890395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.901378 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.901396 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.901401 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.901405 LLDP, length 82 [|LLDP] 17:40:17.901406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 ab4a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.901409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.901413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.901417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.901420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.901424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.912384 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.912398 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.912403 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.912407 LLDP, length 82 [|LLDP] 17:40:17.912408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1092 11b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.912410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.912415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.912419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.912421 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.912426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.920633 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.920645 LLDP, length 82 [|LLDP] 17:40:17.920646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 5e7d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.920648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.920652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.920656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.920659 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.920663 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.920667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.920671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.931642 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.931657 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.931662 LLDP, length 82 [|LLDP] 17:40:17.931664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.931665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.931670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.931674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.931677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.931681 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.931686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.942652 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.942664 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.942668 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.942672 LLDP, length 82 [|LLDP] 17:40:17.942673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a9 2b51 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.942675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.942679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.942683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.942686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.942690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.953401 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.953414 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.953418 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.953422 LLDP, length 82 [|LLDP] 17:40:17.953424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af 7817 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.953426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.953430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.953434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.953437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.953441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.961929 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.961946 LLDP, length 82 [|LLDP] 17:40:17.961948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 de7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.961949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.961954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.961958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.961960 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.961964 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.961968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.961972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.970183 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.970199 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.970203 LLDP, length 82 [|LLDP] 17:40:17.970204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10be 2b4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.970206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.970211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.970215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.970218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.970222 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.970226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.981190 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.981203 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.981207 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.981211 LLDP, length 82 [|LLDP] 17:40:17.981212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 91b7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.981214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.981218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.981222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.981225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.981229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:17.992197 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:17.992210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.992214 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:17.992218 LLDP, length 82 [|LLDP] 17:40:17.992219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce f818 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:17.992221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:17.992226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:17.992230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:17.992232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:17.992236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.000456 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.000468 LLDP, length 82 [|LLDP] 17:40:18.000469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 44e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.000471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.000475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.000479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.000482 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.000486 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.000490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.000495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.014024 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.014036 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.014040 LLDP, length 82 [|LLDP] 17:40:18.014041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd ab4b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.014043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.014047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.014051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.014054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.014058 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.014062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.022474 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.022485 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.022489 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.022493 LLDP, length 82 [|LLDP] 17:40:18.022495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e6 11b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.022497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.022501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.022505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.022508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.022512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.030732 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.030745 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.030749 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.030753 LLDP, length 82 [|LLDP] 17:40:18.030754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec 5e7e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.030756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.030760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.030764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.030767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.030771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.041743 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.041755 LLDP, length 82 [|LLDP] 17:40:18.041756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 c4e4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.041758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.041762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.041766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.041768 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.041772 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.041777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.041781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.052751 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.052763 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.052767 LLDP, length 82 [|LLDP] 17:40:18.052768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fd 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.052770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.052774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.052778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.052781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.052785 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.052789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.061009 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.061021 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.061025 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.061029 LLDP, length 82 [|LLDP] 17:40:18.061031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 783a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.061033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.061037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.061041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.061043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.061047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.074698 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.074712 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.074716 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.074720 LLDP, length 82 [|LLDP] 17:40:18.074721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b dea0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.074724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.074728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.074732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.074735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.074739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.080277 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.080290 LLDP, length 82 [|LLDP] 17:40:18.080292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1112 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.080294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.080297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.080301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.080304 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.080308 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.080313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.080318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.091286 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.091298 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.091311 LLDP, length 82 [|LLDP] 17:40:18.091313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a 91d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.091315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.091319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.091323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.091326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.091330 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.091334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.102295 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.102307 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.102311 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.102315 LLDP, length 82 [|LLDP] 17:40:18.102316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 f83a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.102318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.102322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.102327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.102329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.102333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.110551 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.110562 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.110566 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.110571 LLDP, length 82 [|LLDP] 17:40:18.110572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.110574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.110578 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.110582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.110585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.110589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.121563 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.121575 LLDP, length 82 [|LLDP] 17:40:18.121576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 ab6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.121578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.121583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.121586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.121589 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.121593 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.121597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.121602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.135365 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.135378 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.135382 LLDP, length 82 [|LLDP] 17:40:18.135383 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113a 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.135385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.135389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.135393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.135396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.135400 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.135404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.140831 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.140843 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.140847 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.140851 LLDP, length 82 [|LLDP] 17:40:18.140852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.140854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.140859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.140862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.140865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.140869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.151841 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.151853 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.151857 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.151861 LLDP, length 82 [|LLDP] 17:40:18.151862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.151864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.151868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.151872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.151875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.151879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.162852 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.162864 LLDP, length 82 [|LLDP] 17:40:18.162865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1151 2b6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.162867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.162872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.162876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.162878 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.162883 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.162887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.162892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.171108 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.171120 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.171124 LLDP, length 82 [|LLDP] 17:40:18.171126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 7839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.171127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.171131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.171135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.171138 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.171142 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.171147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.182117 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.182130 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.182135 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.182139 LLDP, length 82 [|LLDP] 17:40:18.182140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f de9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.182142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.182146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.182151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.182154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.182158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.190377 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.190390 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.190394 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.190398 LLDP, length 82 [|LLDP] 17:40:18.190399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1166 2b6b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.190401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.190406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.190410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.190412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.190416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.201385 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.201397 LLDP, length 82 [|LLDP] 17:40:18.201398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.201400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.201404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.201408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.201411 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.201415 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.201419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.201424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.212397 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.212419 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.212423 LLDP, length 82 [|LLDP] 17:40:18.212425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 f838 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.212426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.212431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.212434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.212437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.212441 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.212445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.220651 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.220662 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.220666 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.220670 LLDP, length 82 [|LLDP] 17:40:18.220672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.220674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.220678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.220681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.220684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.220688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.231662 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.231673 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.231677 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.231681 LLDP, length 82 [|LLDP] 17:40:18.231683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 ab73 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.231685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.231689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.231693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.231695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.231699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.242673 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.242685 LLDP, length 82 [|LLDP] 17:40:18.242687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118e 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.242689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.242694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.242698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.242701 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.242705 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.242709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.242714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.250931 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.250944 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.250948 LLDP, length 82 [|LLDP] 17:40:18.250949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.250951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.250955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.250959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.250962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.250966 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.250970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.261941 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.261952 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.261956 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.261960 LLDP, length 82 [|LLDP] 17:40:18.261961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.261963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.261967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.261971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.261974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.261978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.270198 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.270210 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.270215 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.270219 LLDP, length 82 [|LLDP] 17:40:18.270220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a3 11d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.270222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.270226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.270231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.270234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.270238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.281210 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.281222 LLDP, length 82 [|LLDP] 17:40:18.281223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab 7839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.281225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.281230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.281234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.281237 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.281241 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.281245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.281249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.292219 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.292231 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.292235 LLDP, length 82 [|LLDP] 17:40:18.292236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.292238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.292242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.292246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.292249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.292253 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.292258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.300475 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.300487 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.300492 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.300496 LLDP, length 82 [|LLDP] 17:40:18.300497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ba 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.300499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.300503 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.300507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.300509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.300514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.311484 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.311495 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.311500 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.311504 LLDP, length 82 [|LLDP] 17:40:18.311505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.311507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.311511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.311515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.311518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.311522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.322508 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.322526 LLDP, length 82 [|LLDP] 17:40:18.322527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.322529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.322533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.322537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.322540 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.322544 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.322549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.322553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.330761 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.330782 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.330787 LLDP, length 82 [|LLDP] 17:40:18.330788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.330791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.330795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.330799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.330802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.330807 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.330811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.341766 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.341780 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.341784 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.341788 LLDP, length 82 [|LLDP] 17:40:18.341790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 ab6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.341792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.341796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.341800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.341803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.341808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.352776 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.352789 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.352793 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.352797 LLDP, length 82 [|LLDP] 17:40:18.352799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e2 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.352801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.352805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.352809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.352811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.352815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.361033 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.361046 LLDP, length 82 [|LLDP] 17:40:18.361048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.361050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.361054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.361058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.361061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.361065 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.361069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.361074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.372046 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.372061 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.372065 LLDP, length 82 [|LLDP] 17:40:18.372066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 c506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.372068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.372072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.372076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.372079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.372083 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.372088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.380302 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.380316 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.380320 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.380324 LLDP, length 82 [|LLDP] 17:40:18.380325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f7 11d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.380328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.380332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.380336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.380338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.380343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.391323 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.391341 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.391346 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.391350 LLDP, length 82 [|LLDP] 17:40:18.391351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff 783a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.391353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.391358 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.391362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.391364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.391369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.402317 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.402340 LLDP, length 82 [|LLDP] 17:40:18.402342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 dea6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.402344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.402349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.402356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.402359 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.402364 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.402368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.402372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.410581 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.410595 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.410599 LLDP, length 82 [|LLDP] 17:40:18.410601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120e 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.410603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.410607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.410612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.410615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.410619 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.410624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.421595 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.421608 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.421612 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.421616 LLDP, length 82 [|LLDP] 17:40:18.421617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 91d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.421619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.421623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.421627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.421630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.421634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.432594 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.432606 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.432610 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.432614 LLDP, length 82 [|LLDP] 17:40:18.432615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.432617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.432621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.432625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.432628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.432632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.440848 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.440858 LLDP, length 82 [|LLDP] 17:40:18.440860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 4506 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.440861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.440866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.440869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.440872 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.440876 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.440880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.440884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.451861 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.451873 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.451877 LLDP, length 82 [|LLDP] 17:40:18.451879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d ab6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.451881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.451885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.451890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.451892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.451901 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.451906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.460120 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.460132 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.460136 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.460140 LLDP, length 82 [|LLDP] 17:40:18.460145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.460147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.460151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.460155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.460158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.460162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.471132 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.471144 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.471149 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.471153 LLDP, length 82 [|LLDP] 17:40:18.471155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c 5e9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.471157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.471161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.471165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.471167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.471172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.482139 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.482151 LLDP, length 82 [|LLDP] 17:40:18.482153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 c50b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.482154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.482158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.482162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.482165 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.482169 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.482173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.482177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.490399 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.490413 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.490418 LLDP, length 82 [|LLDP] 17:40:18.490419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124b 11d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.490421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.490426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.490430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.490432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.490437 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.490442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.501417 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.501430 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.501434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.501439 LLDP, length 82 [|LLDP] 17:40:18.501440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 7838 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.501442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.501446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.501450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.501453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.501458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.512418 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.512431 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.512434 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.512438 LLDP, length 82 [|LLDP] 17:40:18.512440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b de9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.512442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.512446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.512450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.512452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.512456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.520675 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.520688 LLDP, length 82 [|LLDP] 17:40:18.520689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1262 2b6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.520691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.520695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.520699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.520701 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.520705 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.520709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.520713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.531692 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.531707 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.531712 LLDP, length 82 [|LLDP] 17:40:18.531713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 91d2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.531715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.531719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.531723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.531726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.531730 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.531735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.542701 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.542713 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.542717 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.542721 LLDP, length 82 [|LLDP] 17:40:18.542722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 f839 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.542725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.542729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.542733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.542735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.542739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.550952 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.550964 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.550968 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.550972 LLDP, length 82 [|LLDP] 17:40:18.550974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1279 4505 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.550976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.550980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.550984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.550987 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.550991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.561966 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.561980 LLDP, length 82 [|LLDP] 17:40:18.561982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1281 ab8d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.561983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.561988 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.561992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.561995 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.561999 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.562003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.562008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.570229 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.570245 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.570250 LLDP, length 82 [|LLDP] 17:40:18.570251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 f85a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.570253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.570257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.570262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.570264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.570268 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.570273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.581246 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.581260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.581264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.581268 LLDP, length 82 [|LLDP] 17:40:18.581270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1290 5ec1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.581271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.581276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.581280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.581283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.581287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.592245 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.592260 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.592264 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.592268 LLDP, length 82 [|LLDP] 17:40:18.592270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1298 c527 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.592271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.592276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.592279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.592282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.592286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:40:18.600500 IP 1.1.1.2.28733 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:40:18.600512 LLDP, length 82 [|LLDP] 17:40:18.600514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 129f 11f4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:40:18.600516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:40:18.600520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:40:18.600524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:40:18.600527 IP 1.1.1.2.15982 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.600531 IP 192.168.1.1.14783 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:40:18.600535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:40:18.600539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 6050 packets captured 6050 packets received by filter 0 packets dropped by kernel 606 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:40:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:40:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:40:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif | 260.40 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2517' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.3, port 56982 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:40:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cd4b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 601 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG infra2:Logger.py:156 17:44:33.321513 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.321516 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.321518 LLDP, length 82 [|LLDP] 17:44:33.321606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.321608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009d a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.321609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.321610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.321611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.321612 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.321613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.321615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.321616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.321671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.321672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.321677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.329755 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.329757 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.329758 LLDP, length 82 [|LLDP] 17:44:33.329820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.329821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a3 f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.329823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.329824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.329825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.329827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.329828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.329868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.329869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.329873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.329874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.329875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.340745 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.340747 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.340749 LLDP, length 82 [|LLDP] 17:44:33.340794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.340794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.340796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.340798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.340799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.340800 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.340801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.340802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.340804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.340850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.340851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.340854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.348992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.348993 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.348994 LLDP, length 82 [|LLDP] 17:44:33.349040 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.349041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b2 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.349043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.349044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.349045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.349070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.349071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.349073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.349075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.349076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.349077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.349078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.360027 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.360029 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.360037 LLDP, length 82 [|LLDP] 17:44:33.360081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.360082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bb 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.360084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.360085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.360086 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.360087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.360088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.360089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.360118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.360120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.360123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.360125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.371028 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.371030 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.371031 LLDP, length 82 [|LLDP] 17:44:33.371092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.371093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c3 707e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.371094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.371096 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.371097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.371098 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.371099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.371100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.371101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.371139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.371140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.371143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.379276 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.379279 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.379286 LLDP, length 82 [|LLDP] 17:44:33.379343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.379344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c9 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.379346 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.379347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.379348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.379349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.379367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.379368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.379371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.379372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.379373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.379375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.390285 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.390288 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.390289 LLDP, length 82 [|LLDP] 17:44:33.390337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.390338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.390340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.390341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.390343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.390344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.390345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.390346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.390347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.390374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.390375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.390378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.401295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.401298 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.401299 LLDP, length 82 [|LLDP] 17:44:33.401337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.401338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00da 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.401340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.401341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.401342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.401344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.401345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.401346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.401347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.401373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.401375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.401377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.409547 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.409548 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.409549 LLDP, length 82 [|LLDP] 17:44:33.409587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.409588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e0 d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.409589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.409590 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.409592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.409593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.409594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.409609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.409610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.409617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.409618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.409620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.420565 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.420567 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.420568 LLDP, length 82 [|LLDP] 17:44:33.420613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.420614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.420615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.420617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.420618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.420619 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.420620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.420621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.420623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.420653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.420654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.420657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.428826 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.428828 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.428829 LLDP, length 82 [|LLDP] 17:44:33.428879 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.428880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ef 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.428882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.428883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.428884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.428899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.428900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.428902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.428903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.428905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.428906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.428908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.439827 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.439829 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.439831 LLDP, length 82 [|LLDP] 17:44:33.439880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.439881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f7 f079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.439883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.439884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.439885 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.439886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.439888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.439889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.439905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.439906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.439909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.439911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.450842 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.450844 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.450845 LLDP, length 82 [|LLDP] 17:44:33.450881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.450883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.450884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.450885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.450886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.450888 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.450889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.450890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.450891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.450916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.450917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.450920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.459097 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.459099 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.459100 LLDP, length 82 [|LLDP] 17:44:33.459137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.459138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0106 a3ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.459139 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.459140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.459142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.459143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.459158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.459160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.459162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.459164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.459165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.459167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.470102 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.470104 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.470105 LLDP, length 82 [|LLDP] 17:44:33.470146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.470147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010f 0a13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.470148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.470150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.470151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.470152 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.470153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.470155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.470156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.470185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.470187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.470190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.481117 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.481119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.481120 LLDP, length 82 [|LLDP] 17:44:33.481163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.481164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0117 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.481170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.481172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.481173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.481174 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.481175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.481177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.481178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.481205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.481206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.481209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.489384 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.489386 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.489393 LLDP, length 82 [|LLDP] 17:44:33.489434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.489435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011d bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.489436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.489438 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.489439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.489440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.489441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.489458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.489459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.489461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.489462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.489464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.500385 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.500386 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.500394 LLDP, length 82 [|LLDP] 17:44:33.500436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.500437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.500439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.500440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.500441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.500442 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.500444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.500445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.500446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.500480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.500482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.500485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.511396 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.511398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.511399 LLDP, length 82 [|LLDP] 17:44:33.511442 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.511443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012e 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.511444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.511445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.511447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.511460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.511462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.511465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.511466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.511467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.511468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.511470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.519651 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.519653 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.519654 LLDP, length 82 [|LLDP] 17:44:33.519689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.519689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0134 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.519691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.519692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.519694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.519695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.519696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.519697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.519713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.519714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.519716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.519718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.530665 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.530667 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.530668 LLDP, length 82 [|LLDP] 17:44:33.530706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.530707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.530709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.530710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.530711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.530713 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.530714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.530715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.530716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.530741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.530742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.530745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.538917 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.538918 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.538919 LLDP, length 82 [|LLDP] 17:44:33.538967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.538968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0143 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.538969 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.538971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.538972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.538973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.538988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.538989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.538991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.538993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.538994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.538996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.549941 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.549942 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.549943 LLDP, length 82 [|LLDP] 17:44:33.549989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.549990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014b f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.549991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.549993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.549994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.549995 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.549997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.549998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.549999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.550025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.550026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.550029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.560947 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.560949 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.560950 LLDP, length 82 [|LLDP] 17:44:33.560998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.560999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.561001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.561002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.561003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.561004 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.561005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.561006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.561007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.561033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.561035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.561038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.569205 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.569207 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.569215 LLDP, length 82 [|LLDP] 17:44:33.569269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.569270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015a a3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.569272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.569273 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.569275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.569276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.569277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.569297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.569298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.569300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.569302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.569303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.580218 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.580220 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.580221 LLDP, length 82 [|LLDP] 17:44:33.580269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.580270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0163 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.580271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.580273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.580274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.580275 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.580276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.580277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.580279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.580308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.580309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.580312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.591222 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.591224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.591231 LLDP, length 82 [|LLDP] 17:44:33.591276 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.591278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016b 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.591279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.591281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.591282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.591298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.591299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.591311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.591313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.591314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.591317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.599486 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.599495 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.599496 LLDP, length 82 [|LLDP] 17:44:33.599538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.599539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0171 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.599541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.599542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.599543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.599544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.599546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.599547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.599565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.599566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.599569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.599571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.610485 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.610487 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.610494 LLDP, length 82 [|LLDP] 17:44:33.610534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.610535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.610536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.610538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.610539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.610540 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.610542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.610544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.610545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.610570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.610572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.610575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.618740 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.618742 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.618749 LLDP, length 82 [|LLDP] 17:44:33.618792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.618793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.618795 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.618796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.618797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.618798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.618813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.618815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.618817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.618818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.618820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.618822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.629746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.629748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.629755 LLDP, length 82 [|LLDP] 17:44:33.629795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.629796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0188 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.629798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.629799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.629800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.629801 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.629803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.629804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.629805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.629830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.629831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.629834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.640761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.640763 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.640764 LLDP, length 82 [|LLDP] 17:44:33.640812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.640813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.640814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.640816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.640817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.640818 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.640819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.640820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.640821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.640847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.640848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.640851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.649020 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.649022 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.649023 LLDP, length 82 [|LLDP] 17:44:33.649068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.649069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0197 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.649070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.649072 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.649073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.649078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.649080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.649097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.649098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.649100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.649101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.649103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.660049 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.660058 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.660059 LLDP, length 82 [|LLDP] 17:44:33.660117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.660118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019f f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.660120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.660121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.660122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.660124 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.660125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.660126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.660127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.660160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.660162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.660166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.671048 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.671050 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.671057 LLDP, length 82 [|LLDP] 17:44:33.671098 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.671099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.671101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.671102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.671103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.671118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.671120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.671122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.671123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.671125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.671126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.671128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.679298 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.679300 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.679312 LLDP, length 82 [|LLDP] 17:44:33.679362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.679363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ae a3ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.679365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.679366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.679367 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.679368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.679370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.679371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.679390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.679391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.679394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.679396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.690308 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.690310 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.690317 LLDP, length 82 [|LLDP] 17:44:33.690361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.690362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b7 0a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.690364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.690365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.690367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.690368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.690369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.690370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.690371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.690399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.690400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.690404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.701313 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.701314 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.701315 LLDP, length 82 [|LLDP] 17:44:33.701348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.701349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bf 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.701351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.701352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.701353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.701354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.701367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.701368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.701371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.701372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.701373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.701375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.709565 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.709566 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.709568 LLDP, length 82 [|LLDP] 17:44:33.709603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.709604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c5 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.709606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.709607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.709608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.709609 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.709611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.709612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.709613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.709637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.709639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.709642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.720575 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.720577 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.720578 LLDP, length 82 [|LLDP] 17:44:33.720615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.720616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.720618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.720619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.720620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.720621 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.720622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.720623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.720625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.720649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.720650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.720653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.728832 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.728834 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.728835 LLDP, length 82 [|LLDP] 17:44:33.728870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.728871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.728873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.728874 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.728875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.728876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.728878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.728892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.728893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.728895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.728897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.728898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.739842 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.739843 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.739844 LLDP, length 82 [|LLDP] 17:44:33.739879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.739879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dc d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.739881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.739883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.739884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.739885 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.739886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.739887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.739888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.739912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.739913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.739916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.750851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.750853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.750854 LLDP, length 82 [|LLDP] 17:44:33.750889 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.750890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.750892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.750893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.750894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.750906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.750908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.750910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.750911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.750913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.750914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.750915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.759110 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.759111 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.759112 LLDP, length 82 [|LLDP] 17:44:33.759146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.759147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01eb 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.759149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.759150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.759151 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.759152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.759153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.759154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.759169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.759170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.759173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.759174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.770118 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.770119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.770120 LLDP, length 82 [|LLDP] 17:44:33.770157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.770158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f3 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.770160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.770161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.770162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.770163 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.770165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.770166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.770167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.770190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.770191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.770194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.781131 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.781132 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.781133 LLDP, length 82 [|LLDP] 17:44:33.781173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.781173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.781175 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.781176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.781177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.781178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.781193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.781194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.781197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.781198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.781199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.781201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.789387 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.789388 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.789389 LLDP, length 82 [|LLDP] 17:44:33.789425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.789426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0202 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.789428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.789429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.789430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.789431 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.789433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.789434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.789435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.789459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.789460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.789463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.800394 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.800396 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.800397 LLDP, length 82 [|LLDP] 17:44:33.800432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.800433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020b 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.800435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.800436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.800437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.800438 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.800439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.800440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.800441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.800466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.800467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.800470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.811405 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.811406 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.811407 LLDP, length 82 [|LLDP] 17:44:33.811441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.811442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0213 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.811444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.811445 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.811446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.811448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.811449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.811463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.811464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.811466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.811468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.811469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.819666 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.819667 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.819668 LLDP, length 82 [|LLDP] 17:44:33.819704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.819705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0219 bd4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.819706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.819708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.819709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.819710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.819711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.819713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.819714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.819737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.819738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.819741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.830693 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.830695 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.830696 LLDP, length 82 [|LLDP] 17:44:33.830742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.830743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.830744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.830745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.830746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.830761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.830763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.830765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.830767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.830768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.830769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.830771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.838940 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.838941 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.838948 LLDP, length 82 [|LLDP] 17:44:33.838986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.838987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.838989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.838990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.838991 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.838992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.838993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.838994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.839011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.839013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.839015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.839017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.849948 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.849949 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.849950 LLDP, length 82 [|LLDP] 17:44:33.849995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.849995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0230 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.849997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.849998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.849999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.850000 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.850001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.850003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.850004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.850029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.850030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.850033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.860956 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.860957 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.860959 LLDP, length 82 [|LLDP] 17:44:33.861001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.861002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.861003 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.861005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.861006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.861007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.861022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.861023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.861026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.861027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.861029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.861030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.869212 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.869213 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.869214 LLDP, length 82 [|LLDP] 17:44:33.869255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.869256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023f 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.869257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.869258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.869259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.869261 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.869262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.869263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.869264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.869288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.869290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.869292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.880226 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.880228 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.880229 LLDP, length 82 [|LLDP] 17:44:33.880272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.880273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0247 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.880274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.880275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.880276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.880277 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.880279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.880280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.880281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.880305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.880307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.880309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.891232 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.891234 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.891235 LLDP, length 82 [|LLDP] 17:44:33.891275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.891276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.891277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.891278 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.891279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.891281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.891282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.891297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.891298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.891300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.891310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.891312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.899492 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.899494 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.899495 LLDP, length 82 [|LLDP] 17:44:33.899537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.899538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0256 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.899540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.899541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.899542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.899543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.899544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.899545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.899546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.899573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.899574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.899577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.910502 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.910504 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.910505 LLDP, length 82 [|LLDP] 17:44:33.910547 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.910548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025f 0a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.910550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.910551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.910552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.910565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.910567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.910569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.910570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.910572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.910573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.910574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.918758 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.918760 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.918761 LLDP, length 82 [|LLDP] 17:44:33.918804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.918805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.918806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.918808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.918809 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.918810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.918811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.918812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.918828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.918829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.918831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.918833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.929768 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.929770 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.929771 LLDP, length 82 [|LLDP] 17:44:33.929813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.929814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026d bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.929815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.929816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.929818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.929819 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.929820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.929821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.929822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.929848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.929849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.929852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.940783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.940785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.940786 LLDP, length 82 [|LLDP] 17:44:33.940823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.940824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.940825 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.940827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.940828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.940829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.940843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.940845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.940847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.940848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.940850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.940851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.949035 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.949037 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.949038 LLDP, length 82 [|LLDP] 17:44:33.949079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.949079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.949081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.949082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.949083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.949084 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.949085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.949087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.949088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.949112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.949113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.949116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.960047 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.960049 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.960050 LLDP, length 82 [|LLDP] 17:44:33.960093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.960094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0284 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.960095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.960097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.960098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.960099 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.960100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.960101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.960103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.960127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.960129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.960131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.971061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.971063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.971064 LLDP, length 82 [|LLDP] 17:44:33.971106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.971107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.971108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.971110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.971111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.971112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.971113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.971129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.971130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.971132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.971133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.971135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.979322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.979324 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.979325 LLDP, length 82 [|LLDP] 17:44:33.979368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.979369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0293 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.979370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.979371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.979372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.979374 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.979375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.979376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.979377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.979402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.979404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.979406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.990321 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.990323 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.990324 LLDP, length 82 [|LLDP] 17:44:33.990365 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.990366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029b f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.990368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.990369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.990370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.990384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.990385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.990388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.990389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.990390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.990391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.990393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.001339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.001340 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.001341 LLDP, length 82 [|LLDP] 17:44:34.001383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.001384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.001386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.001387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.001388 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.001389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.001390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.001391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.001407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.001409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.001411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.001413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.009590 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.009592 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.009593 LLDP, length 82 [|LLDP] 17:44:34.009634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.009635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02aa a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.009636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.009638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.009639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.009640 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.009641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.009643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.009644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.009668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.009669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.009671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.020600 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.020601 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.020603 LLDP, length 82 [|LLDP] 17:44:34.020644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.020644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b3 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.020646 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.020647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.020648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.020649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.020664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.020665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.020668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.020669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.020670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.020672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.028928 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.028931 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.028932 LLDP, length 82 [|LLDP] 17:44:34.029030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.029031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.029033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.029034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.029035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.029037 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.029038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.029040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.029041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.029086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.029088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.029092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.039942 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.039945 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.039946 LLDP, length 82 [|LLDP] 17:44:34.040045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.040046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c1 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.040048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.040049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.040050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.040051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.040053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.040054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.040056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.040102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.040104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.040108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.050949 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.050952 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.050953 LLDP, length 82 [|LLDP] 17:44:34.051047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.051048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.051050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.051051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.051052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.051054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.051055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.051088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.051090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.051093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.051095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.051097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.059208 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.059211 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.059213 LLDP, length 82 [|LLDP] 17:44:34.059349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.059350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.059352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.059353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.059354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.059355 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.059356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.059357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.059359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.059406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.059407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.059411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.070214 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.070216 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.070218 LLDP, length 82 [|LLDP] 17:44:34.070314 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.070315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d8 d6e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.070317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.070318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.070320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.070348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.070349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.070352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.070353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.070354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.070356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.070358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.081229 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.081233 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.081234 LLDP, length 82 [|LLDP] 17:44:34.081328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.081329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.081331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.081332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.081333 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.081335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.081336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.081337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.081369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.081371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.081375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.081377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.089484 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.089487 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.089488 LLDP, length 82 [|LLDP] 17:44:34.089584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.089585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e7 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.089587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.089588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.089589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.089591 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.089592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.089594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.089595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.089643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.089645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.089649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.100531 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.100535 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.100537 LLDP, length 82 [|LLDP] 17:44:34.100676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.100677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ef f079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.100679 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.100680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.100681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.100683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.100727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.100729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.100735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.100738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.100739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.100741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.108734 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.108736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.108737 LLDP, length 82 [|LLDP] 17:44:34.108822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.108823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 3d47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.108824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.108826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.108827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.108828 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.108830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.108831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.108832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.108873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.108875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.108879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.119701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.119703 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.119704 LLDP, length 82 [|LLDP] 17:44:34.119752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.119753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fe a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.119755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.119756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.119757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.119758 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.119759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.119760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.119762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.119791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.119792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.119794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.130720 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.130722 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.130731 LLDP, length 82 [|LLDP] 17:44:34.130787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.130788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0307 0a13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.130790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.130791 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.130792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.130794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.130795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.130815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.130816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.130819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.130821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.130823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.138968 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.138977 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.138978 LLDP, length 82 [|LLDP] 17:44:34.139026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.139028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.139029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.139030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.139031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.139032 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.139033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.139035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.139036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.139066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.139067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.139070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.149973 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.149975 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.149976 LLDP, length 82 [|LLDP] 17:44:34.150023 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.150024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0315 bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.150025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.150026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.150028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.150043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.150044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.150047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.150048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.150049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.150050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.150052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.160980 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.160982 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.160983 LLDP, length 82 [|LLDP] 17:44:34.161028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.161029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.161031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.161032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.161033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.161034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.161035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.161036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.161052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.161053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.161056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.161058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.169238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.169239 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.169240 LLDP, length 82 [|LLDP] 17:44:34.169283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.169284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.169286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.169287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.169288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.169289 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.169291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.169292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.169293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.169319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.169321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.169324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.180253 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.180256 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.180257 LLDP, length 82 [|LLDP] 17:44:34.180322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.180324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032c d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.180326 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.180327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.180328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.180330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.180350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.180351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.180353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.180354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.180356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.180358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.191293 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.191296 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.191297 LLDP, length 82 [|LLDP] 17:44:34.191369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.191370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.191372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.191373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.191374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.191376 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.191377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.191379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.191380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.191441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.191443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.191447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.199533 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.199535 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.199542 LLDP, length 82 [|LLDP] 17:44:34.199591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.199592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033b 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.199594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.199595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.199597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.199598 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.199599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.199600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.199601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.199633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.199635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.199638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.210528 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.210529 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.210537 LLDP, length 82 [|LLDP] 17:44:34.210589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.210590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0343 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.210592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.210594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.210595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.210596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.210598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.210615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.210617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.210619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.210621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.210623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.218784 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.218786 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.218787 LLDP, length 82 [|LLDP] 17:44:34.218835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.218836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.218837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.218839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.218840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.218841 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.218842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.218843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.218844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.218870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.218872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.218875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.229805 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.229814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.229815 LLDP, length 82 [|LLDP] 17:44:34.229869 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.229871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0352 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.229872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.229873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.229875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.229891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.229893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.229896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.229897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.229898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.229899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.229900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.240812 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.240815 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.240816 LLDP, length 82 [|LLDP] 17:44:34.240869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.240870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035b 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.240871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.240873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.240874 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.240875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.240877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.240878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.240897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.240898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.240901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.240902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.249069 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.249072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.249073 LLDP, length 82 [|LLDP] 17:44:34.249116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.249117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.249118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.249119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.249120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.249122 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.249123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.249124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.249125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.249152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.249153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.249156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.260078 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.260081 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.260082 LLDP, length 82 [|LLDP] 17:44:34.260124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.260125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0369 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.260127 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.260128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.260129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.260130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.260147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.260148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.260151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.260152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.260153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.260155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.271085 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.271087 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.271088 LLDP, length 82 [|LLDP] 17:44:34.271139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.271140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.271142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.271143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.271144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.271145 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.271146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.271147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.271148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.271176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.271177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.271180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.279352 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.279354 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.279362 LLDP, length 82 [|LLDP] 17:44:34.279407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.279409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.279410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.279411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.279413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.279414 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.279415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.279416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.279417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.279446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.279448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.279451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.290353 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.290355 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.290362 LLDP, length 82 [|LLDP] 17:44:34.290406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.290407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0380 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.290408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.290409 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.290410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.290411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.290413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.290429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.290430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.290433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.290434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.290435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.301368 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.301377 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.301378 LLDP, length 82 [|LLDP] 17:44:34.301429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.301430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.301431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.301432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.301434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.301435 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.301436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.301437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.301438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.301474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.301475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.301479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.309624 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.309626 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.309627 LLDP, length 82 [|LLDP] 17:44:34.309670 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.309671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038f 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.309673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.309674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.309675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.309691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.309692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.309695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.309696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.309697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.309699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.309700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.320632 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.320634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.320641 LLDP, length 82 [|LLDP] 17:44:34.320684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.320685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0397 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.320686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.320687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.320689 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.320690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.320691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.320692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.320725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.320726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.320729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.320731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.328890 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.328892 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.328900 LLDP, length 82 [|LLDP] 17:44:34.328944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.328944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.328947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.328948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.328949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.328950 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.328951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.328953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.328954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.328981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.328982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.328985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.339894 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.339895 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.339896 LLDP, length 82 [|LLDP] 17:44:34.339941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.339942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a6 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.339944 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.339945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.339946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.339947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.339962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.339963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.339966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.339967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.339968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.339970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.350902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.350904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.350905 LLDP, length 82 [|LLDP] 17:44:34.350947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.350948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03af 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.350950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.350951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.350952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.350953 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.350955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.350956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.350957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.350982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.350983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.350986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.359170 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.359172 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.359180 LLDP, length 82 [|LLDP] 17:44:34.359228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.359229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 56e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.359230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.359231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.359233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.359234 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.359235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.359236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.359238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.359267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.359268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.359271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.370177 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.370179 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.370186 LLDP, length 82 [|LLDP] 17:44:34.370227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.370229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bd bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.370230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.370231 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.370232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.370233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.370234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.370250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.370251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.370254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.370255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.370257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.381177 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.381179 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.381179 LLDP, length 82 [|LLDP] 17:44:34.381224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.381225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.381227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.381228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.381229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.381230 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.381231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.381232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.381233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.381258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.381259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.381262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.389438 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.389439 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.389440 LLDP, length 82 [|LLDP] 17:44:34.389483 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.389484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.389485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.389487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.389488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.389503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.389504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.389507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.389508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.389510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.389511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.389512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.400447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.400449 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.400450 LLDP, length 82 [|LLDP] 17:44:34.400493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.400494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d4 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.400496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.400497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.400498 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.400499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.400501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.400502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.400517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.400518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.400521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.400522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.408703 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.408705 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.408712 LLDP, length 82 [|LLDP] 17:44:34.408749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.408750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.408751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.408752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.408754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.408755 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.408756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.408757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.408758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.408782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.408784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.408786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.419714 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.419716 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.419717 LLDP, length 82 [|LLDP] 17:44:34.419767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.419768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.419770 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.419771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.419772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.419773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.419788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.419790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.419792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.419793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.419795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.419796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.430727 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.430729 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.430730 LLDP, length 82 [|LLDP] 17:44:34.430772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.430773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03eb f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.430775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.430776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.430777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.430778 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.430779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.430780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.430782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.430805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.430807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.430810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.438981 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.438982 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.438983 LLDP, length 82 [|LLDP] 17:44:34.439027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.439028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.439029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.439030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.439032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.439033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.439034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.439036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.439036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.439061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.439062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.439065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.449993 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.449995 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.449996 LLDP, length 82 [|LLDP] 17:44:34.450040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.450041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fa a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.450043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.450044 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.450045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.450046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.450047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.450063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.450064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.450067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.450068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.450070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.461007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.461009 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.461010 LLDP, length 82 [|LLDP] 17:44:34.461045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.461046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0403 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.461048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.461049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.461050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.461051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.461052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.461053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.461054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.461079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.461080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.461083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.469262 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.469264 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.469265 LLDP, length 82 [|LLDP] 17:44:34.469308 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.469309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.469311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.469312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.469313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.469327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.469328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.469331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.469332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.469333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.469335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.469336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.480268 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.480269 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.480270 LLDP, length 82 [|LLDP] 17:44:34.480314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.480315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0411 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.480316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.480317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.480318 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.480320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.480321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.480322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.480339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.480340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.480342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.480344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.491280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.491281 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.491282 LLDP, length 82 [|LLDP] 17:44:34.491332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.491333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.491335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.491336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.491337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.491338 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.491339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.491340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.491341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.491366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.491367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.491370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.499538 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.499539 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.499540 LLDP, length 82 [|LLDP] 17:44:34.499584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.499585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.499586 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.499588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.499589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.499590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.499606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.499607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.499610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.499611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.499612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.499614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.510546 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.510548 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.510549 LLDP, length 82 [|LLDP] 17:44:34.510590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.510591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0428 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.510593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.510594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.510595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.510596 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.510597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.510598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.510599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.510623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.510625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.510627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.518800 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.518802 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.518803 LLDP, length 82 [|LLDP] 17:44:34.518846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.518847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.518848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.518850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.518851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.518852 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.518853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.518854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.518855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.518879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.518881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.518883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.529814 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.529816 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.529823 LLDP, length 82 [|LLDP] 17:44:34.529859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.529860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0437 8a3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.529861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.529862 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.529863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.529864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.529866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.529881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.529883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.529885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.529887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.529888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.540824 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.540826 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.540827 LLDP, length 82 [|LLDP] 17:44:34.540870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.540870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043f f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.540872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.540873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.540874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.540876 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.540877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.540878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.540879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.540903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.540904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.540907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.549082 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.549083 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.549084 LLDP, length 82 [|LLDP] 17:44:34.549125 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.549126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.549127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.549129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.549130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.549143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.549144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.549147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.549148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.549149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.549150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.549151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.560092 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.560094 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.560095 LLDP, length 82 [|LLDP] 17:44:34.560136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.560137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.560138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.560140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.560141 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.560142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.560143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.560144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.560160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.560161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.560163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.560165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.571100 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.571102 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.571103 LLDP, length 82 [|LLDP] 17:44:34.571143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.571144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0457 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.571146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.571147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.571148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.571149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.571150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.571151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.571153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.571177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.571179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.571182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.579366 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.579367 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.579368 LLDP, length 82 [|LLDP] 17:44:34.579417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.579418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.579419 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.579421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.579422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.579423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.579438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.579439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.579441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.579442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.579443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.579445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.590369 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.590371 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.590379 LLDP, length 82 [|LLDP] 17:44:34.590416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.590417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0465 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.590419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.590420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.590421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.590422 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.590423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.590425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.590426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.590451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.590452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.590454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.601381 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.601382 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.601383 LLDP, length 82 [|LLDP] 17:44:34.601429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.601430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.601433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.601434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.601435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.601436 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.601438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.601439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.601440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.601464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.601465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.601469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.609641 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.609643 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.609644 LLDP, length 82 [|LLDP] 17:44:34.609683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.609683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.609685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.609686 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.609688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.609689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.609690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.609705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.609706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.609709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.609710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.609712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.620647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.620649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.620650 LLDP, length 82 [|LLDP] 17:44:34.620692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.620694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047c d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.620695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.620696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.620698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.620699 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.620700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.620701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.620702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.620727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.620729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.620731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.628903 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.628904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.628905 LLDP, length 82 [|LLDP] 17:44:34.628947 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.628948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.628949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.628951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.628952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.628966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.628967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.628969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.628971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.628972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.628973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.628975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.639915 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.639917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.639918 LLDP, length 82 [|LLDP] 17:44:34.639962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.639963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048b 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.639965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.639966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.639967 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.639968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.639969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.639971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.639986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.639987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.639990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.639991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.650924 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.650926 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.650927 LLDP, length 82 [|LLDP] 17:44:34.650970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.650971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0493 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.650973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.650974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.650975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.650976 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.650977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.650978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.650980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.651004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.651006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.651009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.659179 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.659181 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.659182 LLDP, length 82 [|LLDP] 17:44:34.659226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.659227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.659228 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.659229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.659230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.659232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.659247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.659248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.659251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.659252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.659253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.659254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.670197 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.670199 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.670200 LLDP, length 82 [|LLDP] 17:44:34.670244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.670245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a2 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.670247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.670248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.670249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.670250 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.670251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.670253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.670254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.670278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.670279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.670282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.681205 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.681207 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.681214 LLDP, length 82 [|LLDP] 17:44:34.681254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.681255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ab 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.681256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.681258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.681259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.681260 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.681262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.681263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.681264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.681289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.681290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.681293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.689460 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.689462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.689463 LLDP, length 82 [|LLDP] 17:44:34.689505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.689506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.689507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.689509 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.689510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.689511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.689512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.689527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.689528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.689530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.689532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.689533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.700470 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.700472 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.700473 LLDP, length 82 [|LLDP] 17:44:34.700516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.700517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b9 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.700518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.700520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.700521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.700522 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.700523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.700524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.700525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.700550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.700552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.700555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.708723 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.708724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.708725 LLDP, length 82 [|LLDP] 17:44:34.708768 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.708769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.708771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.708772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.708773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.708786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.708787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.708790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.708791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.708792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.708793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.708795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.719734 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.719736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.719749 LLDP, length 82 [|LLDP] 17:44:34.719784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.719785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c8 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.719787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.719788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.719789 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.719790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.719792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.719793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.719808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.719809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.719812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.719814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.730749 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.730751 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.730752 LLDP, length 82 [|LLDP] 17:44:34.730788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.730788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d0 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.730790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.730791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.730792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.730793 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.730794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.730796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.730797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.730821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.730823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.730825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.739002 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.739003 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.739004 LLDP, length 82 [|LLDP] 17:44:34.739047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.739048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.739049 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.739051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.739052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.739053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.739068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.739069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.739072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.739073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.739074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.739076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.750014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.750016 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.750018 LLDP, length 82 [|LLDP] 17:44:34.750061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.750061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04df 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.750063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.750064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.750065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.750066 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.750067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.750069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.750070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.750094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.750096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.750098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.761021 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.761023 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.761024 LLDP, length 82 [|LLDP] 17:44:34.761067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.761068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.761070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.761071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.761072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.761073 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.761075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.761076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.761077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.761101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.761102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.761105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.769280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.769282 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.769283 LLDP, length 82 [|LLDP] 17:44:34.769325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.769326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.769327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.769328 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.769329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.769330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.769332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.769347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.769348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.769351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.769352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.769353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.780288 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.780290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.780291 LLDP, length 82 [|LLDP] 17:44:34.780332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.780333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f6 a3d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.780335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.780336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.780337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.780338 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.780339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.780341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.780342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.780366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.780367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.780370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.791312 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.791313 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.791314 LLDP, length 82 [|LLDP] 17:44:34.791351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.791351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ff 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.791353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.791354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.791355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.791368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.791370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.791372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.791374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.791375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.791377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.791378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.799557 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.799559 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.799560 LLDP, length 82 [|LLDP] 17:44:34.799603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.799604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.799605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.799606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.799607 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.799608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.799609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.799610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.799626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.799627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.799630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.799631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.810568 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.810570 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.810570 LLDP, length 82 [|LLDP] 17:44:34.810613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.810614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050d bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.810615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.810617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.810618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.810619 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.810620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.810621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.810622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.810647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.810648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.810651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.818828 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.818830 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.818831 LLDP, length 82 [|LLDP] 17:44:34.818874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.818875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.818877 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.818878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.818879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.818881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.818895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.818896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.818898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.818899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.818901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.818902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.829833 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.829835 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.829835 LLDP, length 82 [|LLDP] 17:44:34.829877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.829878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051c 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.829880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.829880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.829882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.829883 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.829884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.829885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.829887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.829911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.829913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.829916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.840843 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.840845 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.840846 LLDP, length 82 [|LLDP] 17:44:34.840888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.840888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0524 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.840890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.840891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.840892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.840893 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.840895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.840896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.840897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.840921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.840922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.840925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.849106 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.849108 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.849109 LLDP, length 82 [|LLDP] 17:44:34.849153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.849154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.849155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.849156 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.849157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.849158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.849160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.849175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.849177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.849179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.849181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.849182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.860115 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.860116 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.860117 LLDP, length 82 [|LLDP] 17:44:34.860160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.860161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0533 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.860163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.860164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.860165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.860166 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.860168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.860169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.860170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.860195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.860196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.860199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.871123 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.871125 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.871126 LLDP, length 82 [|LLDP] 17:44:34.871169 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.871170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053b f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.871171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.871172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.871173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.871187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.871189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.871191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.871193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.871194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.871196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.871197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.879379 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.879381 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.879382 LLDP, length 82 [|LLDP] 17:44:34.879426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.879427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.879429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.879430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.879431 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.879433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.879434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.879435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.879451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.879453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.879455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.879457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.890392 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.890394 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.890395 LLDP, length 82 [|LLDP] 17:44:34.890437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.890438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054a a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.890440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.890441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.890442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.890443 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.890444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.890446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.890447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.890471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.890473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.890475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.898652 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.898653 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.898654 LLDP, length 82 [|LLDP] 17:44:34.898691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.898692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0550 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.898694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.898695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.898696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.898698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.898713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.898714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.898716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.898718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.898719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.898720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.909661 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.909663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.909664 LLDP, length 82 [|LLDP] 17:44:34.909699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.909700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.909701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.909702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.909704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.909705 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.909706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.909707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.909708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.909733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.909734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.909737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.920674 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.920675 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.920676 LLDP, length 82 [|LLDP] 17:44:34.920711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.920713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0561 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.920714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.920715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.920717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.920718 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.920719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.920721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.920722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.920745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.920747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.920750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.928925 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.928927 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.928928 LLDP, length 82 [|LLDP] 17:44:34.928969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.928970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.928972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.928973 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.928974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.928975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.928976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.928991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.928993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.928995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.928995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.928997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.939934 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.939935 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.939936 LLDP, length 82 [|LLDP] 17:44:34.939979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.939980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0570 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.939981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.939983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.939984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.939985 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.939986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.939987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.939989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.940013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.940014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.940017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.950944 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.950946 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.950947 LLDP, length 82 [|LLDP] 17:44:34.950989 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.950989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0578 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.950991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.950992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.950993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.951007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.951008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.951010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.951012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.951013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.951015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.951016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.959201 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.959203 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.959204 LLDP, length 82 [|LLDP] 17:44:34.959245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.959246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.959247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.959248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.959249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.959250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.959251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.959253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.959268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.959269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.959271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.959273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.970206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.970208 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.970209 LLDP, length 82 [|LLDP] 17:44:34.970244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.970245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0587 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.970246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.970248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.970249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.970250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.970251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.981227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981242 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.981244 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.981245 LLDP, length 82 [|LLDP] 17:44:34.981275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.981277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058f f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.981278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.981279 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.981281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.981282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.981292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.981293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.981294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.989482 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.989483 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.989484 LLDP, length 82 [|LLDP] 17:44:34.989530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.989531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.989532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.989533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.989534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.989536 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.989537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.989538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.989562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.989563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.989567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.989569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.000489 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.000491 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.000492 LLDP, length 82 [|LLDP] 17:44:35.000534 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.000535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.000537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.000538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.000551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.000553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.000554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.000555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.000556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.000558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.000572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.000574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.008746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.008748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.008748 LLDP, length 82 [|LLDP] 17:44:35.008790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.008791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a4 f09b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.008793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.008794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.008795 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.008796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.008797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.008812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.008814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.008815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.008827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.008830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.019771 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.019779 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.019780 LLDP, length 82 [|LLDP] 17:44:35.019831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.019832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.019833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.019834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.019835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.019836 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.019838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.019839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.019865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.019868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.019872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.019874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.035179 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.035181 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.035182 LLDP, length 82 [|LLDP] 17:44:35.035225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.035226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b5 bd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.035228 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.035229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.035230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.035244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.035246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.035247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.035248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.035249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.035263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.035265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.039026 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.039028 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.039029 LLDP, length 82 [|LLDP] 17:44:35.039073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.039074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.039076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.039077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.039078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.039079 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.039080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.039081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.039104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.039121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.039125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.039127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.050067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.050075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.050076 LLDP, length 82 [|LLDP] 17:44:35.050132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.050133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c4 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.050135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.050137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.050138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.050139 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.050141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.050142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.050180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.050183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.050188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.050190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.061061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.061063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.061071 LLDP, length 82 [|LLDP] 17:44:35.061119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.061120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cc d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.061122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.061123 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.061125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.061126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.061143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.061145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.061147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.061148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.061161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.061164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.069307 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.069308 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.069309 LLDP, length 82 [|LLDP] 17:44:35.069352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.069354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.069355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.069356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.069358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.069359 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.069360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.069362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.069386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.069387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.069390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.069393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.080312 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.080313 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.080314 LLDP, length 82 [|LLDP] 17:44:35.080357 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.080358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05db 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.080359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.080361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.080373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.080375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.080376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.080377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.080379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.080380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.080395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.080397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.095787 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.095788 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.095789 LLDP, length 82 [|LLDP] 17:44:35.095824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.095825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e3 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.095827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.095828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.095830 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.095831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.095832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.095848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.095849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.095851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.095862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.095864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.099581 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.099583 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.099584 LLDP, length 82 [|LLDP] 17:44:35.099624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.099625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.099627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.099628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.099629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.099630 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.099631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.099632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.099655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.099658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.099661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.099663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.110655 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.110657 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.110659 LLDP, length 82 [|LLDP] 17:44:35.110757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.110758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f2 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.110760 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.110761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.110763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.110795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.110799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.110800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.110802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.110803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.110820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.110822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.118914 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.118917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.118919 LLDP, length 82 [|LLDP] 17:44:35.119015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.119016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f8 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.119018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.119019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.119020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.119022 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.119023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.119024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.119068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.119071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.119076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.119078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.129894 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.129897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.129898 LLDP, length 82 [|LLDP] 17:44:35.129973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.129974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.129976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.129977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.129978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.129979 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.129981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.129982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.130017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.130019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.130023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.130025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.140871 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.140873 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.140873 LLDP, length 82 [|LLDP] 17:44:35.140920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.140920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0609 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.140922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.140924 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.140925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.140926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.140942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.140944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.140945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.140947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.140960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.140962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.149124 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.149126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.149127 LLDP, length 82 [|LLDP] 17:44:35.149170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.149171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.149172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.149174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.149175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.149176 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.149177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.149178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.149201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.149202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.149206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.149208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.160136 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.160138 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.160139 LLDP, length 82 [|LLDP] 17:44:35.160182 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.160183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0618 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.160185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.160186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.160198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.160200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.160201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.160202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.160204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.160205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.160219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.160222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.171142 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.171144 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.171145 LLDP, length 82 [|LLDP] 17:44:35.171187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.171188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0620 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.171189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.171191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.171192 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.171193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.171194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.171209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.171211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.171212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.171224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.171227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.179413 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.179415 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.179422 LLDP, length 82 [|LLDP] 17:44:35.179468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.179469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.179471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.179472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.179473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.179474 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.179475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.179476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.179502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.179504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.179507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.179510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.190414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.190416 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.190417 LLDP, length 82 [|LLDP] 17:44:35.190462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.190463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.190465 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.190466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.190467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.190480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.190482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.190483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.190484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.190485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.190499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.190501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.198679 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.198687 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.198688 LLDP, length 82 [|LLDP] 17:44:35.198736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.198737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0635 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.198738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.198740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.198741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.198742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.198743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.198745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.198773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.198775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.198779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.198781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.209687 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.209689 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.209696 LLDP, length 82 [|LLDP] 17:44:35.209744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.209745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.209747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.209748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.209749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.209750 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.209752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.209753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.209779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.209781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.209784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.209787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.220715 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.220723 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.220724 LLDP, length 82 [|LLDP] 17:44:35.220777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.220778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0646 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.220780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.220781 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.220782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.220783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.220800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.220803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.220804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.220805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.220818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.220820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.228955 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.228957 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.228958 LLDP, length 82 [|LLDP] 17:44:35.229012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.229013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064c f09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.229014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.229016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.229017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.229018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.229020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.229021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.229047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.229049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.229053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.229055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.239965 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.239967 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.239974 LLDP, length 82 [|LLDP] 17:44:35.240018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.240019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.240020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.240022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.240035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.240036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.240038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.240039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.240040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.240042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.240062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.240065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.250974 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.250976 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.250977 LLDP, length 82 [|LLDP] 17:44:35.251028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.251029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065d bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.251031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.251032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.251033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.251035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.251036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.251052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.251054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.251056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.251073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.251076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.259234 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.259236 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.259243 LLDP, length 82 [|LLDP] 17:44:35.259290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.259291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.259292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.259293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.259294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.259296 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.259297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.259298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.259336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.259339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.259343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.259345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.270238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.270240 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.270247 LLDP, length 82 [|LLDP] 17:44:35.270290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.270291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066c 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.270292 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.270294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.270295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.270309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.270311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.270313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.270314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.270315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.270328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.270331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.281252 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.281253 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.281254 LLDP, length 82 [|LLDP] 17:44:35.281292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.281293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0674 d707 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.281295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.281296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.281298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.281299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.281300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.281301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.281325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.281327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.281331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.281333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.289500 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.289502 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.289503 LLDP, length 82 [|LLDP] 17:44:35.289546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.289547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.289549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.289550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.289551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.289552 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.289553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.289555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.289577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.289579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.289582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.289584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.300512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.300514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.300515 LLDP, length 82 [|LLDP] 17:44:35.300558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.300559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0683 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.300561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.300562 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.300563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.300564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.300578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.300580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.300581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.300582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.300595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.300598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.308769 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.308771 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.308772 LLDP, length 82 [|LLDP] 17:44:35.308813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.308814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0689 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.308815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.308816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.308818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.308819 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.308820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.308821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.308845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.308847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.308850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.308851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.319786 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.319789 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.319795 LLDP, length 82 [|LLDP] 17:44:35.319835 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.319836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.319837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.319839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.319867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.319869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.319870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.319871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.319873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.319874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.319889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.319891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.330794 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.330795 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.330797 LLDP, length 82 [|LLDP] 17:44:35.330841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.330843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069a a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.330844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.330845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.330846 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.330847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.330849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.330864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.330866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.330867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.330879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.330882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.339052 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.339054 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.339055 LLDP, length 82 [|LLDP] 17:44:35.339103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.339104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a0 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.339106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.339107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.339108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.339110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.339111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.339112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.339136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.339138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.339142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.339144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.350058 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.350060 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.350061 LLDP, length 82 [|LLDP] 17:44:35.350107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.350108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.350109 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.350110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.350111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.350126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.350127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.350129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.350130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.350131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.350145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.350148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.361069 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.361071 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.361078 LLDP, length 82 [|LLDP] 17:44:35.361116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.361117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b1 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.361119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.361120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.361121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.361122 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.361123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.361125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.361149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.361151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.361154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.361156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.369322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.369324 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.369325 LLDP, length 82 [|LLDP] 17:44:35.369369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.369370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.369371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.369372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.369374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.369375 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.369376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.369377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.369400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.369402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.369405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.369407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.380333 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.380334 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.380336 LLDP, length 82 [|LLDP] 17:44:35.380379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.380380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c0 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.380382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.380383 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.380384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.380385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.380399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.380401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.380403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.380404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.380417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.380419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.388593 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.388595 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.388596 LLDP, length 82 [|LLDP] 17:44:35.388637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.388638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c6 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.388640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.388641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.388642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.388643 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.388644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.388645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.388669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.388670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.388674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.388676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.399607 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.399610 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.399617 LLDP, length 82 [|LLDP] 17:44:35.399661 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.399662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.399664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.399665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.399679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.399681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.399683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.399684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.399685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.399687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.399703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.399706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.410613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.410615 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.410616 LLDP, length 82 [|LLDP] 17:44:35.410655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.410656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d7 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.410657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.410658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.410659 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.410661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.410662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.410678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.410679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.410681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.410693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.410695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.418869 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.418871 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.418872 LLDP, length 82 [|LLDP] 17:44:35.418916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.418917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dd d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.418919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.418920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.418921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.418923 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.418924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.418925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.418949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.418951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.418955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.418958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.429879 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.429881 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.429882 LLDP, length 82 [|LLDP] 17:44:35.429925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.429926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.429927 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.429929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.429930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.429943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.429945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.429947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.429948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.429949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.429963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.429965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.440889 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.440891 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.440892 LLDP, length 82 [|LLDP] 17:44:35.440935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.440935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ee a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.440937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.440938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.440939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.440940 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.440942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.440943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.440965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.440967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.440970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.440972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.449147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.449148 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.449149 LLDP, length 82 [|LLDP] 17:44:35.449190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.449191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f4 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.449193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.449194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.449195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.449196 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.449198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.449199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.449222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.449224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.449227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.449230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.460159 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.460161 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.460162 LLDP, length 82 [|LLDP] 17:44:35.460200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.460201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.460202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.460204 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.460205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.460206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.460219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.460221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.460222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.460223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.460236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.460239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.471168 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.471170 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.471171 LLDP, length 82 [|LLDP] 17:44:35.471209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.471210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0705 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.471211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.471212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.471214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.471215 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.471216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.471217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.471240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.471242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.471245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.471247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.479424 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.479425 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.479427 LLDP, length 82 [|LLDP] 17:44:35.479471 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.479472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c 0a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.479473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.479475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.479487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.479489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.479490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.479492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.479493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.479494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.479509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.479511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.490433 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.490435 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.490436 LLDP, length 82 [|LLDP] 17:44:35.490478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.490479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0714 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.490481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.490482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.490483 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.490484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.490485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.490499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.490501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.490502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.490514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.490516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.498687 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.498689 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.498690 LLDP, length 82 [|LLDP] 17:44:35.498732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.498733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071a bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.498734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.498735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.498737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.498738 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.498739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.498740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.498763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.498765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.498769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.498771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.509701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.509703 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.509704 LLDP, length 82 [|LLDP] 17:44:35.509746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.509747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.509749 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.509750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.509751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.509764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.509766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.509767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.509768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.509770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.509783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.509786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.520712 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.520714 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.520715 LLDP, length 82 [|LLDP] 17:44:35.520756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.520757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072b 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.520759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.520760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.520761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.520762 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.520763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.520764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.520789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.520791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.520794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.520796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.528968 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.528969 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.528970 LLDP, length 82 [|LLDP] 17:44:35.529012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.529013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0731 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.529014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.529016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.529017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.529018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.529019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.529021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.529043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.529045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.529048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.529051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.539977 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.539979 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.539980 LLDP, length 82 [|LLDP] 17:44:35.540022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.540023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.540024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.540026 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.540027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.540028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.540042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.540044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.540045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.540046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.540059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.540062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.550987 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.550989 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.550990 LLDP, length 82 [|LLDP] 17:44:35.551032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.551033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0742 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.551035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.551036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.551037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.551039 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.551040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.551041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.551064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.551065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.551069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.551071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.559244 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.559246 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.559247 LLDP, length 82 [|LLDP] 17:44:35.559288 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.559289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0748 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.559291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.559292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.559313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.559316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.559317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.559318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.559320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.559321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.559336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.559339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.570257 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.570259 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.570260 LLDP, length 82 [|LLDP] 17:44:35.570303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.570304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.570305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.570306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.570307 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.570309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.570310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.570324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.570326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.570327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.570339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.570341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.581269 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.581270 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.581271 LLDP, length 82 [|LLDP] 17:44:35.581308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.581308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0759 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.581310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.581312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.581313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.581314 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.581315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.581316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.581339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.581341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.581344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.581346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.589524 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.589526 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.589527 LLDP, length 82 [|LLDP] 17:44:35.589564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.589564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.589566 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.589567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.589568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.589581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.589583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.589584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.589585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.589587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.589600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.589602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.600533 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.600534 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.600535 LLDP, length 82 [|LLDP] 17:44:35.600579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.600580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0768 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.600581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.600582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.600583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.600585 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.600586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.600587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.600611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.600613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.600616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.600618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.608791 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.608793 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.608794 LLDP, length 82 [|LLDP] 17:44:35.608838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.608839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076e bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.608841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.608842 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.608843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.608843 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.608845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.608846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.608869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.608871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.608875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.608877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.619800 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.619801 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.619802 LLDP, length 82 [|LLDP] 17:44:35.619846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.619846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.619848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.619849 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.619850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.619851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.619865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.619867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.619868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.619869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.619883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.619885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.630813 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.630815 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.630816 LLDP, length 82 [|LLDP] 17:44:35.630853 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.630854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.630856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.630857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.630858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.630860 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.630861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.630862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.630885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.630887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.630890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.630893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.639070 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.639072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.639073 LLDP, length 82 [|LLDP] 17:44:35.639110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.639111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0785 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.639113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.639114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.639126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.639128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.639129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.639130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.639131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.639133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.639148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.639150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.650083 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.650085 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.650086 LLDP, length 82 [|LLDP] 17:44:35.650128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.650129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e 3d6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.650131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.650132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.650133 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.650135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.650136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.650151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.650153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.650154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.650166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.650168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.661090 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.661092 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.661093 LLDP, length 82 [|LLDP] 17:44:35.661138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.661138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0796 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.661140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.661141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.661142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.661143 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.661144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.661146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.661171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.661173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.661176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.661179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.669346 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.669348 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.669349 LLDP, length 82 [|LLDP] 17:44:35.669397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.669398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079c f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.669400 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.669401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.669402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.669416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.669418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.669420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.669421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.669422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.669436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.669438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.680355 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.680357 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.680358 LLDP, length 82 [|LLDP] 17:44:35.680402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.680403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.680404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.680406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.680407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.680408 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.680409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.680410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.680433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.680435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.680439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.680441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.688613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.688615 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.688616 LLDP, length 82 [|LLDP] 17:44:35.688658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.688659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ab a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.688661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.688662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.688663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.688664 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.688666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.688667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.688689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.688691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.688694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.688696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.699627 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.699629 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.699630 LLDP, length 82 [|LLDP] 17:44:35.699673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.699673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b4 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.699675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.699676 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.699677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.699678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.699692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.699694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.699696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.699697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.699709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.699711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.710635 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.710636 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.710637 LLDP, length 82 [|LLDP] 17:44:35.710672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.710673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bc 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.710674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.710675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.710677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.710678 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.710679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.710680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.710703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.710705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.710709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.710711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.718888 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.718889 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.718891 LLDP, length 82 [|LLDP] 17:44:35.718932 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.718933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c2 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.718934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.718935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.718947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.718949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.718950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.718951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.718953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.718954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.718968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.718970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.729899 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.729901 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.729902 LLDP, length 82 [|LLDP] 17:44:35.729944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.729945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb 23d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.729947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.729948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.729949 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.729950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.729951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.729966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.729968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.729969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.729981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.729984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.740910 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.740912 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.740913 LLDP, length 82 [|LLDP] 17:44:35.740956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.740957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.740959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.740960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.740961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.740962 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.740963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.740965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.740987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.740989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.740993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.740995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.749172 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.749173 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.749174 LLDP, length 82 [|LLDP] 17:44:35.749216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.749217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d9 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.749218 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.749220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.749221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.749234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.749235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.749237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.749238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.749239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.749252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.749254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.760178 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.760180 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.760181 LLDP, length 82 [|LLDP] 17:44:35.760223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.760224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.760226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.760227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.760228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.760229 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.760230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.760232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.760255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.760257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.760260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.760262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.771188 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.771190 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.771191 LLDP, length 82 [|LLDP] 17:44:35.771227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.771228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ea a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.771229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.771230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.771231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.771233 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.771234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.771235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.771258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.771259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.771263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.771265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.779444 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.779446 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.779447 LLDP, length 82 [|LLDP] 17:44:35.779490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.779491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f0 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.779493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.779494 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.779495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.779496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.779511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.779513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.779514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.779515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.779528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.779530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.790455 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.790457 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.790458 LLDP, length 82 [|LLDP] 17:44:35.790500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.790501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.790503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.790504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.790505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.790506 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.790507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.790508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.790531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.790533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.790537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.790539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.798710 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.798712 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.798713 LLDP, length 82 [|LLDP] 17:44:35.798756 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.798757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ff a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.798758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.798759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.798772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.798774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.798775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.798776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.798777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.798778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.798793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.798796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.809722 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.809724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.809725 LLDP, length 82 [|LLDP] 17:44:35.809769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.809770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0808 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.809771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.809773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.809774 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.809775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.809777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.809790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.809792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.809793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.809805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.809808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.820733 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.820735 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.820736 LLDP, length 82 [|LLDP] 17:44:35.820782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.820783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0810 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.820785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.820786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.820787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.820788 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.820789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.820791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.820814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.820816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.820820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.820822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.828997 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.828999 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.829000 LLDP, length 82 [|LLDP] 17:44:35.829038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.829039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0816 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.829041 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.829042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.829043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.829057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.829059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.829060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.829062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.829063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.829076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.829079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.840002 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.840004 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.840005 LLDP, length 82 [|LLDP] 17:44:35.840047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.840048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.840050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.840051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.840052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.840053 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.840054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.840055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.840078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.840080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.840084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.840086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.851007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.851009 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.851010 LLDP, length 82 [|LLDP] 17:44:35.851050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.851051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0827 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.851053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.851054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.851055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.851056 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.851058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.851059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.851081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.851082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.851086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.851087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.859270 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.859272 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.859273 LLDP, length 82 [|LLDP] 17:44:35.859325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.859326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.859327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.859329 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.859330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.859331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.859344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.859346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.859348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.859349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.859363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.859365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.870276 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.870277 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.870278 LLDP, length 82 [|LLDP] 17:44:35.870321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.870322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.870324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.870325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.870326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.870327 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.870329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.870330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.870354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.870356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.870360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.870362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.881288 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.881290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.881291 LLDP, length 82 [|LLDP] 17:44:35.881334 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.881334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.881336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.881337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.881350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.881351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.881353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.881354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.881355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.881356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.881371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.881373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.889549 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.889551 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.889552 LLDP, length 82 [|LLDP] 17:44:35.889589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.889590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0844 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.889591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.889592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.889594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.889595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.889596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.889611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.889613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.889614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.889626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.889628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.900552 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.900554 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.900555 LLDP, length 82 [|LLDP] 17:44:35.900597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.900598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d 5707 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.900600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.900601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.900602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.900603 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.900604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.900605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.900630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.900632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.900635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.900652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.908852 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.908854 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.908855 LLDP, length 82 [|LLDP] 17:44:35.908910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.908911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0853 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.908913 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.908914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.908915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.908939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.908942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.908944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.908945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.908947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.908962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.908964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.919831 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.919833 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.919840 LLDP, length 82 [|LLDP] 17:44:35.919890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.919891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.919892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.919893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.919895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.919896 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.919897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.919898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.919925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.919927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.919930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.919933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.930830 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.930831 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.930832 LLDP, length 82 [|LLDP] 17:44:35.930874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.930875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0864 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.930877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.930878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.930879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.930880 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.930881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.930883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.930906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.930908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.930911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.930913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.939084 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.939085 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.939086 LLDP, length 82 [|LLDP] 17:44:35.939125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.939125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.939127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.939129 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.939130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.939131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.939145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.939146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.939148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.939149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.939162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.939164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.950096 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.950098 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.950099 LLDP, length 82 [|LLDP] 17:44:35.950137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.950138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.950139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.950140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.950141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.950142 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.950143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.950145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.950167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.950169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.950172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.950174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.961104 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.961105 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.961106 LLDP, length 82 [|LLDP] 17:44:35.961144 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.961145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087b 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.961146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.961148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.961159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.961161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.961162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.961163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.961164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.961165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.961180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.961182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.969360 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.969361 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.969362 LLDP, length 82 [|LLDP] 17:44:35.969396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.969397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0881 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.969399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.969400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.969401 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.969402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.969404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.969417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.969418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.969420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.969431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.969433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.980371 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.980373 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.980374 LLDP, length 82 [|LLDP] 17:44:35.980411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.980411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a 3d68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.980413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.980414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.980416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.980417 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.980418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.980419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.980442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.980444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.980447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.980450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.988628 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.988630 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.988631 LLDP, length 82 [|LLDP] 17:44:35.988670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.988671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0890 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.988672 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.988673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.988674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.988686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.988688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.988689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.988691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.988692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.988705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.988707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.999642 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.999643 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.999644 LLDP, length 82 [|LLDP] 17:44:35.999681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.999682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0898 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.999684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.999685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.999686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.999688 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.999689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.999690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.999712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.999713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.999717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.999719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.010650 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.010651 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.010652 LLDP, length 82 [|LLDP] 17:44:36.010689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.010690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.010691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.010693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.010694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.010695 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.010696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.010698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.010720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.010722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.010725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.010727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.018904 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.018905 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.018906 LLDP, length 82 [|LLDP] 17:44:36.018941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.018942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a7 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.018944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.018945 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.018946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.018948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.018960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.018962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.018963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.018964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.018976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.018978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.029915 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.029917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.029918 LLDP, length 82 [|LLDP] 17:44:36.029957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.029957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b0 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.029959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.029960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.029961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.029963 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.029964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.029965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.029988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.029990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.029993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.029995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.040925 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.040927 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.040928 LLDP, length 82 [|LLDP] 17:44:36.040964 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.040965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b8 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.040967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.040968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.040979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.040981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.040982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.040983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.040984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.040985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.041000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.041002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.049182 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.049184 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.049185 LLDP, length 82 [|LLDP] 17:44:36.049220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.049221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08be bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.049222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.049223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.049225 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.049226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.049227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.049240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.049242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.049243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.049255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.049257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.060191 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.060193 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.060194 LLDP, length 82 [|LLDP] 17:44:36.060230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.060231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.060232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.060233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.060235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.060236 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.060237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.060238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.060260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.060262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.060265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.060267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.071202 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.071203 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.071204 LLDP, length 82 [|LLDP] 17:44:36.071240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.071241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cf 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.071242 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.071243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.071244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.071257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.071259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.071260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.071261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.071263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.071275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.071277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.079461 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.079462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.079463 LLDP, length 82 [|LLDP] 17:44:36.079500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.079501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d5 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.079503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.079504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.079505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.079507 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.079508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.079509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.079532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.079533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.079537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.079540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.090469 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.090471 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.090472 LLDP, length 82 [|LLDP] 17:44:36.090508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.090509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.090511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.090512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.090513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.090515 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.090516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.090517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.090540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.090542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.090545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.090547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.098732 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.098733 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.098734 LLDP, length 82 [|LLDP] 17:44:36.098765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.098766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e4 8a3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.098768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.098769 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.098771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.098772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.098786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.098788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.098789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.098790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.098803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.098805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.109736 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.109737 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.109739 LLDP, length 82 [|LLDP] 17:44:36.109777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.109778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ec f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.109779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.109780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.109781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.109783 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.109784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.109785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.109807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.109809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.109812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.109814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.120746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.120748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.120749 LLDP, length 82 [|LLDP] 17:44:36.120783 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.120784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.120785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.120786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.120798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.120799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.120800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.120802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.120803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.120804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.120818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.120820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.129007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.129008 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.129009 LLDP, length 82 [|LLDP] 17:44:36.129045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.129046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fb a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.129048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.129049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.129050 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.129051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.129052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.129066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.129068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.129069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.129081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.129083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.140014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.140015 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.140016 LLDP, length 82 [|LLDP] 17:44:36.140053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.140054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0904 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.140056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.140057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.140058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.140060 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.140061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.140062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.140085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.140087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.140090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.140093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.151023 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.151024 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.151025 LLDP, length 82 [|LLDP] 17:44:36.151062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.151063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090c 70a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.151064 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.151065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.151066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.151078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.151080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.151082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.151083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.151084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.151097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.151098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.159289 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.159290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.159291 LLDP, length 82 [|LLDP] 17:44:36.159336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.159337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0912 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.159338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.159340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.159341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.159342 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.159343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.159344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.159366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.159368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.159371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.159373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.170293 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.170294 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.170295 LLDP, length 82 [|LLDP] 17:44:36.170332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.170332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.170334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.170335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.170336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.170337 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.170339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.170340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.170363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.170365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.170368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.170371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.178547 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.178549 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.178550 LLDP, length 82 [|LLDP] 17:44:36.178585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.178586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.178588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.178589 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.178590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.178592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.178604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.178606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.178607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.178608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.178621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.178623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.189562 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.189563 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.189564 LLDP, length 82 [|LLDP] 17:44:36.189602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.189603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0929 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.189605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.189606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.189607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.189608 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.189610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.189611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.189634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.189635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.189638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.189641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.200570 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.200571 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.200572 LLDP, length 82 [|LLDP] 17:44:36.200609 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.200610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.200612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.200613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.200624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.200627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.200628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.200629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.200630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.200632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.200646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.200648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.208826 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.208827 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.208828 LLDP, length 82 [|LLDP] 17:44:36.208865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.208866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0938 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.208868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.208869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.208870 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.208871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.208872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.208885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.208887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.208888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.208900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.208902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.219835 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.219836 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.219837 LLDP, length 82 [|LLDP] 17:44:36.219877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.219878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0940 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.219880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.219881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.219882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.219883 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.219885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.219886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.219909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.219911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.219914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.219917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.230859 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.230861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.230862 LLDP, length 82 [|LLDP] 17:44:36.230911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.230912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.230913 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.230914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.230915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.230929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.230931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.230932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.230934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.230935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.230949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.230952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.239108 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.239109 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.239110 LLDP, length 82 [|LLDP] 17:44:36.239149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.239150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094f a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.239152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.239153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.239155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.239156 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.239157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.239158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.239180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.239182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.239186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.239188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.250115 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.250117 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.250118 LLDP, length 82 [|LLDP] 17:44:36.250154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.250155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0958 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.250157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.250158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.250159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.250160 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.250161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.250162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.250184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.250186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.250189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.250191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.261125 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.261126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.261127 LLDP, length 82 [|LLDP] 17:44:36.261165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.261166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0960 709b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.261167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.261168 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.261170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.261171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.261184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.261185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.261187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.261188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.261201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.261203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.269381 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.269383 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.269384 LLDP, length 82 [|LLDP] 17:44:36.269421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.269422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0966 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.269423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.269424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.269426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.269427 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.269428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.269429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.269451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.269454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.269457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.269459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.280413 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.280421 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.280422 LLDP, length 82 [|LLDP] 17:44:36.280470 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.280472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.280473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.280478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.280492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.280495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.280496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.280497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.280498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.280500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.280516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.280518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.288658 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.288659 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.288660 LLDP, length 82 [|LLDP] 17:44:36.288706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.288707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.288708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.288709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.288710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.288711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.288713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.288728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.288730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.288732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.288744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.288747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.299667 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.299668 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.299669 LLDP, length 82 [|LLDP] 17:44:36.299714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.299715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.299717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.299718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.299719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.299720 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.299722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.299723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.299747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.299750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.299753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.299755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.310682 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.310684 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.310685 LLDP, length 82 [|LLDP] 17:44:36.310730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.310730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.310732 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.310733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.310734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.310748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.310750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.310752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.310753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.310754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.310768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.310770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.318935 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.318936 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.318937 LLDP, length 82 [|LLDP] 17:44:36.318974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.318975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098c 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.318977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.318978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.318980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.318981 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.318982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.318983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.319008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.319010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.319012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.319014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.329945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.329947 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.329948 LLDP, length 82 [|LLDP] 17:44:36.329991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.329992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0994 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.329994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.329995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.329996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.329998 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.329999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.330000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.330037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.330039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.330042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.330044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.340954 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.340955 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.340956 LLDP, length 82 [|LLDP] 17:44:36.341000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.341002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.341003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.341005 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.341006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.341007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.341023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.341024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.341025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.341027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.341040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.341043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.349222 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.349224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.349231 LLDP, length 82 [|LLDP] 17:44:36.349280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.349281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a3 a3d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.349282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.349284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.349285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.349286 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.349287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.349288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.349315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.349317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.349321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.349323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.360232 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.360235 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.360242 LLDP, length 82 [|LLDP] 17:44:36.360289 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.360290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ac 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.360291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.360293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.360310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.360312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.360313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.360314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.360315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.360317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.360333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.360336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.371238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.371240 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.371241 LLDP, length 82 [|LLDP] 17:44:36.371295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.371296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b4 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.371297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.371298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.371299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.371301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.371312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.371329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.371332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.371333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.371346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.371348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.379493 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.379495 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.379502 LLDP, length 82 [|LLDP] 17:44:36.379548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.379548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ba bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.379550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.379551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.379553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.379554 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.379555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.379556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.379581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.379584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.379587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.379589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.390501 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.390503 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.390504 LLDP, length 82 [|LLDP] 17:44:36.390551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.390552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.390553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.390554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.390555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.390569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.390571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.390573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.390574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.390575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.390589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.390592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.398757 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.398759 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.398760 LLDP, length 82 [|LLDP] 17:44:36.398808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.398809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.398811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.398812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.398813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.398814 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.398815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.398817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.398840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.398842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.398846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.398848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.409770 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.409772 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.409779 LLDP, length 82 [|LLDP] 17:44:36.409820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.409821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d1 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.409823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.409824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.409825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.409826 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.409827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.409829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.409854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.409856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.409859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.409862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.420777 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.420778 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.420779 LLDP, length 82 [|LLDP] 17:44:36.420827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.420829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.420830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.420832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.420833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.420834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.420849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.420851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.420853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.420854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.420868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.420871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.429038 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.429040 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.429041 LLDP, length 82 [|LLDP] 17:44:36.429084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.429085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e0 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.429087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.429088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.429089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.429090 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.429091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.429093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.429121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.429123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.429126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.429128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.440056 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.440058 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.440059 LLDP, length 82 [|LLDP] 17:44:36.440101 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.440102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e8 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.440104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.440105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.440118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.440120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.440122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.440123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.440124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.440126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.440141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.440142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.451067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.451075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.451076 LLDP, length 82 [|LLDP] 17:44:36.451131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.451132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.451134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.451135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.451136 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.451137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.451138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.451159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.451162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.451163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.451176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.451179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.459336 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.459344 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.459346 LLDP, length 82 [|LLDP] 17:44:36.459392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.459393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f7 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.459395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.459397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.459398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.459400 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.459401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.459402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.459429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.459431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.459435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.459437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.470322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.470323 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.470324 LLDP, length 82 [|LLDP] 17:44:36.470370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.470371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a00 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.470372 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.470373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.470375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.470388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.470390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.470391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.470392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.470394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.470407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.470409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.478582 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.478584 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.478585 LLDP, length 82 [|LLDP] 17:44:36.478629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.478630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.478632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.478633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.478635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.478636 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.478637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.478638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.478662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.478664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.478668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.478670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.489585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.489586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.489587 LLDP, length 82 [|LLDP] 17:44:36.489626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.489627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0e bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.489629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.489630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.489631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.489632 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.489633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.489635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.489657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.489659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.489663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.489665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.500593 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.500594 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.500596 LLDP, length 82 [|LLDP] 17:44:36.500639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.500640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 23ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.500641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.500642 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.500644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.500645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.500658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.500660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.500661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.500662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.500675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.500678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.508849 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.508851 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.508852 LLDP, length 82 [|LLDP] 17:44:36.508890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.508891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.508892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.508893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.508894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.508895 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.508897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.508898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.508920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.508922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.508925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.508927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.519860 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.519861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.519862 LLDP, length 82 [|LLDP] 17:44:36.519900 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.519900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a25 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.519902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.519903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.519914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.519916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.519917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.519918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.519920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.519921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.519934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.519937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.530868 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.530869 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.530871 LLDP, length 82 [|LLDP] 17:44:36.530907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.530908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.530909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.530911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.530912 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.530913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.530914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.530928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.530930 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.530931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.530944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.530946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.539125 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.539126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.539127 LLDP, length 82 [|LLDP] 17:44:36.539164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.539165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a34 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.539167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.539168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.539169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.539171 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.539172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.539173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.539195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.539197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.539200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.539203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.550142 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.550143 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.550144 LLDP, length 82 [|LLDP] 17:44:36.550184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.550184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3c f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.550186 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.550187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.550188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.550200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.550202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.550204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.550205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.550206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.550220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.550223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.561148 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.561149 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.561150 LLDP, length 82 [|LLDP] 17:44:36.561187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.561188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.561190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.561191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.561192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.561194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.561195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.561196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.561218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.561220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.561224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.561227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.569403 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.569404 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.569405 LLDP, length 82 [|LLDP] 17:44:36.569442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.569443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4b a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.569445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.569446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.569447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.569448 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.569449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.569451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.569473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.569475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.569478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.569480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.580414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.580415 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.580416 LLDP, length 82 [|LLDP] 17:44:36.580452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.580453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a54 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.580454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.580456 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.580457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.580458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.580471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.580473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.580474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.580475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.580488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.580491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.588669 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.588670 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.588671 LLDP, length 82 [|LLDP] 17:44:36.588705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.588705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.588707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.588708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.588709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.588710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.588712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.588713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.588734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.588736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.588739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.588741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.599680 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.599682 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.599683 LLDP, length 82 [|LLDP] 17:44:36.599720 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.599720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a62 bd6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.599722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.599723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.599735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.599736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.599738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.599739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.599740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.599742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.599756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.599758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.610698 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.610699 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.610700 LLDP, length 82 [|LLDP] 17:44:36.610732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.610733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.610734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.610735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.610736 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.610738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.610739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.610752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.610755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.610756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.610767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.610770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.618949 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.618950 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.618951 LLDP, length 82 [|LLDP] 17:44:36.618987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.618988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.618989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.618990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.618991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.618992 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.618993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.618994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.619016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.619019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.619022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.619024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.629957 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.629958 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.629959 LLDP, length 82 [|LLDP] 17:44:36.629995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.629996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a79 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.629997 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.629999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.630000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.630012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.630014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.630015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.630017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.630018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.630031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.630033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.640969 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.640970 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.640972 LLDP, length 82 [|LLDP] 17:44:36.641007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.641008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.641010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.641011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.641012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.641014 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.641015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.641016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.641038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.641040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.641043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.641045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.649227 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.649228 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.649229 LLDP, length 82 [|LLDP] 17:44:36.649265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.649266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a88 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.649268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.649269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.649270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.649272 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.649273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.649274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.649296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.649298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.649301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.649304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.660236 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.660238 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.660239 LLDP, length 82 [|LLDP] 17:44:36.660277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.660278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a90 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.660279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.660281 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.660282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.660283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.660296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.660298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.660299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.660300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.660313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.660315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.668497 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.668499 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.668500 LLDP, length 82 [|LLDP] 17:44:36.668536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.668537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.668539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.668540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.668541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.668542 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.668543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.668544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.668566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.668568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.668571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.668573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.679505 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.679507 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.679508 LLDP, length 82 [|LLDP] 17:44:36.679538 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.679539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9f a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.679540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.679542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.679552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.679555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.679555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.679557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.679558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.679559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.679573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.679576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.690512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.690514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.690515 LLDP, length 82 [|LLDP] 17:44:36.690549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.690550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa8 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.690552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.690553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.690554 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.690555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.690556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.690569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.690571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.690573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.690584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.690586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.698780 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.698782 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.698783 LLDP, length 82 [|LLDP] 17:44:36.698828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.698829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.698831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.698832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.698833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.698834 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.698836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.698837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.698860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.698862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.698865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.698868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.709781 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.709783 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.709784 LLDP, length 82 [|LLDP] 17:44:36.709822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.709822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab6 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.709824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.709825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.709826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.709839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.709841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.709842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.709844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.709845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.709858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.709860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.720791 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.720793 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.720794 LLDP, length 82 [|LLDP] 17:44:36.720831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.720832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.720834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.720835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.720837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.720838 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.720839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.720840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.720862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.720864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.720868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.720870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.729058 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.729059 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.729060 LLDP, length 82 [|LLDP] 17:44:36.729093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.729094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.729095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.729097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.729098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.729099 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.729101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.729102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.729124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.729126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.729129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.729131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.740061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.740063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.740064 LLDP, length 82 [|LLDP] 17:44:36.740093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.740094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acd d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.740096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.740097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.740098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.740099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.740111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.740113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.740114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.740116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.740128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.740131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.751066 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.751068 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.751069 LLDP, length 82 [|LLDP] 17:44:36.751104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.751105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.751106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.751108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.751109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.751110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.751112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.751113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.751135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.751137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.751140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.751142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.759334 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.759335 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.759336 LLDP, length 82 [|LLDP] 17:44:36.759373 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.759374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adc 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.759376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.759377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.759389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.759391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.759392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.759393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.759394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.759395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.759409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.759412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.770336 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.770357 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.770359 LLDP, length 82 [|LLDP] 17:44:36.770393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.770394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae4 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.770396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.770398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.770399 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.770401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.770402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.770417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.770420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.770421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.770434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.770436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.778632 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.778640 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.778641 LLDP, length 82 [|LLDP] 17:44:36.778696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.778697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.778699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.778700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.778701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.778703 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.778704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.778705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.778741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.778744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.778748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.778750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.789625 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.789626 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.789627 LLDP, length 82 [|LLDP] 17:44:36.789683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.789684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af3 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.789685 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.789687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.789688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.789704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.789706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.789708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.789709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.789710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.789725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.789727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.800621 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.800623 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.800624 LLDP, length 82 [|LLDP] 17:44:36.800658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.800659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afc 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.800660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.800662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.800663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.800664 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.800666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.800667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.800690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.800692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.800695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.800698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.808872 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.808874 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.808876 LLDP, length 82 [|LLDP] 17:44:36.808914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.808915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.808917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.808918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.808920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.808921 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.808922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.808923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.808946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.808948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.808952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.808954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.819885 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.819887 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.819888 LLDP, length 82 [|LLDP] 17:44:36.819929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.819930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.819931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.819933 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.819934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.819935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.819948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.819949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.819951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.819952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.819965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.819968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.830890 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.830892 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.830893 LLDP, length 82 [|LLDP] 17:44:36.830930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.830931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.830933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.830934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.830936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.830937 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.830938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.830939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.830962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.830964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.830967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.830970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.839147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.839148 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.839149 LLDP, length 82 [|LLDP] 17:44:36.839183 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.839184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.839186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.839187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.839198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.839200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.839202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.839203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.839204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.839206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.839220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.839222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.850160 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.850162 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.850163 LLDP, length 82 [|LLDP] 17:44:36.850200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.850200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b21 d704 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.850202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.850203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.850204 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.850205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.850207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.850220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.850222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.850224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.850236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.850238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.861172 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.861174 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.861175 LLDP, length 82 [|LLDP] 17:44:36.861216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.861216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.861218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.861219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.861220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.861222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.861223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.861224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.861248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.861250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.861253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.861255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.869428 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.869429 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.869431 LLDP, length 82 [|LLDP] 17:44:36.869469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.869470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b30 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.869472 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.869473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.869474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.869487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.869489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.869490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.869491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.869493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.869506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.869509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.880435 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.880436 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.880437 LLDP, length 82 [|LLDP] 17:44:36.880475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.880475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b38 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.880477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.880478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.880479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.880481 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.880482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.880483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.880506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.880508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.880511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.880513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.888692 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.888693 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.888694 LLDP, length 82 [|LLDP] 17:44:36.888729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.888730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.888732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.888733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.888734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.888736 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.888737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.888738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.888760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.888761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.888764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.888767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.899701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.899702 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.899703 LLDP, length 82 [|LLDP] 17:44:36.899739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.899740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b47 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.899741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.899742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.899744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.899745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.899758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.899760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.899761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.899762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.899774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.899776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.910715 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.910717 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.910718 LLDP, length 82 [|LLDP] 17:44:36.910756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.910757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b50 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.910758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.910759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.910760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.910762 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.910763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.910764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.910787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.910789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.910792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.910795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.918977 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.918978 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.918979 LLDP, length 82 [|LLDP] 17:44:36.919017 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.919018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.919020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.919021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.919032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.919034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.919036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.919037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.919038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.919039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.919053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.919056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.929979 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.929980 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.929982 LLDP, length 82 [|LLDP] 17:44:36.930019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.930020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5e bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.930022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.930023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.930024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.930025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.930026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.930040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.930042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.930043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.930055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.930057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.940992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.940994 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.940995 LLDP, length 82 [|LLDP] 17:44:36.941030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.941031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.941032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.941034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.941035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.941036 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.941038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.941039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.941061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.941063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.941066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.941068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.949246 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.949247 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.949248 LLDP, length 82 [|LLDP] 17:44:36.949282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.949283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.949285 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.949286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.949287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.949299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.949301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.949302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.949304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.949305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.949318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.949320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.960257 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.960258 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.960259 LLDP, length 82 [|LLDP] 17:44:36.960297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.960298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b75 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.960299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.960300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.960302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.960303 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.960304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.960305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.960328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.960330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.960332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.960335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.968512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.968514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.968515 LLDP, length 82 [|LLDP] 17:44:36.968552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.968553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c 23d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.968554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.968555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.968557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.968558 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.968559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.968560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.968582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.968584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.968588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.968590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.979526 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.979527 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.979528 LLDP, length 82 [|LLDP] 17:44:36.979567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.979568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b84 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.979570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.979571 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.979572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.979573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.979586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.979588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.979589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.979590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.979603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.979605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.990534 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.990536 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.990537 LLDP, length 82 [|LLDP] 17:44:36.990573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.990574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8c f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.990576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.990577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.990578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.990580 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.990581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.990582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.990604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.990607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.990610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.990612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.998793 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.998794 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.998795 LLDP, length 82 [|LLDP] 17:44:36.998832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.998833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.998835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.998836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.998847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.998849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.998850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.998852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.998853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.998854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.998867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.998869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.009803 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.009805 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.009806 LLDP, length 82 [|LLDP] 17:44:37.009841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.009842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9b a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.009843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.009845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.009846 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.009847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.009848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.009861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.009863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.009864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.009876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.009878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.020812 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.020814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.020815 LLDP, length 82 [|LLDP] 17:44:37.020852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.020853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba4 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.020854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.020855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.020857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.020858 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.020859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.020860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.020883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.020884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.020887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.020889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.029070 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.029072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.029073 LLDP, length 82 [|LLDP] 17:44:37.029111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.029112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.029114 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.029115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.029116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.029128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.029130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.029132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.029133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.029134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.029147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.029149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.040080 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.040082 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.040083 LLDP, length 82 [|LLDP] 17:44:37.040119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.040120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb2 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.040121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.040122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.040123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.040124 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.040126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.040127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.040149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.040151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.040154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.040156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.051087 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.051088 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.051089 LLDP, length 82 [|LLDP] 17:44:37.051129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.051130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.051131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.051132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.051134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.051135 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.051136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.051137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.051159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.051161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.051164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.051166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.059353 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.059355 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.059356 LLDP, length 82 [|LLDP] 17:44:37.059393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.059394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.059396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.059397 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.059398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.059400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.059413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.059416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.059417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.059419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.059431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.059433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.070358 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.070360 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.070360 LLDP, length 82 [|LLDP] 17:44:37.070397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.070398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc9 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.070399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.070401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.070402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.070403 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.070404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.070405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.070428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.070430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.070433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.070436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.078613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.078614 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.078615 LLDP, length 82 [|LLDP] 17:44:37.078652 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.078653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.078654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.078655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.078667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.078669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.078670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.078671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.078673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.078674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.078687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.078689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.089625 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.089627 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.089628 LLDP, length 82 [|LLDP] 17:44:37.089665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.089666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd8 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.089667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.089668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.089669 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.089671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.089671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.089685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.089687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.089688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.089700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.089703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.100633 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.100634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.100635 LLDP, length 82 [|LLDP] 17:44:37.100670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.100671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be0 f09d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.100673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.100674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.100675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.100676 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.100678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.100679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.100700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.100702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.100705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.100707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.108893 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.108895 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.108896 LLDP, length 82 [|LLDP] 17:44:37.108931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.108932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.108934 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.108935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.108936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.108948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.108950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.108951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.108952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.108954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.108967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.108969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.119902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.119904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.119905 LLDP, length 82 [|LLDP] 17:44:37.119940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.119941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bef a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.119943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.119944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.119945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.119947 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.119948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.119949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.119971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.119973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.119976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.119979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.130912 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.130914 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.130915 LLDP, length 82 [|LLDP] 17:44:37.130953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.130954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf8 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.130955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.130957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.130958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.130959 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.130960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.130961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.130983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.130985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.130988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.130990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.139171 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.139172 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.139173 LLDP, length 82 [|LLDP] 17:44:37.139209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.139210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.139211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.139212 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.139213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.139214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.139227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.139228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.139230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.139231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.139243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.139245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.150192 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.150193 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.150200 LLDP, length 82 [|LLDP] 17:44:37.150243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.150243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c06 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.150245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.150246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.150248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.150249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.150250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.150251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.150275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.150278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.150281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.150283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.161196 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.161197 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.161199 LLDP, length 82 [|LLDP] 17:44:37.161230 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.161231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.161232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.161233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.161245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.161247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.161248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.161250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.161251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.161252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.161266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.161269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.169447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.169449 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.169450 LLDP, length 82 [|LLDP] 17:44:37.169487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.169488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 709b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.169490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.169491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.169492 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.169493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.169494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.169509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.169511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.169512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.169524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.169527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.180468 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.180470 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.180477 LLDP, length 82 [|LLDP] 17:44:37.180521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.180522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.180523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.180525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.180526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.180527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.180529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.180530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.180556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.180558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.180562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.180564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.188723 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.188724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.188725 LLDP, length 82 [|LLDP] 17:44:37.188770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.188771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.188773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.188774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.188776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.188789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.188791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.188792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.188794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.188795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.188809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.188811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.199725 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.199726 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.199727 LLDP, length 82 [|LLDP] 17:44:37.199766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.199768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2c 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.199769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.199770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.199772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.199773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.199774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.199775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.199798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.199800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.199803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.199805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.210735 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.210736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.210737 LLDP, length 82 [|LLDP] 17:44:37.210772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.210773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c34 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.210775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.210776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.210777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.210778 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.210779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.210780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.210803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.210805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.210808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.210811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.218992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.218994 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.218995 LLDP, length 82 [|LLDP] 17:44:37.219029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.219030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b 3d6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.219031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.219032 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.219034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.219035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.219048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.219050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.219051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.219052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.219064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.219066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.230014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.230017 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.230018 LLDP, length 82 [|LLDP] 17:44:37.230059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.230060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c43 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.230061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.230063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.230064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.230065 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.230066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.230067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.230091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.230093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.230096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.230099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.241017 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.241019 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.241020 LLDP, length 82 [|LLDP] 17:44:37.241062 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.241063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.241065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.241066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.241078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.241080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.241082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.241083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.241084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.241085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.241100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.241103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.249271 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.249273 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.249274 LLDP, length 82 [|LLDP] 17:44:37.249314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.249315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.249316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.249318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.249319 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.249320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.249321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.249335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.249337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.249338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.249349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.249351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.260280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.260282 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.260283 LLDP, length 82 [|LLDP] 17:44:37.260317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.260318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.260319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.260320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.260321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.260323 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.260324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.260325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.260348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.260349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.260352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.260354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.268536 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.268538 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.268539 LLDP, length 82 [|LLDP] 17:44:37.268572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.268573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.268575 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.268576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.268577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.268590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.268592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.268593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.268594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.268595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.268608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.268611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.279554 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.279555 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.279556 LLDP, length 82 [|LLDP] 17:44:37.279585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.279586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c69 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.279588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.279589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.279590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.279591 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.279592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.279593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.279616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.279618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.279621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.279623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.290556 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.290558 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.290559 LLDP, length 82 [|LLDP] 17:44:37.290595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.290596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c71 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.290598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.290599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.290600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.290601 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.290602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.290603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.290627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.290629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.290632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.290634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.298813 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.298814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.298815 LLDP, length 82 [|LLDP] 17:44:37.298851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.298852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.298853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.298854 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.298856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.298857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.298870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.298872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.298873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.298874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.298887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.298889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.309823 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.309824 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.309826 LLDP, length 82 [|LLDP] 17:44:37.309859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.309860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c80 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.309862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.309863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.309865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.309866 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.309867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.309868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.309890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.309892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.309896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.309898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.320834 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.320836 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.320837 LLDP, length 82 [|LLDP] 17:44:37.320871 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.320872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c88 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.320874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.320875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.320900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.320902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.320903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.320905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.320906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.320907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.320921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.320923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.329093 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.329094 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.329095 LLDP, length 82 [|LLDP] 17:44:37.329133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.329134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.329135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.329136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.329137 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.329139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.329140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.329154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.329156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.329157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.329170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.329172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.340105 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.340107 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.340107 LLDP, length 82 [|LLDP] 17:44:37.340143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.340144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c97 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.340146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.340147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.340148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.340149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.340150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.340152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.340174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.340176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.340179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.340181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.351131 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.351133 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.351134 LLDP, length 82 [|LLDP] 17:44:37.351182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.351183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca0 0a35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.351185 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.351186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.351187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.351203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.351205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.351206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.351208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.351209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.351224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.351227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.359397 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.359398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.359399 LLDP, length 82 [|LLDP] 17:44:37.359444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.359445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.359447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.359448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.359449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.359450 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.359451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.359453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.359478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.359494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.359497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.359499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.370393 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.370395 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.370402 LLDP, length 82 [|LLDP] 17:44:37.370447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.370448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cae bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.370450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.370451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.370452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.370453 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.370454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.370456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.370481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.370483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.370487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.370489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.378647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.378649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.378656 LLDP, length 82 [|LLDP] 17:44:37.378703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.378704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.378706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.378707 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.378708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.378710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.378724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.378726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.378728 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.378729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.378742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.378744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.389660 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.389663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.389664 LLDP, length 82 [|LLDP] 17:44:37.389719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.389720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbd 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.389722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.389723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.389724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.389726 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.389727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.389728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.389754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.389756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.389760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.389762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.400671 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.400673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.400674 LLDP, length 82 [|LLDP] 17:44:37.400728 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.400729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc5 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.400731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.400732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.400747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.400749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.400750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.400751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.400752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.400753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.400768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.400770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.408928 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.408929 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.408930 LLDP, length 82 [|LLDP] 17:44:37.408980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.408981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.408983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.408984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.408985 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.408986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.408988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.409005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.409007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.409008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.409021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.409023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.419939 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.419941 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.419942 LLDP, length 82 [|LLDP] 17:44:37.419994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.419995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd4 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.419997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.419998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.419999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.420000 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.420002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.420003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.420029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.420031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.420034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.420036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.430946 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.430948 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.430949 LLDP, length 82 [|LLDP] 17:44:37.430999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.431000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdc f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.431002 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.431003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.431004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.431019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.431021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.431023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.431024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.431025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.431039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.431041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.439200 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.439201 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.439202 LLDP, length 82 [|LLDP] 17:44:37.439246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.439247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.439249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.439250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.439251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.439252 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.439253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.439255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.439279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.439281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.439284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.439286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.450210 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.450212 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.450213 LLDP, length 82 [|LLDP] 17:44:37.450257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.450258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ceb a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.450259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.450261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.450262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.450263 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.450264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.450265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.450288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.450290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.450293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.450296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.460254 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.460256 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.460257 LLDP, length 82 [|LLDP] 17:44:37.460294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.460296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf1 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.460297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.460298 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.460299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.460301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.460314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.460316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.460318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.460319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.460332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.460334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.469496 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.469498 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.469499 LLDP, length 82 [|LLDP] 17:44:37.469546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.469547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.469549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.469551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.469552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.469553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.469554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.469555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.469580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.469583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.469586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.469588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.480494 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.480496 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.480497 LLDP, length 82 [|LLDP] 17:44:37.480543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.480544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d02 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.480546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.480547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.480559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.480561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.480563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.480564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.480565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.480566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.480581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.480582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.488747 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.488749 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.488750 LLDP, length 82 [|LLDP] 17:44:37.488802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.488803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.488805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.488806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.488807 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.488808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.488809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.488826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.488828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.488830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.488842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.488844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.499763 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.499764 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.499765 LLDP, length 82 [|LLDP] 17:44:37.499811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.499812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d11 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.499813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.499815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.499816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.499817 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.499818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.499819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.499843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.499845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.499849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.499851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.510761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.510762 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.510763 LLDP, length 82 [|LLDP] 17:44:37.510798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.510799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d19 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.510801 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.510802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.510803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.510817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.510818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.510819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.510821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.510822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.510836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.510838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.520899 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.520901 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.520902 LLDP, length 82 [|LLDP] 17:44:37.520936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.520937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.520939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.520940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.520941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.520942 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.520944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.520945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.520968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.520969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.520973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.520975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.530033 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.530035 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.530036 LLDP, length 82 [|LLDP] 17:44:37.530071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.530072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d28 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.530073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.530075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.530076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.530077 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.530078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.530079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.530102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.530104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.530107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.530109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.541039 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.541041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.541042 LLDP, length 82 [|LLDP] 17:44:37.541084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.541085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d30 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.541086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.541087 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.541089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.541090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.541104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.541106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.541107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.541108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.541121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.541123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.549295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.549297 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.549298 LLDP, length 82 [|LLDP] 17:44:37.549338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.549339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.549341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.549341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.549343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.549344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.549345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.549346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.549368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.549370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.549373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.549375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.560306 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.560307 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.560308 LLDP, length 82 [|LLDP] 17:44:37.560349 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.560350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3f a3f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.560351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.560353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.560365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.560367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.560368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.560370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.560371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.560372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.560386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.560388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.568561 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.568563 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.568564 LLDP, length 82 [|LLDP] 17:44:37.568603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.568604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d45 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.568606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.568607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.568608 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.568609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.568611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.568624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.568626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.568627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.568639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.568641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.580628 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.580630 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.580631 LLDP, length 82 [|LLDP] 17:44:37.580665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.580666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.580667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.580669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.580670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.580671 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.580672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.580674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.580697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.580699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.580702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.580704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.590585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.590586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.590587 LLDP, length 82 [|LLDP] 17:44:37.590620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.590622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d56 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.590623 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.590624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.590625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.590638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.590639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.590640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.590642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.590643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.590656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.590658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.598855 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.598857 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.598858 LLDP, length 82 [|LLDP] 17:44:37.598894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.598895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.598897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.598898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.598899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.598900 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.598902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.598903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.598927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.598929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.598933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.598934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.609851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.609853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.609854 LLDP, length 82 [|LLDP] 17:44:37.609896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.609897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d65 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.609899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.609900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.609901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.609902 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.609904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.609905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.609929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.609931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.609934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.609936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.620859 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.620861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.620862 LLDP, length 82 [|LLDP] 17:44:37.620905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.620906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6d d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.620907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.620908 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.620910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.620911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.620925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.620927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.620928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.620929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.620941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.620943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.629119 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.629120 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.629121 LLDP, length 82 [|LLDP] 17:44:37.629162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.629177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.629180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.629181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.629182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.629183 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.629185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.629187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.629210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.629212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.629216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.629218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.640164 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.640167 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.640168 LLDP, length 82 [|LLDP] 17:44:37.640231 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.640231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7c 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.640233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.640235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.640256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.640259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.640260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.640262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.640263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.640265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.640283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.640285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.651166 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.651168 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.651170 LLDP, length 82 [|LLDP] 17:44:37.651217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.651218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d84 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.651219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.651220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.651222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.651223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.651224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.651242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.651244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.651245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.651257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.651260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.659421 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.659430 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.659431 LLDP, length 82 [|LLDP] 17:44:37.659485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.659486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.659488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.659489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.659490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.659491 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.659493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.659494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.659521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.659524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.659527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.659529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.670414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.670416 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.670417 LLDP, length 82 [|LLDP] 17:44:37.670472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.670472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d93 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.670474 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.670475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.670476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.670491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.670493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.670495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.670496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.670497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.670510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.670512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.678671 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.678673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.678674 LLDP, length 82 [|LLDP] 17:44:37.678721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.678722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d99 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.678723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.678724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.678725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.678726 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.678728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.678729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.678753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.678755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.678758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.678760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.689683 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.689684 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.689686 LLDP, length 82 [|LLDP] 17:44:37.689726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.689727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.689729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.689730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.689731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.689733 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.689734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.689735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.689759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.689762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.689765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.689767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.700698 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.700700 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.700701 LLDP, length 82 [|LLDP] 17:44:37.700740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.700741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daa bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.700743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.700744 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.700745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.700746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.700762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.700764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.700765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.700766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.700779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.700782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.708957 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.708959 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.708960 LLDP, length 82 [|LLDP] 17:44:37.709001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.709002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.709003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.709004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.709005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.709007 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.709008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.709009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.709034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.709036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.709039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.709042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.719954 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.719955 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.719956 LLDP, length 82 [|LLDP] 17:44:37.720001 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.720001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db9 70ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.720003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.720004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.720017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.720019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.720020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.720021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.720022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.720024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.720039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.720041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.730964 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.730965 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.730966 LLDP, length 82 [|LLDP] 17:44:37.731010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.731011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc1 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.731012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.731014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.731015 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.731016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.731018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.731034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.731035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.731036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.731048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.731050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.739218 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.739220 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.739221 LLDP, length 82 [|LLDP] 17:44:37.739262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.739263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.739265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.739266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.739267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.739268 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.739269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.739270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.739294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.739296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.739299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.739301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.750231 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.750232 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.750233 LLDP, length 82 [|LLDP] 17:44:37.750275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.750276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd0 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.750277 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.750278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.750280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.750293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.750295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.750296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.750297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.750298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.750312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.750314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.758487 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.758488 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.758490 LLDP, length 82 [|LLDP] 17:44:37.758530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.758531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd6 d729 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.758532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.758534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.758535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.758536 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.758537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.758538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.758562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.758565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.758568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.758570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.769498 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.769500 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.769501 LLDP, length 82 [|LLDP] 17:44:37.769536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.769536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.769538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.769539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.769540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.769541 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.769543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.769544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.769567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.769569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.769572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.769574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.780508 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.780509 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.780510 LLDP, length 82 [|LLDP] 17:44:37.780556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.780556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de7 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.780558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.780559 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.780560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.780561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.780575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.780577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.780578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.780580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.780593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.780595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.788763 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.788765 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.788766 LLDP, length 82 [|LLDP] 17:44:37.788806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.788807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ded f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.788809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.788810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.788812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.788813 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.788814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.788816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.788838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.788840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.788843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.788845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.799783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.799785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.799786 LLDP, length 82 [|LLDP] 17:44:37.799828 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.799829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.799830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.799832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.799844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.799846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.799847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.799848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.799850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.799851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.799865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.799867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.810783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.810785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.810786 LLDP, length 82 [|LLDP] 17:44:37.810826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.810827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfe bd8f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.810828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.810829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.810830 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.810832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.810833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.810848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.810850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.810851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.810863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.810865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.819038 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.819040 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.819041 LLDP, length 82 [|LLDP] 17:44:37.819084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.819084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 0a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.819086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.819088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.819088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.819089 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.819091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.819092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.819115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.819117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.819120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.819122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.830056 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.830057 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.830059 LLDP, length 82 [|LLDP] 17:44:37.830094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.830095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0d 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.830096 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.830098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.830099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.830112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.830114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.830115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.830116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.830117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.830130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.830133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.841062 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.841063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.841065 LLDP, length 82 [|LLDP] 17:44:37.841105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.841106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e15 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.841108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.841109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.841110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.841111 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.841112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.841113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.841136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.841138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.841142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.841144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.849316 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.849318 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.849319 LLDP, length 82 [|LLDP] 17:44:37.849361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.849362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.849364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.849365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.849366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.849368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.849369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.849370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.849392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.849394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.849398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.849400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.860326 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.860328 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.860329 LLDP, length 82 [|LLDP] 17:44:37.860371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.860372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e24 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.860374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.860375 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.860376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.860377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.860390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.860393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.860394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.860395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.860408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.860410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.868585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.868588 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.868588 LLDP, length 82 [|LLDP] 17:44:37.868632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.868632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.868634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.868635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.868637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.868638 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.868639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.868641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.868664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.868666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.868669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.868671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.879599 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.879600 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.879601 LLDP, length 82 [|LLDP] 17:44:37.879643 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.879644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.879645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.879647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.879660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.879662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.879663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.879664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.879665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.879667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.879681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.879684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.890610 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.890611 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.890612 LLDP, length 82 [|LLDP] 17:44:37.890649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.890650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3b a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.890652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.890653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.890655 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.890656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.890657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.890673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.890675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.890676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.890688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.890690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.898870 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.898872 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.898872 LLDP, length 82 [|LLDP] 17:44:37.898921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.898922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e41 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.898923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.898924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.898925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.898927 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.898928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.898929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.898954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.898956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.898960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.898962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.909885 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.909887 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.909888 LLDP, length 82 [|LLDP] 17:44:37.909927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.909928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.909929 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.909931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.909932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.909947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.909949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.909950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.909951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.909952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.909965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.909967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.920895 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.920897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.920898 LLDP, length 82 [|LLDP] 17:44:37.920933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.920934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e52 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.920936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.920937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.920938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.920939 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.920941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.920942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.920965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.920967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.920970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.920973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.929143 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.929144 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.929145 LLDP, length 82 [|LLDP] 17:44:37.929188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.929188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 0a5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.929190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.929191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.929192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.929194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.929195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.929197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.929220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.929221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.929225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.929227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.940150 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.940152 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.940153 LLDP, length 82 [|LLDP] 17:44:37.940195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.940196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e61 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.940198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.940199 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.940200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.940201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.940215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.940217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.940219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.940220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.940232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.940235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.948409 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.948411 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.948412 LLDP, length 82 [|LLDP] 17:44:37.948453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.948454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e67 bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.948456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.948457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.948458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.948459 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.948460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.948462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.948484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.948486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.948489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.948491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.959418 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.959420 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.959421 LLDP, length 82 [|LLDP] 17:44:37.959463 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.959464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.959465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.959466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.959478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.959480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.959481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.959482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.959484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.959485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.959499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.959501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.970430 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.970431 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.970432 LLDP, length 82 [|LLDP] 17:44:37.970474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.970475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e78 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.970476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.970478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.970479 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.970480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.970482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.970496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.970498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.970500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.970511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.970513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.978683 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.978685 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.978686 LLDP, length 82 [|LLDP] 17:44:37.978726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.978727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.978728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.978729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.978731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.978732 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.978733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.978734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.978757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.978759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.978763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.978764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.989696 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.989697 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.989698 LLDP, length 82 [|LLDP] 17:44:37.989741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.989741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.989743 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.989744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.989745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.989760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.989762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.989763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.989764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.989765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.989778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.989780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.000706 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.000707 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.000708 LLDP, length 82 [|LLDP] 17:44:38.000751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.000752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8f a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.000754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.000755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.000756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.000757 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.000758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.000760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.000783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.000785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.000789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.000791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.008975 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.008976 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.008977 LLDP, length 82 [|LLDP] 17:44:38.009012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.009013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e95 f0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.009014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.009015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.009016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.009018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.009019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.009020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.009043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.009044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.009048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.009050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.019983 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.019985 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.019986 LLDP, length 82 [|LLDP] 17:44:38.020020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.020021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.020023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.020024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.020025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.020026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.020041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.020043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.020044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.020045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.020058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.020060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.030985 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.030987 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.030988 LLDP, length 82 [|LLDP] 17:44:38.031028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.031029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea6 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.031031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.031032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.031033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.031034 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.031035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.031037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.031060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.031062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.031065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.031067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.039247 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.039249 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.039250 LLDP, length 82 [|LLDP] 17:44:38.039284 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.039285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.039287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.039288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.039300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.039309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.039310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.039312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.039313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.039314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.039330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.039332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.050251 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.050253 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.050254 LLDP, length 82 [|LLDP] 17:44:38.050295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.050296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb5 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.050297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.050298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.050300 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.050301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.050302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.050316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.050318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.050319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.050331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.050333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.058513 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.058515 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.058516 LLDP, length 82 [|LLDP] 17:44:38.058551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.058551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebb bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.058553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.058554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.058555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.058556 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.058557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.058558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.058581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.058583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.058587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.058589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.069525 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.069527 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.069528 LLDP, length 82 [|LLDP] 17:44:38.069564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.069565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.069566 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.069568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.069569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.069583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.069585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.069586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.069587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.069588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.069602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.069604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.080529 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.080531 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.080532 LLDP, length 82 [|LLDP] 17:44:38.080568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.080569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecc 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.080571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.080572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.080573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.080574 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.080575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.080577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.080600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.080602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.080605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.080608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.088786 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.088787 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.088789 LLDP, length 82 [|LLDP] 17:44:38.088828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.088829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed2 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.088830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.088832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.088833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.088834 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.088835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.088836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.088860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.088862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.088865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.088867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.099795 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.099797 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.099798 LLDP, length 82 [|LLDP] 17:44:38.099838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.099839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.099841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.099842 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.099843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.099844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.099857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.099859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.099860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.099862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.099874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.099876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.110804 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.110805 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.110806 LLDP, length 82 [|LLDP] 17:44:38.110847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.110847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee3 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.110849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.110850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.110851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.110852 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.110854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.110855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.110878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.110879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.110883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.110885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.119067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.119069 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.119070 LLDP, length 82 [|LLDP] 17:44:38.119111 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.119112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee9 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.119113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.119115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.119127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.119129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.119131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.119132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.119133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.119135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.119149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.119151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.130071 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.130073 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.130074 LLDP, length 82 [|LLDP] 17:44:38.130116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.130117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.130118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.130119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.130121 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.130122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.130123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.130138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.130140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.130141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.130153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.130155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.141083 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.141084 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.141085 LLDP, length 82 [|LLDP] 17:44:38.141126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.141127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efa bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.141129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.141130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.141131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.141133 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.141134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.141135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.141157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.141159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.141163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.141165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.149338 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.149340 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.149341 LLDP, length 82 [|LLDP] 17:44:38.149381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.149382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.149384 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.149385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.149386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.149399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.149401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.149403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.149404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.149405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.149417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.149419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.160347 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.160349 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.160350 LLDP, length 82 [|LLDP] 17:44:38.160389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.160390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f09 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.160392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.160393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.160394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.160395 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.160396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.160398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.160420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.160422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.160425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.160428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.168605 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.168606 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.168608 LLDP, length 82 [|LLDP] 17:44:38.168648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.168649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0f bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.168651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.168652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.168653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.168654 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.168655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.168657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.168680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.168681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.168685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.168686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.179617 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.179618 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.179620 LLDP, length 82 [|LLDP] 17:44:38.179660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.179661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 23f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.179662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.179663 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.179664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.179665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.179679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.179681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.179682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.179683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.179696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.179698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.190626 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.190627 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.190628 LLDP, length 82 [|LLDP] 17:44:38.190671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.190672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f20 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.190673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.190674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.190676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.190677 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.190678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.190679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.190702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.190704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.190707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.190709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.198887 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.198888 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.198889 LLDP, length 82 [|LLDP] 17:44:38.198931 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.198932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f26 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.198933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.198935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.198946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.198948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.198949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.198950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.198952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.198953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.198966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.198969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.209896 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.209897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.209898 LLDP, length 82 [|LLDP] 17:44:38.209941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.209942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.209944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.209945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.209946 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.209947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.209948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.209963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.209964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.209966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.209977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.209979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.220902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.220905 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.220906 LLDP, length 82 [|LLDP] 17:44:38.220949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.220950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f37 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.220951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.220953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.220954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.220955 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.220956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.220957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.220980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.220983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.220986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.220988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.229174 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.229176 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.229183 LLDP, length 82 [|LLDP] 17:44:38.229231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.229232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3d f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.229233 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.229235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.229236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.229251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.229253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.229254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.229255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.229257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.229270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.229273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.240173 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.240174 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.240175 LLDP, length 82 [|LLDP] 17:44:38.240217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.240217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.240219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.240220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.240221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.240222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.240223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.240225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.240249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.240250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.240254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.240256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.248429 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.248431 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.248432 LLDP, length 82 [|LLDP] 17:44:38.248473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.248474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4c a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.248475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.248476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.248478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.248479 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.248480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.248481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.248503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.248505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.248508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.248510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.259442 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.259443 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.259444 LLDP, length 82 [|LLDP] 17:44:38.259486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.259487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f55 0a58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.259488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.259489 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.259490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.259492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.259505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.259507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.259508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.259509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.259522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.259524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.270447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.270448 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.270449 LLDP, length 82 [|LLDP] 17:44:38.270489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.270490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5d 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.270491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.270492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.270494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.270495 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.270496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.270498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.270520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.270522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.270525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.270527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.278704 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.278706 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.278707 LLDP, length 82 [|LLDP] 17:44:38.278748 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.278749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f63 bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.278750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.278752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.278763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.278765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.278766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.278767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.278769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.278770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.278785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.278787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.289716 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.289718 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.289719 LLDP, length 82 [|LLDP] 17:44:38.289760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.289761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.289762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.289763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.289764 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.289765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.289767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.289781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.289784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.289785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.289796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.289798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.300725 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.300727 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.300728 LLDP, length 82 [|LLDP] 17:44:38.300770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.300770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f74 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.300772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.300773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.300774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.300775 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.300777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.300778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.300800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.300802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.300805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.300807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.308984 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.308986 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.308987 LLDP, length 82 [|LLDP] 17:44:38.309027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.309028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.309030 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.309031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.309032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.309046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.309048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.309049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.309050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.309051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.309064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.309066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.319996 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.319997 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.319999 LLDP, length 82 [|LLDP] 17:44:38.320040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.320041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.320042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.320043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.320044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.320045 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.320047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.320048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.320084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.320086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.320090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.320092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.331031 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.331034 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.331035 LLDP, length 82 [|LLDP] 17:44:38.331095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.331096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8b a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.331098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.331099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.331100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.331101 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.331103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.331104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.331135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.331137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.331141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.331143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.339269 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.339277 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.339278 LLDP, length 82 [|LLDP] 17:44:38.339329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.339330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f91 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.339332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.339333 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.339334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.339335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.339350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.339352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.339354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.339355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.339373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.339376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.350284 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.350285 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.350293 LLDP, length 82 [|LLDP] 17:44:38.350336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.350337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.350338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.350339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.350340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.350346 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.350348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.350349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.350374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.350377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.350380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.350382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.358535 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.358536 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.358538 LLDP, length 82 [|LLDP] 17:44:38.358589 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.358589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa0 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.358591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.358592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.358605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.358607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.358608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.358609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.358610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.358611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.358627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.358629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.369548 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.369550 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.369551 LLDP, length 82 [|LLDP] 17:44:38.369597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.369598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa9 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.369600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.369601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.369602 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.369603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.369605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.369620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.369622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.369623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.369636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.369638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.380562 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.380564 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.380565 LLDP, length 82 [|LLDP] 17:44:38.380610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.380611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb1 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.380613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.380614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.380615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.380616 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.380617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.380618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.380645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.380647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.380650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.380652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.388814 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.388816 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.388817 LLDP, length 82 [|LLDP] 17:44:38.388868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.388869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb7 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.388870 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.388871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.388873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.388888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.388891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.388892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.388893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.388894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.388908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.388910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.399832 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.399834 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.399835 LLDP, length 82 [|LLDP] 17:44:38.399884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.399885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 23ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.399887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.399888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.399889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.399890 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.399892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.399893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.399918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.399920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.399924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.399926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.410833 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.410835 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.410836 LLDP, length 82 [|LLDP] 17:44:38.410876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.410877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc8 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.410879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.410880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.410881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.410882 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.410883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.410884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.410908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.410910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.410913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.410915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.419089 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.419091 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.419092 LLDP, length 82 [|LLDP] 17:44:38.419145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.419146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fce d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.419148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.419149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.419150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.419151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.419167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.419169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.419171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.419172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.419185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.419187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.430112 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.430114 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.430115 LLDP, length 82 [|LLDP] 17:44:38.430165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.430166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.430167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.430168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.430170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.430171 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.430172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.430173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.430200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.430201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.430205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.430208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.441117 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.441119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.441120 LLDP, length 82 [|LLDP] 17:44:38.441160 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.441161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdf a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.441162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.441164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.441177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.441179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.441180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.441181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.441183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.441184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.441198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.441201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.449375 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.449376 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.449377 LLDP, length 82 [|LLDP] 17:44:38.449415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.449416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe5 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.449418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.449419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.449420 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.449421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.449423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.449438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.449440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.449441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.449453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.449455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.460373 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.460374 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.460375 LLDP, length 82 [|LLDP] 17:44:38.460419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.460419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.460421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.460429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.460431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.460432 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.460433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.460434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.460459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.460461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.460464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.460466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.468633 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.468634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.468635 LLDP, length 82 [|LLDP] 17:44:38.468677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.468678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff4 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.468679 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.468680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.468682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.468695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.468697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.468698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.468700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.468701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.468718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.468720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.479639 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.479649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.479651 LLDP, length 82 [|LLDP] 17:44:38.479688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.479688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffd 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.479690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.479691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.479693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.479694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.479695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.479696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.479720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.479722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.479725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.479728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.490670 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.490673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.490674 LLDP, length 82 [|LLDP] 17:44:38.490725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.490726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1005 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.490728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.490729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.490745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.490747 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.490749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.490750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.490786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.490789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.490793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.490795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.498945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.498953 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.498954 LLDP, length 82 [|LLDP] 17:44:38.499012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.499014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100b bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.499015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.499016 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.499017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.499018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.499046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.499049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.499050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.499051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.499067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.499069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.509935 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.509937 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.509944 LLDP, length 82 [|LLDP] 17:44:38.509989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.509990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 23f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.509992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.509993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.509995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.509996 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.509997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.509998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.510027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.510029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.510033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.510035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.520929 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.520931 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.520932 LLDP, length 82 [|LLDP] 17:44:38.520977 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.520978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101c 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.520980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.520981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.520993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.520995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.520996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.520998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.520999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.521000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.521015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.521017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.529206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.529214 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.529215 LLDP, length 82 [|LLDP] 17:44:38.529262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.529263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1022 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.529264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.529266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.529267 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.529268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.529270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.529285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.529288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.529289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.529303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.529306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.540198 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.540199 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.540200 LLDP, length 82 [|LLDP] 17:44:38.540246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.540246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.540248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.540249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.540250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.540252 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.540253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.540254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.540277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.540280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.540283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.540286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.548453 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.548454 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.548455 LLDP, length 82 [|LLDP] 17:44:38.548503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.548504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1031 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.548505 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.548507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.548508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.548521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.548523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.548524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.548526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.548527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.548541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.548543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.559462 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.559464 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.559465 LLDP, length 82 [|LLDP] 17:44:38.559509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.559510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1039 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.559512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.559513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.559514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.559515 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.559516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.559518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.559542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.559544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.559547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.559550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.570475 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.570477 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.570477 LLDP, length 82 [|LLDP] 17:44:38.570521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.570522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.570523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.570525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.570526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.570527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.570529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.570530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.570553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.570555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.570558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.570561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.578748 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.578750 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.578757 LLDP, length 82 [|LLDP] 17:44:38.578807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.578808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1048 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.578809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.578811 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.578812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.578813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.578829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.578831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.578832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.578834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.578847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.578850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.589746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.589748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.589749 LLDP, length 82 [|LLDP] 17:44:38.589805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.589806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1051 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.589807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.589809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.589810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.589811 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.589812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.589814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.589842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.589844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.589847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.589850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.600761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.600763 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.600770 LLDP, length 82 [|LLDP] 17:44:38.600823 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.600824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1059 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.600825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.600826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.600842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.600844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.600845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.600847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.600848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.600849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.600865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.600867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.609016 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.609018 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.609019 LLDP, length 82 [|LLDP] 17:44:38.609067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.609068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105f bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.609069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.609071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.609073 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.609074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.609075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.609097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.609099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.609100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.609114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.609117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.620033 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.620036 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.620037 LLDP, length 82 [|LLDP] 17:44:38.620078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.620078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.620080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.620081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.620082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.620083 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.620085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.620086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.620114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.620117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.620121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.620122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.631039 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.631041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.631042 LLDP, length 82 [|LLDP] 17:44:38.631085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.631086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1070 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.631088 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.631089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.631094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.631109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.631111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.631112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.631113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.631115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.631129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.631132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.639295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.639297 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.639298 LLDP, length 82 [|LLDP] 17:44:38.639345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.639346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1076 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.639348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.639349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.639350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.639351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.639352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.639353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.639379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.639382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.639385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.639387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.650299 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.650300 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.650301 LLDP, length 82 [|LLDP] 17:44:38.650346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.650347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.650349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.650350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.650351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.650352 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.650354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.650355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.650387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.650389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.650392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.650394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.658552 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.658554 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.658555 LLDP, length 82 [|LLDP] 17:44:38.658594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.658595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1085 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.658596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.658598 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.658599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.658600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.658618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.658620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.658622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.658623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.658636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.658638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.669583 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.669586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.669587 LLDP, length 82 [|LLDP] 17:44:38.669643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.669644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108d f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.669645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.669647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.669648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.669649 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.669650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.669652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.669679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.669682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.669686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.669689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.680585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.680599 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.680600 LLDP, length 82 [|LLDP] 17:44:38.680652 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.680653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 5728 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.680655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.680656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.680672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.680674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.680675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.680677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.680678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.680679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.680695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.680697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.688827 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.688829 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.688830 LLDP, length 82 [|LLDP] 17:44:38.688870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.688871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109c a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.688873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.688874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.688875 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.688877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.688878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.688893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.688895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.688896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.688908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.688910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.699839 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.699841 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.699842 LLDP, length 82 [|LLDP] 17:44:38.699886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.699887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a5 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.699889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.699890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.699891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.699892 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.699893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.699895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.699919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.699920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.699924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.699926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.710851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.710853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.710854 LLDP, length 82 [|LLDP] 17:44:38.710891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.710893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ad 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.710894 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.710896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.710897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.710910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.710912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.710913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.710914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.710915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.710929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.710931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.719102 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.719103 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.719104 LLDP, length 82 [|LLDP] 17:44:38.719147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.719148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b3 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.719150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.719151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.719152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.719153 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.719154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.719155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.719179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.719181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.719184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.719186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.730134 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.730136 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.730137 LLDP, length 82 [|LLDP] 17:44:38.730195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.730196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.730198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.730199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.730200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.730202 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.730203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.730204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.730230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.730232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.730235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.730238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.738374 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.738376 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.738377 LLDP, length 82 [|LLDP] 17:44:38.738426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.738427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.738428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.738429 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.738431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.738432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.738447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.738449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.738450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.738452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.738465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.738468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.749396 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.749398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.749405 LLDP, length 82 [|LLDP] 17:44:38.749455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.749457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ca d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.749458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.749460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.749461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.749462 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.749464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.749465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.749493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.749496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.749500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.749502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.760412 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.760414 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.760415 LLDP, length 82 [|LLDP] 17:44:38.760462 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.760463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.760464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.760466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.760479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.760482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.760483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.760484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.760485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.760486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.760502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.760504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.768660 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.768663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.768670 LLDP, length 82 [|LLDP] 17:44:38.768718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.768719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d9 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.768721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.768723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.768724 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.768725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.768727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.768744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.768746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.768747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.768761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.768763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.779686 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.779694 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.779695 LLDP, length 82 [|LLDP] 17:44:38.779767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.779768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e1 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.779769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.779771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.779772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.779773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.779774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.779776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.779805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.779808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.779812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.779814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.790679 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.790681 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.790682 LLDP, length 82 [|LLDP] 17:44:38.790736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.790737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.790739 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.790740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.790742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.790756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.790758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.790759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.790760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.790762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.790776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.790778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.798943 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.798951 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.798952 LLDP, length 82 [|LLDP] 17:44:38.799010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.799011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f0 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.799013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.799014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.799015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.799016 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.799018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.799019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.799049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.799051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.799055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.799057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.809945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.809947 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.809954 LLDP, length 82 [|LLDP] 17:44:38.810000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.810001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f9 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.810002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.810003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.810005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.810006 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.810007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.810008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.810036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.810039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.810042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.810044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.820956 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.820959 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.820966 LLDP, length 82 [|LLDP] 17:44:38.821020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.821021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1101 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.821023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.821024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.821025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.821026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.821043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.821046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.821047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.821048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.821062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.821064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.829223 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.829224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.829225 LLDP, length 82 [|LLDP] 17:44:38.829263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.829264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1107 bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.829266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.829267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.829268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.829270 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.829271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.829272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.829297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.829299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.829302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.829304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.840221 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.840223 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.840224 LLDP, length 82 [|LLDP] 17:44:38.840272 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.840273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.840275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.840276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.840289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.840291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.840292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.840294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.840295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.840296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.840311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.840313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.848477 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.848479 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.848481 LLDP, length 82 [|LLDP] 17:44:38.848526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.848527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.848529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.848530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.848531 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.848532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.848534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.848549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.848551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.848552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.848564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.848566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.859480 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.859482 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.859483 LLDP, length 82 [|LLDP] 17:44:38.859522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.859523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.859524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.859526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.859527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.859528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.859529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870507 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.870509 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.870510 LLDP, length 82 [|LLDP] 17:44:38.870549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.870550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.870552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.870553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.870554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.870555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.870556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.870577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.870578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.870581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.878758 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.878759 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.878760 LLDP, length 82 [|LLDP] 17:44:38.878807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.878808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112d 8a5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.878810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.878811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.878812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.878813 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.878814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.878816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.878817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.878843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.878844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.878847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.889768 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.889770 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.889771 LLDP, length 82 [|LLDP] 17:44:38.889815 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.889816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1135 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.889818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.889819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.889820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.889839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.889840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.889843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.889844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.889845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.889846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.889848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.900781 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.900783 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.900790 LLDP, length 82 [|LLDP] 17:44:38.900835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.900836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.900838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.900839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.900840 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.900842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.900843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.900844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.900863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.900864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.900867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.900868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.909029 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.909030 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.909031 LLDP, length 82 [|LLDP] 17:44:38.909075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.909076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1144 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.909078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.909079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.909080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.909081 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.909082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.909083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.909084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.909111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.909112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.909115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.920040 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.920041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.920042 LLDP, length 82 [|LLDP] 17:44:38.920083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.920084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114d 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.920085 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.920086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.920087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.920089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.920104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.920105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.920107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.920108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.920109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.920111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.931047 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.931049 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.931050 LLDP, length 82 [|LLDP] 17:44:38.931091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.931092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1155 70c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.931093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.931095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.931096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.931097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.931098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.931099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.931100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.931125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.931126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.931129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.939324 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.939325 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.939326 LLDP, length 82 [|LLDP] 17:44:38.939362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.939363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115b bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.939364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.939365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.939366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.939368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.939369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.939370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.939371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.939396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.939397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.939400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.950315 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.950317 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.950318 LLDP, length 82 [|LLDP] 17:44:38.950359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.950360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.950362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.950363 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.950364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.950365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.950366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.950382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.950383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.950385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.950386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.950388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.958572 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.958574 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.958575 LLDP, length 82 [|LLDP] 17:44:38.958615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.958616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.958618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.958619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.958620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.958621 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.958622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.958624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.958625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.958649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.958650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.958652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.969581 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.969582 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.969583 LLDP, length 82 [|LLDP] 17:44:38.969623 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.969624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1172 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.969626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.969627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.969628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.969642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.969643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.969645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.969647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.969648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.969649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.969651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.980592 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.980593 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.980594 LLDP, length 82 [|LLDP] 17:44:38.980636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.980637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.980638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.980639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.980641 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.980642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.980643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.980644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.980660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.980661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.980664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.980665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.988849 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.988850 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.988851 LLDP, length 82 [|LLDP] 17:44:38.988893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.988894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1181 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.988896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.988897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.988898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.988899 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.988900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.988901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.988902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.988928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.988929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.988932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.999857 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.999859 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.999860 LLDP, length 82 [|LLDP] 17:44:38.999902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.999903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1189 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.999904 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.999905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.999907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.999908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.999922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.999924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.999926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.999927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.999928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.999930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.012264 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.012266 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.012267 LLDP, length 82 [|LLDP] 17:44:39.012301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.012302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.012303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.012304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.012305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.012307 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.012308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.012309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.012310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.012335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.012336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.012339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.019127 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.019128 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.019129 LLDP, length 82 [|LLDP] 17:44:39.019170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.019171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1198 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.019173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.019174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.019175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.019177 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.019178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.019179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.019180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.019205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.019206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.019208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.030206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.030209 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.030210 LLDP, length 82 [|LLDP] 17:44:39.030316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.030317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a1 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.030319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.030320 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.030322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.030323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.030324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.030364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.030366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.030369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.030371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.030372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.038459 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.038462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.038464 LLDP, length 82 [|LLDP] 17:44:39.038565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.038566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.038568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.038569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.038571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.038573 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.038575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.038576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.038578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.038630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.038631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.038635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.049466 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.049470 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.049471 LLDP, length 82 [|LLDP] 17:44:39.049558 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.049559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11af bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.049561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.049563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.049564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.049599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.049601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.049608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.049610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.049613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.049615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.049617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.060475 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.060478 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.060479 LLDP, length 82 [|LLDP] 17:44:39.060587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.060589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.060591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.060592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.060594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.060596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.060597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.060599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.060635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.060636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.060640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.060642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.068731 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.068734 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.068735 LLDP, length 82 [|LLDP] 17:44:39.068827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.068828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.068831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.068832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.068834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.068835 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.068836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.068837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.068839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.068882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.068884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.068888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.079740 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.079744 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.079745 LLDP, length 82 [|LLDP] 17:44:39.079829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.079830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c6 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.079832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.079833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.079835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.079836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.079864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.079866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.079870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.079872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.079873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.079875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.090745 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.090749 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.090750 LLDP, length 82 [|LLDP] 17:44:39.090836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.090837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.090839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.090840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.090841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.090843 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.090844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.090845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.090847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.090892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.090894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.090898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.099025 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.099029 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.099030 LLDP, length 82 [|LLDP] 17:44:39.099150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.099151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d5 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.099153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.099155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.099156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.099158 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.099159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.099160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.099162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.099221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.099223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.099229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.110004 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.110006 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.110008 LLDP, length 82 [|LLDP] 17:44:39.110088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.110089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dd f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.110091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.110092 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.110093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.110094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.110095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.110125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.110126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.110130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.110131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.110133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.120985 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.120993 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.120994 LLDP, length 82 [|LLDP] 17:44:39.121040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.121041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.121043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.121044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.121045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.121046 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.121047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.121049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.121050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.121077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.121079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.121082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.129239 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.129248 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.129249 LLDP, length 82 [|LLDP] 17:44:39.129299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.129300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ec a3f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.129301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.129302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.129304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.129321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.129322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.129325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.129326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.129328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.129329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.129330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.140241 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.140242 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.140244 LLDP, length 82 [|LLDP] 17:44:39.140288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.140289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f5 0a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.140291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.140292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.140293 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.140295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.140296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.140297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.140314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.140315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.140317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.140319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.148499 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.148500 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.148501 LLDP, length 82 [|LLDP] 17:44:39.148543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.148544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.148546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.148547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.148548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.148549 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.148550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.148552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.148553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.148579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.148580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.148583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.160919 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.160920 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.160921 LLDP, length 82 [|LLDP] 17:44:39.160958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.160959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1203 bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.160961 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.160962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.160963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.160965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.160980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.160981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.160984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.160985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.160986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.160987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.170521 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.170522 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.170524 LLDP, length 82 [|LLDP] 17:44:39.170562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.170563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.170564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.170566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.170567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.170568 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.170569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.170570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.170571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.170596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.170597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.170600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.178772 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.178774 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.178775 LLDP, length 82 [|LLDP] 17:44:39.178818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.178819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.178820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.178821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.178823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.178824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.178825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.178826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.178828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.178852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.178854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.178856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.189784 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.189786 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.189787 LLDP, length 82 [|LLDP] 17:44:39.189833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.189834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.189836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.189837 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.189838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.189839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.189841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.189857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.189858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.189861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.189863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.189865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.200797 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.200798 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.200799 LLDP, length 82 [|LLDP] 17:44:39.200843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.200844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.200845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.200846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.200847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.200848 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.200850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.200851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.200852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.200877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.200878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.200882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.209052 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.209053 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.209054 LLDP, length 82 [|LLDP] 17:44:39.209097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.209098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1229 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.209100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.209101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.209102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.209116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.209117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.209119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.209120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.209122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.209123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.209124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.220073 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.220075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.220076 LLDP, length 82 [|LLDP] 17:44:39.220112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.220113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1231 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.220114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.220115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.220117 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.220118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.220119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.220120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.220136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.220137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.220140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.220141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.228332 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.228334 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.228335 LLDP, length 82 [|LLDP] 17:44:39.228388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.228388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.228390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.228391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.228393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.228394 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.228395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.228396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.228397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.228425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.228426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.228429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.239339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.239341 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.239342 LLDP, length 82 [|LLDP] 17:44:39.239391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.239392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1240 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.239393 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.239394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.239396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.239397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.239414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.239415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.239417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.239418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.239420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.239421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.250339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.250341 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.250342 LLDP, length 82 [|LLDP] 17:44:39.250386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.250388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1249 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.250389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.250390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.250392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.250393 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.250394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.250395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.250396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.250421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.250422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.250425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.258583 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.258584 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.258586 LLDP, length 82 [|LLDP] 17:44:39.258623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.258624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.258626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.258627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.258628 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.258629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.258630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269605 LLDP, length 82 [|LLDP] 17:44:39.269619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.269620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1257 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.269622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.269624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.269625 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.269626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.269627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.269649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.269651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.269652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.269653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.269687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.280615 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.280617 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.280618 LLDP, length 82 [|LLDP] 17:44:39.280659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.280660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.280662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.280663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.280664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.280665 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.280666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.280668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.280691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.280693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.280697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.280699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.288874 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.288876 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.288877 LLDP, length 82 [|LLDP] 17:44:39.288917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.288918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.288920 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.288921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.288922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.288934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.288936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.288937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.288939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.288940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.288954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.288956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.299881 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.299883 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.299884 LLDP, length 82 [|LLDP] 17:44:39.299925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.299926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.299927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.299928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.299929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.299931 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.299932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.299934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.299957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.299959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.299962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.299964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.310889 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.310891 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.310893 LLDP, length 82 [|LLDP] 17:44:39.310932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.310933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.310934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.310936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.310937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.310938 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.310939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.310940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.310963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.310964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.310967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.310969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.319147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.319149 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.319150 LLDP, length 82 [|LLDP] 17:44:39.319190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.319191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127d 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.319192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.319194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.319195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.319196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.319209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.319211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.319212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.319213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.319226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.319228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9000 packets captured 9000 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 17:44:33.321513 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.321516 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.321518 LLDP, length 82 [|LLDP] 17:44:33.321606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.321608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009d a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.321609 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.321610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.321611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.321612 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.321613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.321615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.321616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.321671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.321672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.321677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.329755 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.329757 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.329758 LLDP, length 82 [|LLDP] 17:44:33.329820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.329821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a3 f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.329823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.329824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.329825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.329827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.329828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.329868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.329869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.329873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.329874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.329875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.340745 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.340747 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.340749 LLDP, length 82 [|LLDP] 17:44:33.340794 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.340794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ac 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.340796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.340798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.340799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.340800 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.340801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.340802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.340804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.340850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.340851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.340854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.348992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.348993 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.348994 LLDP, length 82 [|LLDP] 17:44:33.349040 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.349041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b2 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.349043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.349044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.349045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.349070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.349071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.349073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.349075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.349076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.349077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.349078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.360027 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.360029 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.360037 LLDP, length 82 [|LLDP] 17:44:33.360081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.360082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bb 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.360084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.360085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.360086 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.360087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.360088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.360089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.360118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.360120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.360123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.360125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.371028 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.371030 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.371031 LLDP, length 82 [|LLDP] 17:44:33.371092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.371093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c3 707e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.371094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.371096 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.371097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.371098 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.371099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.371100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.371101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.371139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.371140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.371143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.379276 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.379279 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.379286 LLDP, length 82 [|LLDP] 17:44:33.379343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.379344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c9 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.379346 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.379347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.379348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.379349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.379367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.379368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.379371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.379372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.379373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.379375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.390285 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.390288 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.390289 LLDP, length 82 [|LLDP] 17:44:33.390337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.390338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d2 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.390340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.390341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.390343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.390344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.390345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.390346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.390347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.390374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.390375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.390378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.401295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.401298 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.401299 LLDP, length 82 [|LLDP] 17:44:33.401337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.401338 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00da 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.401340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.401341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.401342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.401344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.401345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.401346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.401347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.401373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.401375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.401377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.409547 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.409548 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.409549 LLDP, length 82 [|LLDP] 17:44:33.409587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.409588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e0 d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.409589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.409590 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.409592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.409593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.409594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.409609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.409610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.409617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.409618 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.409620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.420565 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.420567 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.420568 LLDP, length 82 [|LLDP] 17:44:33.420613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.420614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e9 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.420615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.420617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.420618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.420619 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.420620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.420621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.420623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.420653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.420654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.420657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.428826 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.428828 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.428829 LLDP, length 82 [|LLDP] 17:44:33.428879 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.428880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ef 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.428882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.428883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.428884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.428899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.428900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.428902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.428903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.428905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.428906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.428908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.439827 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.439829 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.439831 LLDP, length 82 [|LLDP] 17:44:33.439880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.439881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f7 f079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.439883 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.439884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.439885 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.439886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.439888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.439889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.439905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.439906 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.439909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.439911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.450842 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.450844 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.450845 LLDP, length 82 [|LLDP] 17:44:33.450881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.450883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0100 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.450884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.450885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.450886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.450888 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.450889 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.450890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.450891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.450916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.450917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.450920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.459097 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.459099 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.459100 LLDP, length 82 [|LLDP] 17:44:33.459137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.459138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0106 a3ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.459139 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.459140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.459142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.459143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.459158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.459160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.459162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.459164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.459165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.459167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.470102 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.470104 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.470105 LLDP, length 82 [|LLDP] 17:44:33.470146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.470147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010f 0a13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.470148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.470150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.470151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.470152 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.470153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.470155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.470156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.470185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.470187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.470190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.481117 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.481119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.481120 LLDP, length 82 [|LLDP] 17:44:33.481163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.481164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0117 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.481170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.481172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.481173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.481174 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.481175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.481177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.481178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.481205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.481206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.481209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.489384 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.489386 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.489393 LLDP, length 82 [|LLDP] 17:44:33.489434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.489435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011d bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.489436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.489438 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.489439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.489440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.489441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.489458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.489459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.489461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.489462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.489464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.500385 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.500386 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.500394 LLDP, length 82 [|LLDP] 17:44:33.500436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.500437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0126 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.500439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.500440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.500441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.500442 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.500444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.500445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.500446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.500480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.500482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.500485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.511396 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.511398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.511399 LLDP, length 82 [|LLDP] 17:44:33.511442 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.511443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012e 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.511444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.511445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.511447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.511460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.511462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.511465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.511466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.511467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.511468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.511470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.519651 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.519653 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.519654 LLDP, length 82 [|LLDP] 17:44:33.519689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.519689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0134 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.519691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.519692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.519694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.519695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.519696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.519697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.519713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.519714 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.519716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.519718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.530665 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.530667 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.530668 LLDP, length 82 [|LLDP] 17:44:33.530706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.530707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013d 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.530709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.530710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.530711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.530713 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.530714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.530715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.530716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.530741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.530742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.530745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.538917 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.538918 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.538919 LLDP, length 82 [|LLDP] 17:44:33.538967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.538968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0143 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.538969 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.538971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.538972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.538973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.538988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.538989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.538991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.538993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.538994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.538996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.549941 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.549942 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.549943 LLDP, length 82 [|LLDP] 17:44:33.549989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.549990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014b f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.549991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.549993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.549994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.549995 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.549997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.549998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.549999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.550025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.550026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.550029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.560947 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.560949 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.560950 LLDP, length 82 [|LLDP] 17:44:33.560998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.560999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0154 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.561001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.561002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.561003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.561004 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.561005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.561006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.561007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.561033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.561035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.561038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.569205 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.569207 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.569215 LLDP, length 82 [|LLDP] 17:44:33.569269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.569270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015a a3b2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.569272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.569273 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.569275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.569276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.569277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.569297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.569298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.569300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.569302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.569303 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.580218 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.580220 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.580221 LLDP, length 82 [|LLDP] 17:44:33.580269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.580270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0163 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.580271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.580273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.580274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.580275 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.580276 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.580277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.580279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.580308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.580309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.580312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.591222 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.591224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.591231 LLDP, length 82 [|LLDP] 17:44:33.591276 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.591278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016b 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.591279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.591281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.591282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.591298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.591299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.591311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.591313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.591314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.591315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.591317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.599486 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.599495 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.599496 LLDP, length 82 [|LLDP] 17:44:33.599538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.599539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0171 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.599541 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.599542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.599543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.599544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.599546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.599547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.599565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.599566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.599569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.599571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.610485 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.610487 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.610494 LLDP, length 82 [|LLDP] 17:44:33.610534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.610535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017a 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.610536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.610538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.610539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.610540 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.610542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.610544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.610545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.610570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.610572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.610575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.618740 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.618742 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.618749 LLDP, length 82 [|LLDP] 17:44:33.618792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.618793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0180 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.618795 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.618796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.618797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.618798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.618813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.618815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.618817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.618818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.618820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.618822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.629746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.629748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.629755 LLDP, length 82 [|LLDP] 17:44:33.629795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.629796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0188 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.629798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.629799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.629800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.629801 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.629803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.629804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.629805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.629830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.629831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.629834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.640761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.640763 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.640764 LLDP, length 82 [|LLDP] 17:44:33.640812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.640813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0191 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.640814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.640816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.640817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.640818 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.640819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.640820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.640821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.640847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.640848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.640851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.649020 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.649022 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.649023 LLDP, length 82 [|LLDP] 17:44:33.649068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.649069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0197 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.649070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.649072 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.649073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.649078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.649080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.649097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.649098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.649100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.649101 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.649103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.660049 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.660058 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.660059 LLDP, length 82 [|LLDP] 17:44:33.660117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.660118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019f f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.660120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.660121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.660122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.660124 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.660125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.660126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.660127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.660160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.660162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.660166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.671048 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.671050 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.671057 LLDP, length 82 [|LLDP] 17:44:33.671098 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.671099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a8 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.671101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.671102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.671103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.671118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.671120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.671122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.671123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.671125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.671126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.671128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.679298 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.679300 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.679312 LLDP, length 82 [|LLDP] 17:44:33.679362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.679363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ae a3ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.679365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.679366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.679367 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.679368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.679370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.679371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.679390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.679391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.679394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.679396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.690308 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.690310 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.690317 LLDP, length 82 [|LLDP] 17:44:33.690361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.690362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b7 0a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.690364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.690365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.690367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.690368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.690369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.690370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.690371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.690399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.690400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.690404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.701313 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.701314 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.701315 LLDP, length 82 [|LLDP] 17:44:33.701348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.701349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bf 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.701351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.701352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.701353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.701354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.701367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.701368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.701371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.701372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.701373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.701375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.709565 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.709566 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.709568 LLDP, length 82 [|LLDP] 17:44:33.709603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.709604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c5 bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.709606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.709607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.709608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.709609 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.709611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.709612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.709613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.709637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.709639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.709642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.720575 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.720577 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.720578 LLDP, length 82 [|LLDP] 17:44:33.720615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.720616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ce 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.720618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.720619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.720620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.720621 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.720622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.720623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.720625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.720649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.720650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.720653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.728832 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.728834 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.728835 LLDP, length 82 [|LLDP] 17:44:33.728870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.728871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d4 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.728873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.728874 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.728875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.728876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.728878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.728892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.728893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.728895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.728897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.728898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.739842 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.739843 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.739844 LLDP, length 82 [|LLDP] 17:44:33.739879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.739879 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01dc d6df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.739881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.739883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.739884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.739885 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.739886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.739887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.739888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.739912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.739913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.739916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.750851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.750853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.750854 LLDP, length 82 [|LLDP] 17:44:33.750889 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.750890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e5 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.750892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.750893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.750894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.750906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.750908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.750910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.750911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.750913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.750914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.750915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.759110 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.759111 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.759112 LLDP, length 82 [|LLDP] 17:44:33.759146 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.759147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01eb 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.759149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.759150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.759151 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.759152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.759153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.759154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.759169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.759170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.759173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.759174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.770118 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.770119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.770120 LLDP, length 82 [|LLDP] 17:44:33.770157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.770158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f3 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.770160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.770161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.770162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.770163 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.770165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.770166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.770167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.770190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.770191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.770194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.781131 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.781132 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.781133 LLDP, length 82 [|LLDP] 17:44:33.781173 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.781173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fc 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.781175 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.781176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.781177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.781178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.781193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.781194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.781197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.781198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.781199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.781201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.789387 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.789388 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.789389 LLDP, length 82 [|LLDP] 17:44:33.789425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.789426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0202 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.789428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.789429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.789430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.789431 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.789433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.789434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.789435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.789459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.789460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.789463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.800394 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.800396 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.800397 LLDP, length 82 [|LLDP] 17:44:33.800432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.800433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020b 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.800435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.800436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.800437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.800438 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.800439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.800440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.800441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.800466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.800467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.800470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.811405 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.811406 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.811407 LLDP, length 82 [|LLDP] 17:44:33.811441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.811442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0213 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.811444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.811445 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.811446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.811448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.811449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.811463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.811464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.811466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.811468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.811469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.819666 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.819667 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.819668 LLDP, length 82 [|LLDP] 17:44:33.819704 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.819705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0219 bd4c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.819706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.819708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.819709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.819710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.819711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.819713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.819714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.819737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.819738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.819741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.830693 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.830695 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.830696 LLDP, length 82 [|LLDP] 17:44:33.830742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.830743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0222 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.830744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.830745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.830746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.830761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.830763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.830765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.830767 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.830768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.830769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.830771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.838940 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.838941 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.838948 LLDP, length 82 [|LLDP] 17:44:33.838986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.838987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0228 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.838989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.838990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.838991 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.838992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.838993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.838994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.839011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.839013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.839015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.839017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.849948 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.849949 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.849950 LLDP, length 82 [|LLDP] 17:44:33.849995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.849995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0230 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.849997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.849998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.849999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.850000 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.850001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.850003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.850004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.850029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.850030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.850033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.860956 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.860957 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.860959 LLDP, length 82 [|LLDP] 17:44:33.861001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.861002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0239 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.861003 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.861005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.861006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.861007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.861022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.861023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.861026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.861027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.861029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.861030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.869212 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.869213 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.869214 LLDP, length 82 [|LLDP] 17:44:33.869255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.869256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023f 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.869257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.869258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.869259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.869261 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.869262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.869263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.869264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.869288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.869290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.869292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.880226 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.880228 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.880229 LLDP, length 82 [|LLDP] 17:44:33.880272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.880273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0247 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.880274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.880275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.880276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.880277 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.880279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.880280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.880281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.880305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.880307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.880309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.891232 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.891234 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.891235 LLDP, length 82 [|LLDP] 17:44:33.891275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.891276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0250 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.891277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.891278 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.891279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.891281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.891282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.891297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.891298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.891300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.891310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.891312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.899492 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.899494 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.899495 LLDP, length 82 [|LLDP] 17:44:33.899537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.899538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0256 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.899540 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.899541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.899542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.899543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.899544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.899545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.899546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.899573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.899574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.899577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.910502 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.910504 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.910505 LLDP, length 82 [|LLDP] 17:44:33.910547 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.910548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025f 0a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.910550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.910551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.910552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.910565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.910567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.910569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.910570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.910572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.910573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.910574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.918758 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.918760 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.918761 LLDP, length 82 [|LLDP] 17:44:33.918804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.918805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0265 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.918806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.918808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.918809 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.918810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.918811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.918812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.918828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.918829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.918831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.918833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.929768 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.929770 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.929771 LLDP, length 82 [|LLDP] 17:44:33.929813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.929814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026d bd45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.929815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.929816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.929818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.929819 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.929820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.929821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.929822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.929848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.929849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.929852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.940783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.940785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.940786 LLDP, length 82 [|LLDP] 17:44:33.940823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.940824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0276 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.940825 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.940827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.940828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.940829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.940843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.940845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.940847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.940848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.940850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.940851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.949035 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.949037 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.949038 LLDP, length 82 [|LLDP] 17:44:33.949079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.949079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027c 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.949081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.949082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.949083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.949084 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.949085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.949087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.949088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.949112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.949113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.949116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.960047 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.960049 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.960050 LLDP, length 82 [|LLDP] 17:44:33.960093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.960094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0284 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.960095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.960097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.960098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.960099 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.960100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.960101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.960103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.960127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.960129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.960131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.971061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.971063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.971064 LLDP, length 82 [|LLDP] 17:44:33.971106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.971107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028d 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.971108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.971110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.971111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.971112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.971113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.971129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.971130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.971132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.971133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.971135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.979322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.979324 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.979325 LLDP, length 82 [|LLDP] 17:44:33.979368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.979369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0293 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.979370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.979371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.979372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.979374 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.979375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.979376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.979377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.979402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.979404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.979406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:33.990321 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:33.990323 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.990324 LLDP, length 82 [|LLDP] 17:44:33.990365 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:33.990366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029b f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:33.990368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:33.990369 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:33.990370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.990384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:33.990385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:33.990388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:33.990389 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:33.990390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:33.990391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:33.990393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.001339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.001340 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.001341 LLDP, length 82 [|LLDP] 17:44:34.001383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.001384 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a4 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.001386 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.001387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.001388 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.001389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.001390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.001391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.001407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.001409 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.001411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.001413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.009590 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.009592 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.009593 LLDP, length 82 [|LLDP] 17:44:34.009634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.009635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02aa a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.009636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.009638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.009639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.009640 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.009641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.009643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.009644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.009668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.009669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.009671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.020600 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.020601 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.020603 LLDP, length 82 [|LLDP] 17:44:34.020644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.020644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b3 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.020646 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.020647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.020648 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.020649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.020664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.020665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.020668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.020669 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.020670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.020672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.028928 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.028931 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.028932 LLDP, length 82 [|LLDP] 17:44:34.029030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.029031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b9 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.029033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.029034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.029035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.029037 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.029038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.029040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.029041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.029086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.029088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.029092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.039942 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.039945 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.039946 LLDP, length 82 [|LLDP] 17:44:34.040045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.040046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c1 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.040048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.040049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.040050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.040051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.040053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.040054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.040056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.040102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.040104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.040108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.050949 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.050952 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.050953 LLDP, length 82 [|LLDP] 17:44:34.051047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.051048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ca 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.051050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.051051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.051052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.051054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.051055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.051088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.051090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.051093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.051095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.051097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.059208 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.059211 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.059213 LLDP, length 82 [|LLDP] 17:44:34.059349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.059350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d0 7077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.059352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.059353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.059354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.059355 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.059356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.059357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.059359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.059406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.059407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.059411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.070214 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.070216 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.070218 LLDP, length 82 [|LLDP] 17:44:34.070314 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.070315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d8 d6e6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.070317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.070318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.070320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.070348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.070349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.070352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.070353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.070354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.070356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.070358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.081229 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.081233 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.081234 LLDP, length 82 [|LLDP] 17:44:34.081328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.081329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e1 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.081331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.081332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.081333 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.081335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.081336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.081337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.081369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.081371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.081375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.081377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.089484 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.089487 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.089488 LLDP, length 82 [|LLDP] 17:44:34.089584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.089585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e7 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.089587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.089588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.089589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.089591 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.089592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.089594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.089595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.089643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.089645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.089649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.100531 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.100535 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.100537 LLDP, length 82 [|LLDP] 17:44:34.100676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.100677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ef f079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.100679 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.100680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.100681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.100683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.100727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.100729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.100735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.100738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.100739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.100741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.108734 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.108736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.108737 LLDP, length 82 [|LLDP] 17:44:34.108822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.108823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 3d47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.108824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.108826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.108827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.108828 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.108830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.108831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.108832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.108873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.108875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.108879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.119701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.119703 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.119704 LLDP, length 82 [|LLDP] 17:44:34.119752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.119753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fe a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.119755 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.119756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.119757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.119758 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.119759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.119760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.119762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.119791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.119792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.119794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.130720 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.130722 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.130731 LLDP, length 82 [|LLDP] 17:44:34.130787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.130788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0307 0a13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.130790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.130791 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.130792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.130794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.130795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.130815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.130816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.130819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.130821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.130823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.138968 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.138977 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.138978 LLDP, length 82 [|LLDP] 17:44:34.139026 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.139028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030d 56df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.139029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.139030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.139031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.139032 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.139033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.139035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.139036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.139066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.139067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.139070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.149973 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.149975 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.149976 LLDP, length 82 [|LLDP] 17:44:34.150023 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.150024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0315 bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.150025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.150026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.150028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.150043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.150044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.150047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.150048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.150049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.150050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.150052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.160980 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.160982 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.160983 LLDP, length 82 [|LLDP] 17:44:34.161028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.161029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031e 23ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.161031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.161032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.161033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.161034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.161035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.161036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.161052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.161053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.161056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.161058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.169238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.169239 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.169240 LLDP, length 82 [|LLDP] 17:44:34.169283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.169284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0324 7079 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.169286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.169287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.169288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.169289 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.169291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.169292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.169293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.169319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.169321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.169324 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.180253 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.180256 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.180257 LLDP, length 82 [|LLDP] 17:44:34.180322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.180324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032c d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.180326 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.180327 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.180328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.180330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.180350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.180351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.180353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.180354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.180356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.180358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.191293 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.191296 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.191297 LLDP, length 82 [|LLDP] 17:44:34.191369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.191370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0335 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.191372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.191373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.191374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.191376 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.191377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.191379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.191380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.191441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.191443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.191447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.199533 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.199535 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.199542 LLDP, length 82 [|LLDP] 17:44:34.199591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.199592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033b 8a12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.199594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.199595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.199597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.199598 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.199599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.199600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.199601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.199633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.199635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.199638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.210528 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.210529 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.210537 LLDP, length 82 [|LLDP] 17:44:34.210589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.210590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0343 f078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.210592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.210594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.210595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.210596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.210598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.210615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.210617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.210619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.210621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.210623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.218784 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.218786 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.218787 LLDP, length 82 [|LLDP] 17:44:34.218835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.218836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a 3d45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.218837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.218839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.218840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.218841 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.218842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.218843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.218844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.218870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.218872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.218875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.229805 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.229814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.229815 LLDP, length 82 [|LLDP] 17:44:34.229869 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.229871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0352 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.229872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.229873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.229875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.229891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.229893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.229896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.229897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.229898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.229899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.229900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.240812 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.240815 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.240816 LLDP, length 82 [|LLDP] 17:44:34.240869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.240870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035b 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.240871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.240873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.240874 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.240875 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.240877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.240878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.240897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.240898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.240901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.240902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.249069 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.249072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.249073 LLDP, length 82 [|LLDP] 17:44:34.249116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.249117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0361 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.249118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.249119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.249120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.249122 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.249123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.249124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.249125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.249152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.249153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.249156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.260078 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.260081 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.260082 LLDP, length 82 [|LLDP] 17:44:34.260124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.260125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0369 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.260127 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.260128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.260129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.260130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.260147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.260148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.260151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.260152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.260153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.260155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.271085 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.271087 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.271088 LLDP, length 82 [|LLDP] 17:44:34.271139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.271140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0372 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.271142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.271143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.271144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.271145 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.271146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.271147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.271148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.271176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.271177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.271180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.279352 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.279354 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.279362 LLDP, length 82 [|LLDP] 17:44:34.279407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.279409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0378 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.279410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.279411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.279413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.279414 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.279415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.279416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.279417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.279446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.279448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.279451 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.290353 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.290355 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.290362 LLDP, length 82 [|LLDP] 17:44:34.290406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.290407 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0380 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.290408 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.290409 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.290410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.290411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.290413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.290429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.290430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.290433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.290434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.290435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.301368 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.301377 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.301378 LLDP, length 82 [|LLDP] 17:44:34.301429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.301430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0389 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.301431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.301432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.301434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.301435 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.301436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.301437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.301438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.301474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.301475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.301479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.309624 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.309626 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.309627 LLDP, length 82 [|LLDP] 17:44:34.309670 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.309671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038f 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.309673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.309674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.309675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.309691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.309692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.309695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.309696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.309697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.309699 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.309700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.320632 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.320634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.320641 LLDP, length 82 [|LLDP] 17:44:34.320684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.320685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0397 f07e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.320686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.320687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.320689 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.320690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.320691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.320692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.320725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.320726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.320729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.320731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.328890 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.328892 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.328900 LLDP, length 82 [|LLDP] 17:44:34.328944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.328944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.328947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.328948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.328949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.328950 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.328951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.328953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.328954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.328981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.328982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.328985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.339894 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.339895 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.339896 LLDP, length 82 [|LLDP] 17:44:34.339941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.339942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a6 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.339944 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.339945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.339946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.339947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.339962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.339963 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.339966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.339967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.339968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.339970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.350902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.350904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.350905 LLDP, length 82 [|LLDP] 17:44:34.350947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.350948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03af 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.350950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.350951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.350952 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.350953 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.350955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.350956 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.350957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.350982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.350983 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.350986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.359170 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.359172 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.359180 LLDP, length 82 [|LLDP] 17:44:34.359228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.359229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b5 56e0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.359230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.359231 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.359233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.359234 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.359235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.359236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.359238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.359267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.359268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.359271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.370177 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.370179 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.370186 LLDP, length 82 [|LLDP] 17:44:34.370227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.370229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bd bd46 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.370230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.370231 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.370232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.370233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.370234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.370250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.370251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.370254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.370255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.370257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.381177 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.381179 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.381179 LLDP, length 82 [|LLDP] 17:44:34.381224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.381225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c6 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.381227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.381228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.381229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.381230 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.381231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.381232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.381233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.381258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.381259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.381262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.389438 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.389439 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.389440 LLDP, length 82 [|LLDP] 17:44:34.389483 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.389484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cc 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.389485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.389487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.389488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.389503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.389504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.389507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.389508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.389510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.389511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.389512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.400447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.400449 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.400450 LLDP, length 82 [|LLDP] 17:44:34.400493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.400494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d4 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.400496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.400497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.400498 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.400499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.400501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.400502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.400517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.400518 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.400521 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.400522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.408703 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.408705 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.408712 LLDP, length 82 [|LLDP] 17:44:34.408749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.408750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.408751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.408752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.408754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.408755 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.408756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.408757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.408758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.408782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.408784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.408786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.419714 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.419716 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.419717 LLDP, length 82 [|LLDP] 17:44:34.419767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.419768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.419770 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.419771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.419772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.419773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.419788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.419790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.419792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.419793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.419795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.419796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.430727 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.430729 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.430730 LLDP, length 82 [|LLDP] 17:44:34.430772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.430773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03eb f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.430775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.430776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.430777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.430778 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.430779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.430780 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.430782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.430805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.430807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.430810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.438981 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.438982 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.438983 LLDP, length 82 [|LLDP] 17:44:34.439027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.439028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.439029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.439030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.439032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.439033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.439034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.439036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.439036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.439061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.439062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.439065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.449993 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.449995 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.449996 LLDP, length 82 [|LLDP] 17:44:34.450040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.450041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fa a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.450043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.450044 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.450045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.450046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.450047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.450063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.450064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.450067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.450068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.450070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.461007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.461009 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.461010 LLDP, length 82 [|LLDP] 17:44:34.461045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.461046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0403 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.461048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.461049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.461050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.461051 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.461052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.461053 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.461054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.461079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.461080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.461083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.469262 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.469264 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.469265 LLDP, length 82 [|LLDP] 17:44:34.469308 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.469309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0409 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.469311 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.469312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.469313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.469327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.469328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.469331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.469332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.469333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.469335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.469336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.480268 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.480269 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.480270 LLDP, length 82 [|LLDP] 17:44:34.480314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.480315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0411 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.480316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.480317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.480318 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.480320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.480321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.480322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.480339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.480340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.480342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.480344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.491280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.491281 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.491282 LLDP, length 82 [|LLDP] 17:44:34.491332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.491333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.491335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.491336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.491337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.491338 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.491339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.491340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.491341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.491366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.491367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.491370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.499538 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.499539 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.499540 LLDP, length 82 [|LLDP] 17:44:34.499584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.499585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0420 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.499586 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.499588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.499589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.499590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.499606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.499607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.499610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.499611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.499612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.499614 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.510546 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.510548 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.510549 LLDP, length 82 [|LLDP] 17:44:34.510590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.510591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0428 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.510593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.510594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.510595 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.510596 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.510597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.510598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.510599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.510623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.510625 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.510627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.518800 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.518802 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.518803 LLDP, length 82 [|LLDP] 17:44:34.518846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.518847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.518848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.518850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.518851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.518852 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.518853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.518854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.518855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.518879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.518881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.518883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.529814 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.529816 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.529823 LLDP, length 82 [|LLDP] 17:44:34.529859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.529860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0437 8a3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.529861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.529862 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.529863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.529864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.529866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.529881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.529883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.529885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.529887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.529888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.540824 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.540826 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.540827 LLDP, length 82 [|LLDP] 17:44:34.540870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.540870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043f f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.540872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.540873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.540874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.540876 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.540877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.540878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.540879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.540903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.540904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.540907 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.549082 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.549083 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.549084 LLDP, length 82 [|LLDP] 17:44:34.549125 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.549126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.549127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.549129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.549130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.549143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.549144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.549147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.549148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.549149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.549150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.549151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.560092 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.560094 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.560095 LLDP, length 82 [|LLDP] 17:44:34.560136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.560137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.560138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.560140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.560141 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.560142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.560143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.560144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.560160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.560161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.560163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.560165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.571100 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.571102 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.571103 LLDP, length 82 [|LLDP] 17:44:34.571143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.571144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0457 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.571146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.571147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.571148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.571149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.571150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.571151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.571153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.571177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.571179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.571182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.579366 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.579367 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.579368 LLDP, length 82 [|LLDP] 17:44:34.579417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.579418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045d 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.579419 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.579421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.579422 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.579423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.579438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.579439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.579441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.579442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.579443 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.579445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.590369 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.590371 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.590379 LLDP, length 82 [|LLDP] 17:44:34.590416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.590417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0465 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.590419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.590420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.590421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.590422 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.590423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.590425 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.590426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.590451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.590452 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.590454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.601381 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.601382 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.601383 LLDP, length 82 [|LLDP] 17:44:34.601429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.601430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046e 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.601433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.601434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.601435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.601436 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.601438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.601439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.601440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.601464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.601465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.601469 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.609641 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.609643 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.609644 LLDP, length 82 [|LLDP] 17:44:34.609683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.609683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0474 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.609685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.609686 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.609688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.609689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.609690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.609705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.609706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.609709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.609710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.609712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.620647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.620649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.620650 LLDP, length 82 [|LLDP] 17:44:34.620692 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.620694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047c d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.620695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.620696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.620698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.620699 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.620700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.620701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.620702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.620727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.620729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.620731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.628903 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.628904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.628905 LLDP, length 82 [|LLDP] 17:44:34.628947 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.628948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.628949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.628951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.628952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.628966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.628967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.628969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.628971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.628972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.628973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.628975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.639915 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.639917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.639918 LLDP, length 82 [|LLDP] 17:44:34.639962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.639963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048b 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.639965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.639966 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.639967 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.639968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.639969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.639971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.639986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.639987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.639990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.639991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.650924 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.650926 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.650927 LLDP, length 82 [|LLDP] 17:44:34.650970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.650971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0493 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.650973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.650974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.650975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.650976 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.650977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.650978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.650980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.651004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.651006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.651009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.659179 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.659181 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.659182 LLDP, length 82 [|LLDP] 17:44:34.659226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.659227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.659228 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.659229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.659230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.659232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.659247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.659248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.659251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.659252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.659253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.659254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.670197 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.670199 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.670200 LLDP, length 82 [|LLDP] 17:44:34.670244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.670245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a2 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.670247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.670248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.670249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.670250 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.670251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.670253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.670254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.670278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.670279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.670282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.681205 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.681207 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.681214 LLDP, length 82 [|LLDP] 17:44:34.681254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.681255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ab 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.681256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.681258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.681259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.681260 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.681262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.681263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.681264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.681289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.681290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.681293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.689460 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.689462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.689463 LLDP, length 82 [|LLDP] 17:44:34.689505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.689506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b1 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.689507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.689509 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.689510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.689511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.689512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.689527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.689528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.689530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.689532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.689533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.700470 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.700472 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.700473 LLDP, length 82 [|LLDP] 17:44:34.700516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.700517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b9 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.700518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.700520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.700521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.700522 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.700523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.700524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.700525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.700550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.700552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.700555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.708723 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.708724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.708725 LLDP, length 82 [|LLDP] 17:44:34.708768 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.708769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.708771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.708772 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.708773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.708786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.708787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.708790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.708791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.708792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.708793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.708795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.719734 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.719736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.719749 LLDP, length 82 [|LLDP] 17:44:34.719784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.719785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c8 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.719787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.719788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.719789 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.719790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.719792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.719793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.719808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.719809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.719812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.719814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.730749 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.730751 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.730752 LLDP, length 82 [|LLDP] 17:44:34.730788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.730788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d0 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.730790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.730791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.730792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.730793 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.730794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.730796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.730797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.730821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.730823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.730825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.739002 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.739003 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.739004 LLDP, length 82 [|LLDP] 17:44:34.739047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.739048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.739049 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.739051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.739052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.739053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.739068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.739069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.739072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.739073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.739074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.739076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.750014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.750016 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.750018 LLDP, length 82 [|LLDP] 17:44:34.750061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.750061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04df 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.750063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.750064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.750065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.750066 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.750067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.750069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.750070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.750094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.750096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.750098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.761021 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.761023 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.761024 LLDP, length 82 [|LLDP] 17:44:34.761067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.761068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.761070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.761071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.761072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.761073 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.761075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.761076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.761077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.761101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.761102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.761105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.769280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.769282 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.769283 LLDP, length 82 [|LLDP] 17:44:34.769325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.769326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.769327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.769328 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.769329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.769330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.769332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.769347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.769348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.769351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.769352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.769353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.780288 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.780290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.780291 LLDP, length 82 [|LLDP] 17:44:34.780332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.780333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f6 a3d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.780335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.780336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.780337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.780338 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.780339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.780341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.780342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.780366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.780367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.780370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.791312 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.791313 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.791314 LLDP, length 82 [|LLDP] 17:44:34.791351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.791351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ff 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.791353 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.791354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.791355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.791368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.791370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.791372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.791374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.791375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.791377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.791378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.799557 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.799559 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.799560 LLDP, length 82 [|LLDP] 17:44:34.799603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.799604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0505 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.799605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.799606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.799607 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.799608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.799609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.799610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.799626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.799627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.799630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.799631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.810568 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.810570 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.810570 LLDP, length 82 [|LLDP] 17:44:34.810613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.810614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050d bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.810615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.810617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.810618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.810619 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.810620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.810621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.810622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.810647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.810648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.810651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.818828 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.818830 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.818831 LLDP, length 82 [|LLDP] 17:44:34.818874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.818875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.818877 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.818878 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.818879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.818881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.818895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.818896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.818898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.818899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.818901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.818902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.829833 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.829835 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.829835 LLDP, length 82 [|LLDP] 17:44:34.829877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.829878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051c 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.829880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.829880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.829882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.829883 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.829884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.829885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.829887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.829911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.829913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.829916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.840843 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.840845 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.840846 LLDP, length 82 [|LLDP] 17:44:34.840888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.840888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0524 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.840890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.840891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.840892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.840893 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.840895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.840896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.840897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.840921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.840922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.840925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.849106 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.849108 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.849109 LLDP, length 82 [|LLDP] 17:44:34.849153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.849154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.849155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.849156 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.849157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.849158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.849160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.849175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.849177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.849179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.849181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.849182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.860115 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.860116 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.860117 LLDP, length 82 [|LLDP] 17:44:34.860160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.860161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0533 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.860163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.860164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.860165 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.860166 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.860168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.860169 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.860170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.860195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.860196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.860199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.871123 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.871125 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.871126 LLDP, length 82 [|LLDP] 17:44:34.871169 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.871170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053b f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.871171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.871172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.871173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.871187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.871189 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.871191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.871193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.871194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.871196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.871197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.879379 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.879381 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.879382 LLDP, length 82 [|LLDP] 17:44:34.879426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.879427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.879429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.879430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.879431 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.879433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.879434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.879435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.879451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.879453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.879455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.879457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.890392 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.890394 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.890395 LLDP, length 82 [|LLDP] 17:44:34.890437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.890438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054a a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.890440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.890441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.890442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.890443 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.890444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.890446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.890447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.890471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.890473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.890475 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.898652 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.898653 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.898654 LLDP, length 82 [|LLDP] 17:44:34.898691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.898692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0550 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.898694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.898695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.898696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.898698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.898713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.898714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.898716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.898718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.898719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.898720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.909661 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.909663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.909664 LLDP, length 82 [|LLDP] 17:44:34.909699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.909700 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0559 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.909701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.909702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.909704 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.909705 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.909706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.909707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.909708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.909733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.909734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.909737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.920674 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.920675 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.920676 LLDP, length 82 [|LLDP] 17:44:34.920711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.920713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0561 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.920714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.920715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.920717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.920718 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.920719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.920721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.920722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.920745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.920747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.920750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.928925 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.928927 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.928928 LLDP, length 82 [|LLDP] 17:44:34.928969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.928970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.928972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.928973 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.928974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.928975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.928976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.928991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.928993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.928995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.928995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.928997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.939934 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.939935 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.939936 LLDP, length 82 [|LLDP] 17:44:34.939979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.939980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0570 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.939981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.939983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.939984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.939985 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.939986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.939987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.939989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.940013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.940014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.940017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.950944 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.950946 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.950947 LLDP, length 82 [|LLDP] 17:44:34.950989 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.950989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0578 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.950991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.950992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.950993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.951007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.951008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.951010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.951012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.951013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.951015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.951016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.959201 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.959203 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.959204 LLDP, length 82 [|LLDP] 17:44:34.959245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.959246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.959247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.959248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.959249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.959250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.959251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.959253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.959268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.959269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.959271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.959273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.970206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.970208 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.970209 LLDP, length 82 [|LLDP] 17:44:34.970244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.970245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0587 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.970246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.970248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.970249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.970250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.970251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.981227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981242 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.981244 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.981245 LLDP, length 82 [|LLDP] 17:44:34.981275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.981277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058f f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.981278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.981279 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.981281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.981282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.981290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.981292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.981293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.981294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:34.989482 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:34.989483 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.989484 LLDP, length 82 [|LLDP] 17:44:34.989530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:34.989531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:34.989532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:34.989533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:34.989534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:34.989536 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:34.989537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:34.989538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.989562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:34.989563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:34.989567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:34.989569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.000489 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.000491 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.000492 LLDP, length 82 [|LLDP] 17:44:35.000534 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.000535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.000537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.000538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.000551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.000553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.000554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.000555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.000556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.000558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.000572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.000574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.008746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.008748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.008748 LLDP, length 82 [|LLDP] 17:44:35.008790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.008791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a4 f09b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.008793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.008794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.008795 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.008796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.008797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.008812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.008814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.008815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.008827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.008830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.019771 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.019779 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.019780 LLDP, length 82 [|LLDP] 17:44:35.019831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.019832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ad 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.019833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.019834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.019835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.019836 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.019838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.019839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.019865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.019868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.019872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.019874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.035179 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.035181 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.035182 LLDP, length 82 [|LLDP] 17:44:35.035225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.035226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b5 bd6e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.035228 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.035229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.035230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.035244 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.035246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.035247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.035248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.035249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.035263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.035265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.039026 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.039028 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.039029 LLDP, length 82 [|LLDP] 17:44:35.039073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.039074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.039076 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.039077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.039078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.039079 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.039080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.039081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.039104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.039121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.039125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.039127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.050067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.050075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.050076 LLDP, length 82 [|LLDP] 17:44:35.050132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.050133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c4 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.050135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.050137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.050138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.050139 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.050141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.050142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.050180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.050183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.050188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.050190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.061061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.061063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.061071 LLDP, length 82 [|LLDP] 17:44:35.061119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.061120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cc d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.061122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.061123 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.061125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.061126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.061143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.061145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.061147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.061148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.061161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.061164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.069307 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.069308 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.069309 LLDP, length 82 [|LLDP] 17:44:35.069352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.069354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.069355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.069356 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.069358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.069359 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.069360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.069362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.069386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.069387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.069390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.069393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.080312 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.080313 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.080314 LLDP, length 82 [|LLDP] 17:44:35.080357 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.080358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05db 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.080359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.080361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.080373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.080375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.080376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.080377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.080379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.080380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.080395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.080397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.095787 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.095788 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.095789 LLDP, length 82 [|LLDP] 17:44:35.095824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.095825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e3 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.095827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.095828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.095830 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.095831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.095832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.095848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.095849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.095851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.095862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.095864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.099581 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.099583 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.099584 LLDP, length 82 [|LLDP] 17:44:35.099624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.099625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.099627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.099628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.099629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.099630 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.099631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.099632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.099655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.099658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.099661 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.099663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.110655 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.110657 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.110659 LLDP, length 82 [|LLDP] 17:44:35.110757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.110758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f2 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.110760 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.110761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.110763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.110795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.110799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.110800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.110802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.110803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.110820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.110822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.118914 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.118917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.118919 LLDP, length 82 [|LLDP] 17:44:35.119015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.119016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f8 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.119018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.119019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.119020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.119022 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.119023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.119024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.119068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.119071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.119076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.119078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.129894 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.129897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.129898 LLDP, length 82 [|LLDP] 17:44:35.129973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.129974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0601 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.129976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.129977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.129978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.129979 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.129981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.129982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.130017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.130019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.130023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.130025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.140871 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.140873 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.140873 LLDP, length 82 [|LLDP] 17:44:35.140920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.140920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0609 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.140922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.140924 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.140925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.140926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.140942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.140944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.140945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.140947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.140960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.140962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.149124 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.149126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.149127 LLDP, length 82 [|LLDP] 17:44:35.149170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.149171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.149172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.149174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.149175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.149176 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.149177 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.149178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.149201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.149202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.149206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.149208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.160136 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.160138 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.160139 LLDP, length 82 [|LLDP] 17:44:35.160182 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.160183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0618 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.160185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.160186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.160198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.160200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.160201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.160202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.160204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.160205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.160219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.160222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.171142 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.171144 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.171145 LLDP, length 82 [|LLDP] 17:44:35.171187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.171188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0620 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.171189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.171191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.171192 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.171193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.171194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.171209 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.171211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.171212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.171224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.171227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.179413 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.179415 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.179422 LLDP, length 82 [|LLDP] 17:44:35.179468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.179469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.179471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.179472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.179473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.179474 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.179475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.179476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.179502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.179504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.179507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.179510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.190414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.190416 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.190417 LLDP, length 82 [|LLDP] 17:44:35.190462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.190463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.190465 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.190466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.190467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.190480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.190482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.190483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.190484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.190485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.190499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.190501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.198679 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.198687 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.198688 LLDP, length 82 [|LLDP] 17:44:35.198736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.198737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0635 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.198738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.198740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.198741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.198742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.198743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.198745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.198773 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.198775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.198779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.198781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.209687 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.209689 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.209696 LLDP, length 82 [|LLDP] 17:44:35.209744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.209745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.209747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.209748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.209749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.209750 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.209752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.209753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.209779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.209781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.209784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.209787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.220715 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.220723 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.220724 LLDP, length 82 [|LLDP] 17:44:35.220777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.220778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0646 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.220780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.220781 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.220782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.220783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.220800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.220803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.220804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.220805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.220818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.220820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.228955 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.228957 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.228958 LLDP, length 82 [|LLDP] 17:44:35.229012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.229013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064c f09f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.229014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.229016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.229017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.229018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.229020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.229021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.229047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.229049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.229053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.229055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.239965 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.239967 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.239974 LLDP, length 82 [|LLDP] 17:44:35.240018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.240019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0655 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.240020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.240022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.240035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.240036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.240038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.240039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.240040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.240042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.240062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.240065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.250974 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.250976 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.250977 LLDP, length 82 [|LLDP] 17:44:35.251028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.251029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065d bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.251031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.251032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.251033 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.251035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.251036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.251052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.251054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.251056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.251073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.251076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.259234 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.259236 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.259243 LLDP, length 82 [|LLDP] 17:44:35.259290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.259291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.259292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.259293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.259294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.259296 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.259297 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.259298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.259336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.259339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.259343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.259345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.270238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.270240 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.270247 LLDP, length 82 [|LLDP] 17:44:35.270290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.270291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066c 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.270292 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.270294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.270295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.270309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.270311 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.270313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.270314 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.270315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.270328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.270331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.281252 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.281253 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.281254 LLDP, length 82 [|LLDP] 17:44:35.281292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.281293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0674 d707 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.281295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.281296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.281298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.281299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.281300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.281301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.281325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.281327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.281331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.281333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.289500 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.289502 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.289503 LLDP, length 82 [|LLDP] 17:44:35.289546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.289547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.289549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.289550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.289551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.289552 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.289553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.289555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.289577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.289579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.289582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.289584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.300512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.300514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.300515 LLDP, length 82 [|LLDP] 17:44:35.300558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.300559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0683 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.300561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.300562 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.300563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.300564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.300578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.300580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.300581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.300582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.300595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.300598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.308769 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.308771 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.308772 LLDP, length 82 [|LLDP] 17:44:35.308813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.308814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0689 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.308815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.308816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.308818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.308819 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.308820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.308821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.308845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.308847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.308850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.308851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.319786 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.319789 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.319795 LLDP, length 82 [|LLDP] 17:44:35.319835 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.319836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0692 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.319837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.319839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.319867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.319869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.319870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.319871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.319873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.319874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.319889 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.319891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.330794 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.330795 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.330797 LLDP, length 82 [|LLDP] 17:44:35.330841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.330843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069a a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.330844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.330845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.330846 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.330847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.330849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.330864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.330866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.330867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.330879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.330882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.339052 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.339054 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.339055 LLDP, length 82 [|LLDP] 17:44:35.339103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.339104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a0 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.339106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.339107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.339108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.339110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.339111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.339112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.339136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.339138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.339142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.339144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.350058 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.350060 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.350061 LLDP, length 82 [|LLDP] 17:44:35.350107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.350108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a9 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.350109 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.350110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.350111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.350126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.350127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.350129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.350130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.350131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.350145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.350148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.361069 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.361071 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.361078 LLDP, length 82 [|LLDP] 17:44:35.361116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.361117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b1 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.361119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.361120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.361121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.361122 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.361123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.361125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.361149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.361151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.361154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.361156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.369322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.369324 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.369325 LLDP, length 82 [|LLDP] 17:44:35.369369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.369370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.369371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.369372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.369374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.369375 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.369376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.369377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.369400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.369402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.369405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.369407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.380333 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.380334 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.380336 LLDP, length 82 [|LLDP] 17:44:35.380379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.380380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c0 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.380382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.380383 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.380384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.380385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.380399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.380401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.380403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.380404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.380417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.380419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.388593 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.388595 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.388596 LLDP, length 82 [|LLDP] 17:44:35.388637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.388638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c6 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.388640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.388641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.388642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.388643 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.388644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.388645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.388669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.388670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.388674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.388676 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.399607 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.399610 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.399617 LLDP, length 82 [|LLDP] 17:44:35.399661 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.399662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cf 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.399664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.399665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.399679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.399681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.399683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.399684 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.399685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.399687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.399703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.399706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.410613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.410615 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.410616 LLDP, length 82 [|LLDP] 17:44:35.410655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.410656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d7 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.410657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.410658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.410659 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.410661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.410662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.410678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.410679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.410681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.410693 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.410695 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.418869 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.418871 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.418872 LLDP, length 82 [|LLDP] 17:44:35.418916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.418917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dd d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.418919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.418920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.418921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.418923 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.418924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.418925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.418949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.418951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.418955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.418958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.429879 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.429881 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.429882 LLDP, length 82 [|LLDP] 17:44:35.429925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.429926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e6 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.429927 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.429929 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.429930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.429943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.429945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.429947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.429948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.429949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.429963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.429965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.440889 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.440891 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.440892 LLDP, length 82 [|LLDP] 17:44:35.440935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.440935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ee a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.440937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.440938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.440939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.440940 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.440942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.440943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.440965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.440967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.440970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.440972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.449147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.449148 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.449149 LLDP, length 82 [|LLDP] 17:44:35.449190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.449191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f4 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.449193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.449194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.449195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.449196 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.449198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.449199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.449222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.449224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.449227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.449230 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.460159 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.460161 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.460162 LLDP, length 82 [|LLDP] 17:44:35.460200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.460201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fd 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.460202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.460204 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.460205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.460206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.460219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.460221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.460222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.460223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.460236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.460239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.471168 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.471170 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.471171 LLDP, length 82 [|LLDP] 17:44:35.471209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.471210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0705 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.471211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.471212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.471214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.471215 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.471216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.471217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.471240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.471242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.471245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.471247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.479424 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.479425 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.479427 LLDP, length 82 [|LLDP] 17:44:35.479471 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.479472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c 0a36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.479473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.479475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.479487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.479489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.479490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.479492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.479493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.479494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.479509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.479511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.490433 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.490435 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.490436 LLDP, length 82 [|LLDP] 17:44:35.490478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.490479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0714 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.490481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.490482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.490483 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.490484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.490485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.490499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.490501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.490502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.490514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.490516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.498687 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.498689 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.498690 LLDP, length 82 [|LLDP] 17:44:35.498732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.498733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071a bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.498734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.498735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.498737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.498738 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.498739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.498740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.498763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.498765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.498769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.498771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.509701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.509703 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.509704 LLDP, length 82 [|LLDP] 17:44:35.509746 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.509747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0723 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.509749 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.509750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.509751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.509764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.509766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.509767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.509768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.509770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.509783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.509786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.520712 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.520714 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.520715 LLDP, length 82 [|LLDP] 17:44:35.520756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.520757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072b 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.520759 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.520760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.520761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.520762 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.520763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.520764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.520789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.520791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.520794 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.520796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.528968 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.528969 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.528970 LLDP, length 82 [|LLDP] 17:44:35.529012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.529013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0731 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.529014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.529016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.529017 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.529018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.529019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.529021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.529043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.529045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.529048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.529051 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.539977 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.539979 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.539980 LLDP, length 82 [|LLDP] 17:44:35.540022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.540023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.540024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.540026 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.540027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.540028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.540042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.540044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.540045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.540046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.540059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.540062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.550987 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.550989 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.550990 LLDP, length 82 [|LLDP] 17:44:35.551032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.551033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0742 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.551035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.551036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.551037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.551039 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.551040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.551041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.551064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.551065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.551069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.551071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.559244 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.559246 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.559247 LLDP, length 82 [|LLDP] 17:44:35.559288 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.559289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0748 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.559291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.559292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.559313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.559316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.559317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.559318 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.559320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.559321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.559336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.559339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.570257 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.570259 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.570260 LLDP, length 82 [|LLDP] 17:44:35.570303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.570304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0751 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.570305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.570306 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.570307 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.570309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.570310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.570324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.570326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.570327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.570339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.570341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.581269 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.581270 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.581271 LLDP, length 82 [|LLDP] 17:44:35.581308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.581308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0759 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.581310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.581312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.581313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.581314 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.581315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.581316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.581339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.581341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.581344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.581346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.589524 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.589526 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.589527 LLDP, length 82 [|LLDP] 17:44:35.589564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.589564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.589566 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.589567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.589568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.589581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.589583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.589584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.589585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.589587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.589600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.589602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.600533 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.600534 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.600535 LLDP, length 82 [|LLDP] 17:44:35.600579 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.600580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0768 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.600581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.600582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.600583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.600585 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.600586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.600587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.600611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.600613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.600616 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.600618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.608791 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.608793 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.608794 LLDP, length 82 [|LLDP] 17:44:35.608838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.608839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076e bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.608841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.608842 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.608843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.608843 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.608845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.608846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.608869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.608871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.608875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.608877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.619800 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.619801 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.619802 LLDP, length 82 [|LLDP] 17:44:35.619846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.619846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0777 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.619848 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.619849 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.619850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.619851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.619865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.619867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.619868 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.619869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.619883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.619885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.630813 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.630815 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.630816 LLDP, length 82 [|LLDP] 17:44:35.630853 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.630854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.630856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.630857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.630858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.630860 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.630861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.630862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.630885 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.630887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.630890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.630893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.639070 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.639072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.639073 LLDP, length 82 [|LLDP] 17:44:35.639110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.639111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0785 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.639113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.639114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.639126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.639128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.639129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.639130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.639131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.639133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.639148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.639150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.650083 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.650085 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.650086 LLDP, length 82 [|LLDP] 17:44:35.650128 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.650129 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078e 3d6c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.650131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.650132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.650133 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.650135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.650136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.650151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.650153 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.650154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.650166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.650168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.661090 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.661092 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.661093 LLDP, length 82 [|LLDP] 17:44:35.661138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.661138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0796 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.661140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.661141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.661142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.661143 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.661144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.661146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.661171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.661173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.661176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.661179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.669346 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.669348 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.669349 LLDP, length 82 [|LLDP] 17:44:35.669397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.669398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079c f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.669400 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.669401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.669402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.669416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.669418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.669420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.669421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.669422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.669436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.669438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.680355 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.680357 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.680358 LLDP, length 82 [|LLDP] 17:44:35.680402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.680403 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a5 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.680404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.680406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.680407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.680408 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.680409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.680410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.680433 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.680435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.680439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.680441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.688613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.688615 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.688616 LLDP, length 82 [|LLDP] 17:44:35.688658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.688659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ab a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.688661 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.688662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.688663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.688664 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.688666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.688667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.688689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.688691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.688694 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.688696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.699627 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.699629 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.699630 LLDP, length 82 [|LLDP] 17:44:35.699673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.699673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b4 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.699675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.699676 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.699677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.699678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.699692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.699694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.699696 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.699697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.699709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.699711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.710635 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.710636 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.710637 LLDP, length 82 [|LLDP] 17:44:35.710672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.710673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bc 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.710674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.710675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.710677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.710678 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.710679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.710680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.710703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.710705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.710709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.710711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.718888 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.718889 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.718891 LLDP, length 82 [|LLDP] 17:44:35.718932 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.718933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c2 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.718934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.718935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.718947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.718949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.718950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.718951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.718953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.718954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.718968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.718970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.729899 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.729901 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.729902 LLDP, length 82 [|LLDP] 17:44:35.729944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.729945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cb 23d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.729947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.729948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.729949 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.729950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.729951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.729966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.729968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.729969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.729981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.729984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.740910 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.740912 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.740913 LLDP, length 82 [|LLDP] 17:44:35.740956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.740957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.740959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.740960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.740961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.740962 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.740963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.740965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.740987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.740989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.740993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.740995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.749172 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.749173 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.749174 LLDP, length 82 [|LLDP] 17:44:35.749216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.749217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d9 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.749218 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.749220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.749221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.749234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.749235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.749237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.749238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.749239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.749252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.749254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.760178 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.760180 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.760181 LLDP, length 82 [|LLDP] 17:44:35.760223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.760224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e2 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.760226 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.760227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.760228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.760229 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.760230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.760232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.760255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.760257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.760260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.760262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.771188 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.771190 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.771191 LLDP, length 82 [|LLDP] 17:44:35.771227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.771228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ea a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.771229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.771230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.771231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.771233 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.771234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.771235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.771258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.771259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.771263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.771265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.779444 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.779446 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.779447 LLDP, length 82 [|LLDP] 17:44:35.779490 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.779491 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f0 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.779493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.779494 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.779495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.779496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.779511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.779513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.779514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.779515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.779528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.779530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.790455 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.790457 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.790458 LLDP, length 82 [|LLDP] 17:44:35.790500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.790501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f9 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.790503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.790504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.790505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.790506 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.790507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.790508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.790531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.790533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.790537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.790539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.798710 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.798712 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.798713 LLDP, length 82 [|LLDP] 17:44:35.798756 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.798757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ff a3ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.798758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.798759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.798772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.798774 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.798775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.798776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.798777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.798778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.798793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.798796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.809722 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.809724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.809725 LLDP, length 82 [|LLDP] 17:44:35.809769 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.809770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0808 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.809771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.809773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.809774 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.809775 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.809777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.809790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.809792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.809793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.809805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.809808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.820733 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.820735 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.820736 LLDP, length 82 [|LLDP] 17:44:35.820782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.820783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0810 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.820785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.820786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.820787 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.820788 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.820789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.820791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.820814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.820816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.820820 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.820822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.828997 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.828999 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.829000 LLDP, length 82 [|LLDP] 17:44:35.829038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.829039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0816 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.829041 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.829042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.829043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.829057 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.829059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.829060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.829062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.829063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.829076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.829079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.840002 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.840004 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.840005 LLDP, length 82 [|LLDP] 17:44:35.840047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.840048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.840050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.840051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.840052 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.840053 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.840054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.840055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.840078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.840080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.840084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.840086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.851007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.851009 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.851010 LLDP, length 82 [|LLDP] 17:44:35.851050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.851051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0827 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.851053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.851054 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.851055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.851056 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.851058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.851059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.851081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.851082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.851086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.851087 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.859270 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.859272 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.859273 LLDP, length 82 [|LLDP] 17:44:35.859325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.859326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.859327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.859329 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.859330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.859331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.859344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.859346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.859348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.859349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.859363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.859365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.870276 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.870277 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.870278 LLDP, length 82 [|LLDP] 17:44:35.870321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.870322 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0836 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.870324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.870325 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.870326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.870327 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.870329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.870330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.870354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.870356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.870360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.870362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.881288 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.881290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.881291 LLDP, length 82 [|LLDP] 17:44:35.881334 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.881334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083e a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.881336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.881337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.881350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.881351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.881353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.881354 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.881355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.881356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.881371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.881373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.889549 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.889551 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.889552 LLDP, length 82 [|LLDP] 17:44:35.889589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.889590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0844 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.889591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.889592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.889594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.889595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.889596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.889611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.889613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.889614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.889626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.889628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.900552 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.900554 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.900555 LLDP, length 82 [|LLDP] 17:44:35.900597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.900598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084d 5707 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.900600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.900601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.900602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.900603 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.900604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.900605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.900630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.900632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.900635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.900652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.908852 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.908854 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.908855 LLDP, length 82 [|LLDP] 17:44:35.908910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.908911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0853 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.908913 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.908914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.908915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.908939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.908942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.908944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.908945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.908947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.908962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.908964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.919831 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.919833 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.919840 LLDP, length 82 [|LLDP] 17:44:35.919890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.919891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.919892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.919893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.919895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.919896 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.919897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.919898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.919925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.919927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.919930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.919933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.930830 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.930831 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.930832 LLDP, length 82 [|LLDP] 17:44:35.930874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.930875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0864 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.930877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.930878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.930879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.930880 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.930881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.930883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.930906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.930908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.930911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.930913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.939084 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.939085 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.939086 LLDP, length 82 [|LLDP] 17:44:35.939125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.939125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.939127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.939129 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.939130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.939131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.939145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.939146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.939148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.939149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.939162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.939164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.950096 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.950098 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.950099 LLDP, length 82 [|LLDP] 17:44:35.950137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.950138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0873 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.950139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.950140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.950141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.950142 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.950143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.950145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.950167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.950169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.950172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.950174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.961104 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.961105 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.961106 LLDP, length 82 [|LLDP] 17:44:35.961144 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.961145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087b 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.961146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.961148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.961159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.961161 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.961162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.961163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.961164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.961165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.961180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.961182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.969360 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.969361 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.969362 LLDP, length 82 [|LLDP] 17:44:35.969396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.969397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0881 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.969399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.969400 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.969401 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.969402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.969404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.969417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.969418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.969420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.969431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.969433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.980371 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.980373 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.980374 LLDP, length 82 [|LLDP] 17:44:35.980411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.980411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088a 3d68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.980413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.980414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.980416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.980417 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.980418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.980419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.980442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.980444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.980447 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.980450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.988628 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.988630 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.988631 LLDP, length 82 [|LLDP] 17:44:35.988670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.988671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0890 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.988672 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.988673 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.988674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.988686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.988688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.988689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.988691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.988692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.988705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.988707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:35.999642 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:35.999643 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.999644 LLDP, length 82 [|LLDP] 17:44:35.999681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:35.999682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0898 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:35.999684 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:35.999685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:35.999686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:35.999688 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:35.999689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:35.999690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.999712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:35.999713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:35.999717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:35.999719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.010650 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.010651 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.010652 LLDP, length 82 [|LLDP] 17:44:36.010689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.010690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a1 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.010691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.010693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.010694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.010695 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.010696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.010698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.010720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.010722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.010725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.010727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.018904 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.018905 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.018906 LLDP, length 82 [|LLDP] 17:44:36.018941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.018942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a7 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.018944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.018945 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.018946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.018948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.018960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.018962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.018963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.018964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.018976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.018978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.029915 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.029917 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.029918 LLDP, length 82 [|LLDP] 17:44:36.029957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.029957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b0 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.029959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.029960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.029961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.029963 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.029964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.029965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.029988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.029990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.029993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.029995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.040925 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.040927 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.040928 LLDP, length 82 [|LLDP] 17:44:36.040964 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.040965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b8 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.040967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.040968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.040979 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.040981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.040982 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.040983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.040984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.040985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.041000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.041002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.049182 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.049184 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.049185 LLDP, length 82 [|LLDP] 17:44:36.049220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.049221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08be bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.049222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.049223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.049225 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.049226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.049227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.049240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.049242 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.049243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.049255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.049257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.060191 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.060193 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.060194 LLDP, length 82 [|LLDP] 17:44:36.060230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.060231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c7 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.060232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.060233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.060235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.060236 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.060237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.060238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.060260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.060262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.060265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.060267 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.071202 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.071203 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.071204 LLDP, length 82 [|LLDP] 17:44:36.071240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.071241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cf 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.071242 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.071243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.071244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.071257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.071259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.071260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.071261 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.071263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.071275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.071277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.079461 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.079462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.079463 LLDP, length 82 [|LLDP] 17:44:36.079500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.079501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d5 d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.079503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.079504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.079505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.079507 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.079508 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.079509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.079532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.079533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.079537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.079540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.090469 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.090471 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.090472 LLDP, length 82 [|LLDP] 17:44:36.090508 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.090509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08de 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.090511 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.090512 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.090513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.090515 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.090516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.090517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.090540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.090542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.090545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.090547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.098732 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.098733 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.098734 LLDP, length 82 [|LLDP] 17:44:36.098765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.098766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e4 8a3a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.098768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.098769 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.098771 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.098772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.098786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.098788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.098789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.098790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.098803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.098805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.109736 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.109737 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.109739 LLDP, length 82 [|LLDP] 17:44:36.109777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.109778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ec f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.109779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.109780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.109781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.109783 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.109784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.109785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.109807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.109809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.109812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.109814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.120746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.120748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.120749 LLDP, length 82 [|LLDP] 17:44:36.120783 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.120784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f5 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.120785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.120786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.120798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.120799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.120800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.120802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.120803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.120804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.120818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.120820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.129007 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.129008 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.129009 LLDP, length 82 [|LLDP] 17:44:36.129045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.129046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fb a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.129048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.129049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.129050 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.129051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.129052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.129066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.129068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.129069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.129081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.129083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.140014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.140015 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.140016 LLDP, length 82 [|LLDP] 17:44:36.140053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.140054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0904 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.140056 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.140057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.140058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.140060 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.140061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.140062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.140085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.140087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.140090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.140093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.151023 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.151024 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.151025 LLDP, length 82 [|LLDP] 17:44:36.151062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.151063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090c 70a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.151064 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.151065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.151066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.151078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.151080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.151082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.151083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.151084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.151097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.151098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.159289 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.159290 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.159291 LLDP, length 82 [|LLDP] 17:44:36.159336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.159337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0912 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.159338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.159340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.159341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.159342 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.159343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.159344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.159366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.159368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.159371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.159373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.170293 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.170294 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.170295 LLDP, length 82 [|LLDP] 17:44:36.170332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.170332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.170334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.170335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.170336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.170337 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.170339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.170340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.170363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.170365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.170368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.170371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.178547 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.178549 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.178550 LLDP, length 82 [|LLDP] 17:44:36.178585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.178586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0921 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.178588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.178589 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.178590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.178592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.178604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.178606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.178607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.178608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.178621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.178623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.189562 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.189563 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.189564 LLDP, length 82 [|LLDP] 17:44:36.189602 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.189603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0929 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.189605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.189606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.189607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.189608 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.189610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.189611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.189634 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.189635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.189638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.189641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.200570 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.200571 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.200572 LLDP, length 82 [|LLDP] 17:44:36.200609 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.200610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0932 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.200612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.200613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.200624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.200627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.200628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.200629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.200630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.200632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.200646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.200648 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.208826 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.208827 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.208828 LLDP, length 82 [|LLDP] 17:44:36.208865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.208866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0938 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.208868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.208869 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.208870 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.208871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.208872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.208885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.208887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.208888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.208900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.208902 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.219835 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.219836 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.219837 LLDP, length 82 [|LLDP] 17:44:36.219877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.219878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0940 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.219880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.219881 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.219882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.219883 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.219885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.219886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.219909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.219911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.219914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.219917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.230859 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.230861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.230862 LLDP, length 82 [|LLDP] 17:44:36.230911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.230912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0949 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.230913 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.230914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.230915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.230929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.230931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.230932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.230934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.230935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.230949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.230952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.239108 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.239109 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.239110 LLDP, length 82 [|LLDP] 17:44:36.239149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.239150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094f a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.239152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.239153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.239155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.239156 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.239157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.239158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.239180 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.239182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.239186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.239188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.250115 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.250117 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.250118 LLDP, length 82 [|LLDP] 17:44:36.250154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.250155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0958 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.250157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.250158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.250159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.250160 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.250161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.250162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.250184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.250186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.250189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.250191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.261125 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.261126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.261127 LLDP, length 82 [|LLDP] 17:44:36.261165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.261166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0960 709b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.261167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.261168 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.261170 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.261171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.261184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.261185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.261187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.261188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.261201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.261203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.269381 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.269383 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.269384 LLDP, length 82 [|LLDP] 17:44:36.269421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.269422 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0966 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.269423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.269424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.269426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.269427 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.269428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.269429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.269451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.269454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.269457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.269459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.280413 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.280421 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.280422 LLDP, length 82 [|LLDP] 17:44:36.280470 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.280472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.280473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.280478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.280492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.280495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.280496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.280497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.280498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.280500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.280516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.280518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.288658 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.288659 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.288660 LLDP, length 82 [|LLDP] 17:44:36.288706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.288707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0975 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.288708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.288709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.288710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.288711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.288713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.288728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.288730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.288732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.288744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.288747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.299667 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.299668 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.299669 LLDP, length 82 [|LLDP] 17:44:36.299714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.299715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.299717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.299718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.299719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.299720 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.299722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.299723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.299747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.299750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.299753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.299755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.310682 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.310684 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.310685 LLDP, length 82 [|LLDP] 17:44:36.310730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.310730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0986 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.310732 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.310733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.310734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.310748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.310750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.310752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.310753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.310754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.310768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.310770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.318935 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.318936 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.318937 LLDP, length 82 [|LLDP] 17:44:36.318974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.318975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098c 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.318977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.318978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.318980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.318981 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.318982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.318983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.319008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.319010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.319012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.319014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.329945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.329947 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.329948 LLDP, length 82 [|LLDP] 17:44:36.329991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.329992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0994 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.329994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.329995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.329996 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.329998 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.329999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.330000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.330037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.330039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.330042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.330044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.340954 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.340955 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.340956 LLDP, length 82 [|LLDP] 17:44:36.341000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.341002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099d 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.341003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.341005 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.341006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.341007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.341023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.341024 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.341025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.341027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.341040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.341043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.349222 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.349224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.349231 LLDP, length 82 [|LLDP] 17:44:36.349280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.349281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a3 a3d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.349282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.349284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.349285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.349286 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.349287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.349288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.349315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.349317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.349321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.349323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.360232 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.360235 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.360242 LLDP, length 82 [|LLDP] 17:44:36.360289 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.360290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ac 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.360291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.360293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.360310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.360312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.360313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.360314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.360315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.360317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.360333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.360336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.371238 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.371240 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.371241 LLDP, length 82 [|LLDP] 17:44:36.371295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.371296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b4 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.371297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.371298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.371299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.371301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.371312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.371329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.371332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.371333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.371346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.371348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.379493 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.379495 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.379502 LLDP, length 82 [|LLDP] 17:44:36.379548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.379548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ba bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.379550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.379551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.379553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.379554 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.379555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.379556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.379581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.379584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.379587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.379589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.390501 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.390503 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.390504 LLDP, length 82 [|LLDP] 17:44:36.390551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.390552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c3 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.390553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.390554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.390555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.390569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.390571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.390573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.390574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.390575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.390589 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.390592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.398757 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.398759 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.398760 LLDP, length 82 [|LLDP] 17:44:36.398808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.398809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c9 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.398811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.398812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.398813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.398814 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.398815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.398817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.398840 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.398842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.398846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.398848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.409770 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.409772 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.409779 LLDP, length 82 [|LLDP] 17:44:36.409820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.409821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d1 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.409823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.409824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.409825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.409826 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.409827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.409829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.409854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.409856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.409859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.409862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.420777 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.420778 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.420779 LLDP, length 82 [|LLDP] 17:44:36.420827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.420829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09da 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.420830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.420832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.420833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.420834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.420849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.420851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.420853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.420854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.420868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.420871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.429038 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.429040 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.429041 LLDP, length 82 [|LLDP] 17:44:36.429084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.429085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e0 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.429087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.429088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.429089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.429090 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.429091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.429093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.429121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.429123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.429126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.429128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.440056 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.440058 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.440059 LLDP, length 82 [|LLDP] 17:44:36.440101 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.440102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e8 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.440104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.440105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.440118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.440120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.440122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.440123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.440124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.440126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.440141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.440142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.451067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.451075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.451076 LLDP, length 82 [|LLDP] 17:44:36.451131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.451132 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f1 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.451134 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.451135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.451136 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.451137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.451138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.451159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.451162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.451163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.451176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.451179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.459336 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.459344 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.459346 LLDP, length 82 [|LLDP] 17:44:36.459392 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.459393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f7 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.459395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.459397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.459398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.459400 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.459401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.459402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.459429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.459431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.459435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.459437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.470322 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.470323 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.470324 LLDP, length 82 [|LLDP] 17:44:36.470370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.470371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a00 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.470372 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.470373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.470375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.470388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.470390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.470391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.470392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.470394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.470407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.470409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.478582 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.478584 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.478585 LLDP, length 82 [|LLDP] 17:44:36.478629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.478630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a06 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.478632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.478633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.478635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.478636 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.478637 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.478638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.478662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.478664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.478668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.478670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.489585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.489586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.489587 LLDP, length 82 [|LLDP] 17:44:36.489626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.489627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0e bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.489629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.489630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.489631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.489632 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.489633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.489635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.489657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.489659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.489663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.489665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.500593 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.500594 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.500596 LLDP, length 82 [|LLDP] 17:44:36.500639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.500640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a17 23ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.500641 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.500642 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.500644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.500645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.500658 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.500660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.500661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.500662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.500675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.500678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.508849 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.508851 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.508852 LLDP, length 82 [|LLDP] 17:44:36.508890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.508891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1d 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.508892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.508893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.508894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.508895 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.508897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.508898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.508920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.508922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.508925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.508927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.519860 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.519861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.519862 LLDP, length 82 [|LLDP] 17:44:36.519900 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.519900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a25 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.519902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.519903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.519914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.519916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.519917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.519918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.519920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.519921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.519934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.519937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.530868 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.530869 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.530871 LLDP, length 82 [|LLDP] 17:44:36.530907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.530908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.530909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.530911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.530912 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.530913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.530914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.530928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.530930 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.530931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.530944 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.530946 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.539125 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.539126 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.539127 LLDP, length 82 [|LLDP] 17:44:36.539164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.539165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a34 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.539167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.539168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.539169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.539171 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.539172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.539173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.539195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.539197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.539200 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.539203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.550142 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.550143 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.550144 LLDP, length 82 [|LLDP] 17:44:36.550184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.550184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3c f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.550186 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.550187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.550188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.550200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.550202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.550204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.550205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.550206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.550220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.550223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.561148 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.561149 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.561150 LLDP, length 82 [|LLDP] 17:44:36.561187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.561188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a45 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.561190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.561191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.561192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.561194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.561195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.561196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.561218 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.561220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.561224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.561227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.569403 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.569404 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.569405 LLDP, length 82 [|LLDP] 17:44:36.569442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.569443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4b a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.569445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.569446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.569447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.569448 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.569449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.569451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.569473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.569475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.569478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.569480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.580414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.580415 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.580416 LLDP, length 82 [|LLDP] 17:44:36.580452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.580453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a54 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.580454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.580456 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.580457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.580458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.580471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.580473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.580474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.580475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.580488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.580491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.588669 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.588670 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.588671 LLDP, length 82 [|LLDP] 17:44:36.588705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.588705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5a 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.588707 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.588708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.588709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.588710 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.588712 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.588713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.588734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.588736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.588739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.588741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.599680 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.599682 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.599683 LLDP, length 82 [|LLDP] 17:44:36.599720 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.599720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a62 bd6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.599722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.599723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.599735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.599736 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.599738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.599739 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.599740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.599742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.599756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.599758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.610698 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.610699 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.610700 LLDP, length 82 [|LLDP] 17:44:36.610732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.610733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.610734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.610735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.610736 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.610738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.610739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.610752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.610755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.610756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.610767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.610770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.618949 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.618950 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.618951 LLDP, length 82 [|LLDP] 17:44:36.618987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.618988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a71 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.618989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.618990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.618991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.618992 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.618993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.618994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.619016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.619019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.619022 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.619024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.629957 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.629958 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.629959 LLDP, length 82 [|LLDP] 17:44:36.629995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.629996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a79 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.629997 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.629999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.630000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.630012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.630014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.630015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.630017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.630018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.630031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.630033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.640969 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.640970 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.640972 LLDP, length 82 [|LLDP] 17:44:36.641007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.641008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a82 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.641010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.641011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.641012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.641014 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.641015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.641016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.641038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.641040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.641043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.641045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.649227 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.649228 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.649229 LLDP, length 82 [|LLDP] 17:44:36.649265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.649266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a88 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.649268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.649269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.649270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.649272 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.649273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.649274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.649296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.649298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.649301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.649304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.660236 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.660238 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.660239 LLDP, length 82 [|LLDP] 17:44:36.660277 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.660278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a90 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.660279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.660281 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.660282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.660283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.660296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.660298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.660299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.660300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.660313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.660315 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.668497 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.668499 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.668500 LLDP, length 82 [|LLDP] 17:44:36.668536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.668537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.668539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.668540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.668541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.668542 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.668543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.668544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.668566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.668568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.668571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.668573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.679505 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.679507 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.679508 LLDP, length 82 [|LLDP] 17:44:36.679538 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.679539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9f a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.679540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.679542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.679552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.679555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.679555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.679557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.679558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.679559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.679573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.679576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.690512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.690514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.690515 LLDP, length 82 [|LLDP] 17:44:36.690549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.690550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa8 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.690552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.690553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.690554 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.690555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.690556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.690569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.690571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.690573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.690584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.690586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.698780 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.698782 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.698783 LLDP, length 82 [|LLDP] 17:44:36.698828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.698829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aae 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.698831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.698832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.698833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.698834 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.698836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.698837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.698860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.698862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.698865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.698868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.709781 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.709783 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.709784 LLDP, length 82 [|LLDP] 17:44:36.709822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.709822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab6 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.709824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.709825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.709826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.709839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.709841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.709842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.709844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.709845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.709858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.709860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.720791 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.720793 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.720794 LLDP, length 82 [|LLDP] 17:44:36.720831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.720832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abf 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.720834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.720835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.720837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.720838 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.720839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.720840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.720862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.720864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.720868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.720870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.729058 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.729059 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.729060 LLDP, length 82 [|LLDP] 17:44:36.729093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.729094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac5 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.729095 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.729097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.729098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.729099 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.729101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.729102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.729124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.729126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.729129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.729131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.740061 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.740063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.740064 LLDP, length 82 [|LLDP] 17:44:36.740093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.740094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acd d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.740096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.740097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.740098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.740099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.740111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.740113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.740114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.740116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.740128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.740131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.751066 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.751068 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.751069 LLDP, length 82 [|LLDP] 17:44:36.751104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.751105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad6 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.751106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.751108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.751109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.751110 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.751112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.751113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.751135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.751137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.751140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.751142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.759334 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.759335 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.759336 LLDP, length 82 [|LLDP] 17:44:36.759373 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.759374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adc 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.759376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.759377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.759389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.759391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.759392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.759393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.759394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.759395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.759409 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.759412 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.770336 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.770357 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.770359 LLDP, length 82 [|LLDP] 17:44:36.770393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.770394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae4 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.770396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.770398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.770399 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.770401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.770402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.770417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.770420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.770421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.770434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.770436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.778632 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.778640 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.778641 LLDP, length 82 [|LLDP] 17:44:36.778696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.778697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb 3d67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.778699 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.778700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.778701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.778703 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.778704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.778705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.778741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.778744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.778748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.778750 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.789625 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.789626 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.789627 LLDP, length 82 [|LLDP] 17:44:36.789683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.789684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af3 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.789685 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.789687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.789688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.789704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.789706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.789708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.789709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.789710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.789725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.789727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.800621 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.800623 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.800624 LLDP, length 82 [|LLDP] 17:44:36.800658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.800659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afc 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.800660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.800662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.800663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.800664 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.800666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.800667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.800690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.800692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.800695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.800698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.808872 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.808874 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.808876 LLDP, length 82 [|LLDP] 17:44:36.808914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.808915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b02 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.808917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.808918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.808920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.808921 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.808922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.808923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.808946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.808948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.808952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.808954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.819885 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.819887 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.819888 LLDP, length 82 [|LLDP] 17:44:36.819929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.819930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.819931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.819933 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.819934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.819935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.819948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.819949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.819951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.819952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.819965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.819968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.830890 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.830892 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.830893 LLDP, length 82 [|LLDP] 17:44:36.830930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.830931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b13 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.830933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.830934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.830936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.830937 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.830938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.830939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.830962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.830964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.830967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.830970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.839147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.839148 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.839149 LLDP, length 82 [|LLDP] 17:44:36.839183 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.839184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b19 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.839186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.839187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.839198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.839200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.839202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.839203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.839204 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.839206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.839220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.839222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.850160 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.850162 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.850163 LLDP, length 82 [|LLDP] 17:44:36.850200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.850200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b21 d704 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.850202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.850203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.850204 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.850205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.850207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.850220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.850222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.850224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.850236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.850238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.861172 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.861174 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.861175 LLDP, length 82 [|LLDP] 17:44:36.861216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.861216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.861218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.861219 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.861220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.861222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.861223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.861224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.861248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.861250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.861253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.861255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.869428 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.869429 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.869431 LLDP, length 82 [|LLDP] 17:44:36.869469 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.869470 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b30 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.869472 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.869473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.869474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.869487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.869489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.869490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.869491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.869493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.869506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.869509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.880435 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.880436 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.880437 LLDP, length 82 [|LLDP] 17:44:36.880475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.880475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b38 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.880477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.880478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.880479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.880481 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.880482 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.880483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.880506 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.880508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.880511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.880513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.888692 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.888693 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.888694 LLDP, length 82 [|LLDP] 17:44:36.888729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.888730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.888732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.888733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.888734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.888736 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.888737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.888738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.888760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.888761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.888764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.888767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.899701 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.899702 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.899703 LLDP, length 82 [|LLDP] 17:44:36.899739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.899740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b47 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.899741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.899742 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.899744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.899745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.899758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.899760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.899761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.899762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.899774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.899776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.910715 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.910717 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.910718 LLDP, length 82 [|LLDP] 17:44:36.910756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.910757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b50 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.910758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.910759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.910760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.910762 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.910763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.910764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.910787 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.910789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.910792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.910795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.918977 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.918978 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.918979 LLDP, length 82 [|LLDP] 17:44:36.919017 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.919018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b56 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.919020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.919021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.919032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.919034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.919036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.919037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.919038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.919039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.919053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.919056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.929979 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.929980 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.929982 LLDP, length 82 [|LLDP] 17:44:36.930019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.930020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5e bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.930022 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.930023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.930024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.930025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.930026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.930040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.930042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.930043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.930055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.930057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.940992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.940994 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.940995 LLDP, length 82 [|LLDP] 17:44:36.941030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.941031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b67 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.941032 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.941034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.941035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.941036 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.941038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.941039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.941061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.941063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.941066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.941068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.949246 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.949247 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.949248 LLDP, length 82 [|LLDP] 17:44:36.949282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.949283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6d 709a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.949285 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.949286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.949287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.949299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.949301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.949302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.949304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.949305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.949318 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.949320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.960257 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.960258 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.960259 LLDP, length 82 [|LLDP] 17:44:36.960297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.960298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b75 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.960299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.960300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.960302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.960303 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.960304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.960305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.960328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.960330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.960332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.960335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.968512 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.968514 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.968515 LLDP, length 82 [|LLDP] 17:44:36.968552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.968553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c 23d5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.968554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.968555 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.968557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.968558 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.968559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.968560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.968582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.968584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.968588 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.968590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.979526 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.979527 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.979528 LLDP, length 82 [|LLDP] 17:44:36.979567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.979568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b84 8a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.979570 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.979571 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.979572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.979573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.979586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.979588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.979589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.979590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.979603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.979605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.990534 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.990536 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.990537 LLDP, length 82 [|LLDP] 17:44:36.990573 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.990574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8c f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.990576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.990577 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.990578 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.990580 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.990581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.990582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.990604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.990607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.990610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.990612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:36.998793 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:36.998794 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.998795 LLDP, length 82 [|LLDP] 17:44:36.998832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:36.998833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:36.998835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:36.998836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.998847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:36.998849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:36.998850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:36.998852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:36.998853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:36.998854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:36.998867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:36.998869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.009803 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.009805 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.009806 LLDP, length 82 [|LLDP] 17:44:37.009841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.009842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9b a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.009843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.009845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.009846 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.009847 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.009848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.009861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.009863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.009864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.009876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.009878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.020812 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.020814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.020815 LLDP, length 82 [|LLDP] 17:44:37.020852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.020853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba4 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.020854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.020855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.020857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.020858 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.020859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.020860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.020883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.020884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.020887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.020889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.029070 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.029072 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.029073 LLDP, length 82 [|LLDP] 17:44:37.029111 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.029112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0baa 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.029114 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.029115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.029116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.029128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.029130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.029132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.029133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.029134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.029147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.029149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.040080 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.040082 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.040083 LLDP, length 82 [|LLDP] 17:44:37.040119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.040120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb2 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.040121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.040122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.040123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.040124 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.040126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.040127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.040149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.040151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.040154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.040156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.051087 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.051088 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.051089 LLDP, length 82 [|LLDP] 17:44:37.051129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.051130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbb 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.051131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.051132 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.051134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.051135 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.051136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.051137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.051159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.051161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.051164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.051166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.059353 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.059355 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.059356 LLDP, length 82 [|LLDP] 17:44:37.059393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.059394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc1 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.059396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.059397 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.059398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.059400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.059413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.059416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.059417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.059419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.059431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.059433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.070358 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.070360 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.070360 LLDP, length 82 [|LLDP] 17:44:37.070397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.070398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc9 d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.070399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.070401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.070402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.070403 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.070404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.070405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.070428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.070430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.070433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.070436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.078613 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.078614 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.078615 LLDP, length 82 [|LLDP] 17:44:37.078652 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.078653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.078654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.078655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.078667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.078669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.078670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.078671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.078673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.078674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.078687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.078689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.089625 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.089627 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.089628 LLDP, length 82 [|LLDP] 17:44:37.089665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.089666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd8 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.089667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.089668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.089669 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.089671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.089671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.089685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.089687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.089688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.089700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.089703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.100633 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.100634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.100635 LLDP, length 82 [|LLDP] 17:44:37.100670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.100671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be0 f09d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.100673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.100674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.100675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.100676 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.100678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.100679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.100700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.100702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.100705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.100707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.108893 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.108895 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.108896 LLDP, length 82 [|LLDP] 17:44:37.108931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.108932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.108934 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.108935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.108936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.108948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.108950 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.108951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.108952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.108954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.108967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.108969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.119902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.119904 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.119905 LLDP, length 82 [|LLDP] 17:44:37.119940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.119941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bef a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.119943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.119944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.119945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.119947 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.119948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.119949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.119971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.119973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.119976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.119979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.130912 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.130914 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.130915 LLDP, length 82 [|LLDP] 17:44:37.130953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.130954 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf8 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.130955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.130957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.130958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.130959 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.130960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.130961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.130983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.130985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.130988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.130990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.139171 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.139172 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.139173 LLDP, length 82 [|LLDP] 17:44:37.139209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.139210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfe 5701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.139211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.139212 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.139213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.139214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.139227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.139228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.139230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.139231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.139243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.139245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.150192 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.150193 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.150200 LLDP, length 82 [|LLDP] 17:44:37.150243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.150243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c06 bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.150245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.150246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.150248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.150249 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.150250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.150251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.150275 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.150278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.150281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.150283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.161196 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.161197 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.161199 LLDP, length 82 [|LLDP] 17:44:37.161230 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.161231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0f 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.161232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.161233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.161245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.161247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.161248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.161250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.161251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.161252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.161266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.161269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.169447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.169449 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.169450 LLDP, length 82 [|LLDP] 17:44:37.169487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.169488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c15 709b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.169490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.169491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.169492 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.169493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.169494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.169509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.169511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.169512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.169524 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.169527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.180468 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.180470 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.180477 LLDP, length 82 [|LLDP] 17:44:37.180521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.180522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1d d700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.180523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.180525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.180526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.180527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.180529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.180530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.180556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.180558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.180562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.180564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.188723 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.188724 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.188725 LLDP, length 82 [|LLDP] 17:44:37.188770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.188771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.188773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.188774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.188776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.188789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.188791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.188792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.188794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.188795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.188809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.188811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.199725 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.199726 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.199727 LLDP, length 82 [|LLDP] 17:44:37.199766 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.199768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2c 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.199769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.199770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.199772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.199773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.199774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.199775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.199798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.199800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.199803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.199805 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.210735 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.210736 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.210737 LLDP, length 82 [|LLDP] 17:44:37.210772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.210773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c34 f09a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.210775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.210776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.210777 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.210778 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.210779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.210780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.210803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.210805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.210808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.210811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.218992 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.218994 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.218995 LLDP, length 82 [|LLDP] 17:44:37.219029 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.219030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b 3d6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.219031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.219032 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.219034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.219035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.219048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.219050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.219051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.219052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.219064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.219066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.230014 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.230017 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.230018 LLDP, length 82 [|LLDP] 17:44:37.230059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.230060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c43 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.230061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.230063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.230064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.230065 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.230066 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.230067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.230091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.230093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.230096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.230099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.241017 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.241019 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.241020 LLDP, length 82 [|LLDP] 17:44:37.241062 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.241063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.241065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.241066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.241078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.241080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.241082 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.241083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.241084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.241085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.241100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.241103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.249271 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.249273 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.249274 LLDP, length 82 [|LLDP] 17:44:37.249314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.249315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c52 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.249316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.249318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.249319 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.249320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.249321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.249335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.249337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.249338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.249349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.249351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.260280 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.260282 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.260283 LLDP, length 82 [|LLDP] 17:44:37.260317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.260318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5a bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.260319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.260320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.260321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.260323 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.260324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.260325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.260348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.260349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.260352 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.260354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.268536 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.268538 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.268539 LLDP, length 82 [|LLDP] 17:44:37.268572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.268573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.268575 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.268576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.268577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.268590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.268592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.268593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.268594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.268595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.268608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.268611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.279554 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.279555 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.279556 LLDP, length 82 [|LLDP] 17:44:37.279585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.279586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c69 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.279588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.279589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.279590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.279591 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.279592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.279593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.279616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.279618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.279621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.279623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.290556 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.290558 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.290559 LLDP, length 82 [|LLDP] 17:44:37.290595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.290596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c71 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.290598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.290599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.290600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.290601 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.290602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.290603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.290627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.290629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.290632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.290634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.298813 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.298814 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.298815 LLDP, length 82 [|LLDP] 17:44:37.298851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.298852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.298853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.298854 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.298856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.298857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.298870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.298872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.298873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.298874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.298887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.298889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.309823 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.309824 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.309826 LLDP, length 82 [|LLDP] 17:44:37.309859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.309860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c80 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.309862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.309863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.309865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.309866 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.309867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.309868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.309890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.309892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.309896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.309898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.320834 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.320836 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.320837 LLDP, length 82 [|LLDP] 17:44:37.320871 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.320872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c88 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.320874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.320875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.320900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.320902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.320903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.320905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.320906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.320907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.320921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.320923 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.329093 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.329094 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.329095 LLDP, length 82 [|LLDP] 17:44:37.329133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.329134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.329135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.329136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.329137 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.329139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.329140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.329154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.329156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.329157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.329170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.329172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.340105 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.340107 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.340107 LLDP, length 82 [|LLDP] 17:44:37.340143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.340144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c97 a3cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.340146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.340147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.340148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.340149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.340150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.340152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.340174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.340176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.340179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.340181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.351131 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.351133 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.351134 LLDP, length 82 [|LLDP] 17:44:37.351182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.351183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca0 0a35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.351185 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.351186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.351187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.351203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.351205 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.351206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.351208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.351209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.351224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.351227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.359397 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.359398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.359399 LLDP, length 82 [|LLDP] 17:44:37.359444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.359445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca6 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.359447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.359448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.359449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.359450 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.359451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.359453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.359478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.359494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.359497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.359499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.370393 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.370395 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.370402 LLDP, length 82 [|LLDP] 17:44:37.370447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.370448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cae bd67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.370450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.370451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.370452 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.370453 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.370454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.370456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.370481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.370483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.370487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.370489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.378647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.378649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.378656 LLDP, length 82 [|LLDP] 17:44:37.378703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.378704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 0a34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.378706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.378707 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.378708 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.378710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.378724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.378726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.378728 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.378729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.378742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.378744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.389660 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.389663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.389664 LLDP, length 82 [|LLDP] 17:44:37.389719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.389720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbd 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.389722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.389723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.389724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.389726 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.389727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.389728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.389754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.389756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.389760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.389762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.400671 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.400673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.400674 LLDP, length 82 [|LLDP] 17:44:37.400728 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.400729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc5 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.400731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.400732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.400747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.400749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.400750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.400751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.400752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.400753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.400768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.400770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.408928 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.408929 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.408930 LLDP, length 82 [|LLDP] 17:44:37.408980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.408981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.408983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.408984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.408985 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.408986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.408988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.409005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.409007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.409008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.409021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.409023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.419939 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.419941 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.419942 LLDP, length 82 [|LLDP] 17:44:37.419994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.419995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd4 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.419997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.419998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.419999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.420000 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.420002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.420003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.420029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.420031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.420034 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.420036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.430946 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.430948 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.430949 LLDP, length 82 [|LLDP] 17:44:37.430999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.431000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdc f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.431002 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.431003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.431004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.431019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.431021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.431023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.431024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.431025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.431039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.431041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.439200 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.439201 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.439202 LLDP, length 82 [|LLDP] 17:44:37.439246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.439247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.439249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.439250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.439251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.439252 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.439253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.439255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.439279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.439281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.439284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.439286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.450210 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.450212 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.450213 LLDP, length 82 [|LLDP] 17:44:37.450257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.450258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ceb a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.450259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.450261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.450262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.450263 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.450264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.450265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.450288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.450290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.450293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.450296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.460254 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.460256 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.460257 LLDP, length 82 [|LLDP] 17:44:37.460294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.460296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf1 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.460297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.460298 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.460299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.460301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.460314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.460316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.460318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.460319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.460332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.460334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.469496 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.469498 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.469499 LLDP, length 82 [|LLDP] 17:44:37.469546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.469547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfa 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.469549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.469551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.469552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.469553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.469554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.469555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.469580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.469583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.469586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.469588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.480494 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.480496 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.480497 LLDP, length 82 [|LLDP] 17:44:37.480543 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.480544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d02 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.480546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.480547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.480559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.480561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.480563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.480564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.480565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.480566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.480581 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.480582 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.488747 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.488749 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.488750 LLDP, length 82 [|LLDP] 17:44:37.488802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.488803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.488805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.488806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.488807 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.488808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.488809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.488826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.488828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.488830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.488842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.488844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.499763 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.499764 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.499765 LLDP, length 82 [|LLDP] 17:44:37.499811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.499812 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d11 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.499813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.499815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.499816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.499817 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.499818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.499819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.499843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.499845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.499849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.499851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.510761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.510762 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.510763 LLDP, length 82 [|LLDP] 17:44:37.510798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.510799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d19 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.510801 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.510802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.510803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.510817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.510818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.510819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.510821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.510822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.510836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.510838 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.520899 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.520901 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.520902 LLDP, length 82 [|LLDP] 17:44:37.520936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.520937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.520939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.520940 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.520941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.520942 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.520944 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.520945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.520968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.520969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.520973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.520975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.530033 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.530035 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.530036 LLDP, length 82 [|LLDP] 17:44:37.530071 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.530072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d28 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.530073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.530075 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.530076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.530077 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.530078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.530079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.530102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.530104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.530107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.530109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.541039 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.541041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.541042 LLDP, length 82 [|LLDP] 17:44:37.541084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.541085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d30 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.541086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.541087 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.541089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.541090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.541104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.541106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.541107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.541108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.541121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.541123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.549295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.549297 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.549298 LLDP, length 82 [|LLDP] 17:44:37.549338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.549339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.549341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.549341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.549343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.549344 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.549345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.549346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.549368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.549370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.549373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.549375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.560306 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.560307 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.560308 LLDP, length 82 [|LLDP] 17:44:37.560349 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.560350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3f a3f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.560351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.560353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.560365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.560367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.560368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.560370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.560371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.560372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.560386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.560388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.568561 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.568563 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.568564 LLDP, length 82 [|LLDP] 17:44:37.568603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.568604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d45 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.568606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.568607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.568608 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.568609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.568611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.568624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.568626 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.568627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.568639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.568641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.580628 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.580630 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.580631 LLDP, length 82 [|LLDP] 17:44:37.580665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.580666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4e 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.580667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.580669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.580670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.580671 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.580672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.580674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.580697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.580699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.580702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.580704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.590585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.590586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.590587 LLDP, length 82 [|LLDP] 17:44:37.590620 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.590622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d56 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.590623 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.590624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.590625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.590638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.590639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.590640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.590642 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.590643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.590656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.590658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.598855 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.598857 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.598858 LLDP, length 82 [|LLDP] 17:44:37.598894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.598895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.598897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.598898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.598899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.598900 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.598902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.598903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.598927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.598929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.598933 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.598934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.609851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.609853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.609854 LLDP, length 82 [|LLDP] 17:44:37.609896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.609897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d65 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.609899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.609900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.609901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.609902 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.609904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.609905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.609929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.609931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.609934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.609936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.620859 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.620861 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.620862 LLDP, length 82 [|LLDP] 17:44:37.620905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.620906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6d d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.620907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.620908 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.620910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.620911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.620925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.620927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.620928 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.620929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.620941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.620943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.629119 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.629120 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.629121 LLDP, length 82 [|LLDP] 17:44:37.629162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.629177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.629180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.629181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.629182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.629183 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.629185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.629187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.629210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.629212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.629216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.629218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.640164 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.640167 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.640168 LLDP, length 82 [|LLDP] 17:44:37.640231 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.640231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7c 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.640233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.640235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.640256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.640259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.640260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.640262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.640263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.640265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.640283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.640285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.651166 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.651168 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.651170 LLDP, length 82 [|LLDP] 17:44:37.651217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.651218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d84 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.651219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.651220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.651222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.651223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.651224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.651242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.651244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.651245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.651257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.651260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.659421 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.659430 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.659431 LLDP, length 82 [|LLDP] 17:44:37.659485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.659486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.659488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.659489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.659490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.659491 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.659493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.659494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.659521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.659524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.659527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.659529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.670414 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.670416 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.670417 LLDP, length 82 [|LLDP] 17:44:37.670472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.670472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d93 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.670474 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.670475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.670476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.670491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.670493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.670495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.670496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.670497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.670510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.670512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.678671 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.678673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.678674 LLDP, length 82 [|LLDP] 17:44:37.678721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.678722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d99 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.678723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.678724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.678725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.678726 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.678728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.678729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.678753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.678755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.678758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.678760 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.689683 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.689684 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.689686 LLDP, length 82 [|LLDP] 17:44:37.689726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.689727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da2 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.689729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.689730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.689731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.689733 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.689734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.689735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.689759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.689762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.689765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.689767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.700698 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.700700 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.700701 LLDP, length 82 [|LLDP] 17:44:37.700740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.700741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daa bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.700743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.700744 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.700745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.700746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.700762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.700764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.700765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.700766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.700779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.700782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.708957 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.708959 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.708960 LLDP, length 82 [|LLDP] 17:44:37.709001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.709002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.709003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.709004 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.709005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.709007 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.709008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.709009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.709034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.709036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.709039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.709042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.719954 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.719955 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.719956 LLDP, length 82 [|LLDP] 17:44:37.720001 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.720001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db9 70ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.720003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.720004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.720017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.720019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.720020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.720021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.720022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.720024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.720039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.720041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.730964 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.730965 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.730966 LLDP, length 82 [|LLDP] 17:44:37.731010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.731011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc1 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.731012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.731014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.731015 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.731016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.731018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.731034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.731035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.731036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.731048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.731050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.739218 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.739220 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.739221 LLDP, length 82 [|LLDP] 17:44:37.739262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.739263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.739265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.739266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.739267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.739268 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.739269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.739270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.739294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.739296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.739299 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.739301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.750231 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.750232 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.750233 LLDP, length 82 [|LLDP] 17:44:37.750275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.750276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd0 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.750277 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.750278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.750280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.750293 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.750295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.750296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.750297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.750298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.750312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.750314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.758487 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.758488 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.758490 LLDP, length 82 [|LLDP] 17:44:37.758530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.758531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd6 d729 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.758532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.758534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.758535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.758536 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.758537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.758538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.758562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.758565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.758568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.758570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.769498 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.769500 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.769501 LLDP, length 82 [|LLDP] 17:44:37.769536 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.769536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddf 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.769538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.769539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.769540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.769541 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.769543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.769544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.769567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.769569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.769572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.769574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.780508 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.780509 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.780510 LLDP, length 82 [|LLDP] 17:44:37.780556 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.780556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de7 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.780558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.780559 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.780560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.780561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.780575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.780577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.780578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.780580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.780593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.780595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.788763 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.788765 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.788766 LLDP, length 82 [|LLDP] 17:44:37.788806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.788807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ded f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.788809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.788810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.788812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.788813 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.788814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.788816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.788838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.788840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.788843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.788845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.799783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.799785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.799786 LLDP, length 82 [|LLDP] 17:44:37.799828 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.799829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df6 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.799830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.799832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.799844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.799846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.799847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.799848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.799850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.799851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.799865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.799867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.810783 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.810785 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.810786 LLDP, length 82 [|LLDP] 17:44:37.810826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.810827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfe bd8f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.810828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.810829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.810830 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.810832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.810833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.810848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.810850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.810851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.810863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.810865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.819038 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.819040 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.819041 LLDP, length 82 [|LLDP] 17:44:37.819084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.819084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 0a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.819086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.819088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.819088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.819089 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.819091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.819092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.819115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.819117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.819120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.819122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.830056 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.830057 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.830059 LLDP, length 82 [|LLDP] 17:44:37.830094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.830095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0d 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.830096 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.830098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.830099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.830112 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.830114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.830115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.830116 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.830117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.830130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.830133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.841062 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.841063 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.841065 LLDP, length 82 [|LLDP] 17:44:37.841105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.841106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e15 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.841108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.841109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.841110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.841111 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.841112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.841113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.841136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.841138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.841142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.841144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.849316 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.849318 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.849319 LLDP, length 82 [|LLDP] 17:44:37.849361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.849362 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.849364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.849365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.849366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.849368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.849369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.849370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.849392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.849394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.849398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.849400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.860326 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.860328 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.860329 LLDP, length 82 [|LLDP] 17:44:37.860371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.860372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e24 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.860374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.860375 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.860376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.860377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.860390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.860393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.860394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.860395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.860408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.860410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.868585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.868588 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.868588 LLDP, length 82 [|LLDP] 17:44:37.868632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.868632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.868634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.868635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.868637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.868638 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.868639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.868641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.868664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.868666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.868669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.868671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.879599 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.879600 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.879601 LLDP, length 82 [|LLDP] 17:44:37.879643 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.879644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e33 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.879645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.879647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.879660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.879662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.879663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.879664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.879665 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.879667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.879681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.879684 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.890610 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.890611 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.890612 LLDP, length 82 [|LLDP] 17:44:37.890649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.890650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3b a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.890652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.890653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.890655 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.890656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.890657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.890673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.890675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.890676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.890688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.890690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.898870 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.898872 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.898872 LLDP, length 82 [|LLDP] 17:44:37.898921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.898922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e41 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.898923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.898924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.898925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.898927 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.898928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.898929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.898954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.898956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.898960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.898962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.909885 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.909887 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.909888 LLDP, length 82 [|LLDP] 17:44:37.909927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.909928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4a 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.909929 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.909931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.909932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.909947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.909949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.909950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.909951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.909952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.909965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.909967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.920895 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.920897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.920898 LLDP, length 82 [|LLDP] 17:44:37.920933 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.920934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e52 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.920936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.920937 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.920938 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.920939 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.920941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.920942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.920965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.920967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.920970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.920973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.929143 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.929144 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.929145 LLDP, length 82 [|LLDP] 17:44:37.929188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.929188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 0a5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.929190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.929191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.929192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.929194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.929195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.929197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.929220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.929221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.929225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.929227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.940150 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.940152 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.940153 LLDP, length 82 [|LLDP] 17:44:37.940195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.940196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e61 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.940198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.940199 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.940200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.940201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.940215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.940217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.940219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.940220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.940232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.940235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.948409 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.948411 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.948412 LLDP, length 82 [|LLDP] 17:44:37.948453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.948454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e67 bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.948456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.948457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.948458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.948459 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.948460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.948462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.948484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.948486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.948489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.948491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.959418 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.959420 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.959421 LLDP, length 82 [|LLDP] 17:44:37.959463 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.959464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e70 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.959465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.959466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.959478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.959480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.959481 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.959482 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.959484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.959485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.959499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.959501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.970430 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.970431 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.970432 LLDP, length 82 [|LLDP] 17:44:37.970474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.970475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e78 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.970476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.970478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.970479 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.970480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.970482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.970496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.970498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.970500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.970511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.970513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.978683 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.978685 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.978686 LLDP, length 82 [|LLDP] 17:44:37.978726 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.978727 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.978728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.978729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.978731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.978732 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.978733 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.978734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.978757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.978759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.978763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.978764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:37.989696 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:37.989697 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.989698 LLDP, length 82 [|LLDP] 17:44:37.989741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:37.989741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e87 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:37.989743 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:37.989744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:37.989745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.989760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:37.989762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:37.989763 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:37.989764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:37.989765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:37.989778 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:37.989780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.000706 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.000707 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.000708 LLDP, length 82 [|LLDP] 17:44:38.000751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.000752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8f a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.000754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.000755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.000756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.000757 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.000758 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.000760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.000783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.000785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.000789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.000791 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.008975 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.008976 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.008977 LLDP, length 82 [|LLDP] 17:44:38.009012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.009013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e95 f0bf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.009014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.009015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.009016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.009018 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.009019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.009020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.009043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.009044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.009048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.009050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.019983 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.019985 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.019986 LLDP, length 82 [|LLDP] 17:44:38.020020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.020021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9e 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.020023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.020024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.020025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.020026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.020041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.020043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.020044 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.020045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.020058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.020060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.030985 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.030987 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.030988 LLDP, length 82 [|LLDP] 17:44:38.031028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.031029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea6 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.031031 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.031032 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.031033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.031034 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.031035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.031037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.031060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.031062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.031065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.031067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.039247 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.039249 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.039250 LLDP, length 82 [|LLDP] 17:44:38.039284 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.039285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.039287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.039288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.039300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.039309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.039310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.039312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.039313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.039314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.039330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.039332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.050251 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.050253 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.050254 LLDP, length 82 [|LLDP] 17:44:38.050295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.050296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb5 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.050297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.050298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.050300 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.050301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.050302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.050316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.050318 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.050319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.050331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.050333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.058513 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.058515 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.058516 LLDP, length 82 [|LLDP] 17:44:38.058551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.058551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebb bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.058553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.058554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.058555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.058556 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.058557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.058558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.058581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.058583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.058587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.058589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.069525 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.069527 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.069528 LLDP, length 82 [|LLDP] 17:44:38.069564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.069565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec4 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.069566 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.069568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.069569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.069583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.069585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.069586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.069587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.069588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.069602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.069604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.080529 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.080531 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.080532 LLDP, length 82 [|LLDP] 17:44:38.080568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.080569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecc 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.080571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.080572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.080573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.080574 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.080575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.080577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.080600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.080602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.080605 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.080608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.088786 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.088787 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.088789 LLDP, length 82 [|LLDP] 17:44:38.088828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.088829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed2 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.088830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.088832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.088833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.088834 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.088835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.088836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.088860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.088862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.088865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.088867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.099795 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.099797 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.099798 LLDP, length 82 [|LLDP] 17:44:38.099838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.099839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edb 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.099841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.099842 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.099843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.099844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.099857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.099859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.099860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.099862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.099874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.099876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.110804 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.110805 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.110806 LLDP, length 82 [|LLDP] 17:44:38.110847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.110847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee3 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.110849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.110850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.110851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.110852 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.110854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.110855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.110878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.110879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.110883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.110885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.119067 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.119069 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.119070 LLDP, length 82 [|LLDP] 17:44:38.119111 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.119112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee9 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.119113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.119115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.119127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.119129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.119131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.119132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.119133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.119135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.119149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.119151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.130071 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.130073 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.130074 LLDP, length 82 [|LLDP] 17:44:38.130116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.130117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef2 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.130118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.130119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.130121 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.130122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.130123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.130138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.130140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.130141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.130153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.130155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.141083 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.141084 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.141085 LLDP, length 82 [|LLDP] 17:44:38.141126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.141127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efa bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.141129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.141130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.141131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.141133 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.141134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.141135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.141157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.141159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.141163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.141165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.149338 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.149340 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.149341 LLDP, length 82 [|LLDP] 17:44:38.149381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.149382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.149384 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.149385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.149386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.149399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.149401 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.149403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.149404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.149405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.149417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.149419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.160347 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.160349 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.160350 LLDP, length 82 [|LLDP] 17:44:38.160389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.160390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f09 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.160392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.160393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.160394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.160395 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.160396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.160398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.160420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.160422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.160425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.160428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.168605 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.168606 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.168608 LLDP, length 82 [|LLDP] 17:44:38.168648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.168649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0f bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.168651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.168652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.168653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.168654 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.168655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.168657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.168680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.168681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.168685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.168686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.179617 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.179618 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.179620 LLDP, length 82 [|LLDP] 17:44:38.179660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.179661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f18 23f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.179662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.179663 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.179664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.179665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.179679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.179681 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.179682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.179683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.179696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.179698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.190626 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.190627 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.190628 LLDP, length 82 [|LLDP] 17:44:38.190671 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.190672 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f20 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.190673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.190674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.190676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.190677 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.190678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.190679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.190702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.190704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.190707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.190709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.198887 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.198888 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.198889 LLDP, length 82 [|LLDP] 17:44:38.198931 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.198932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f26 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.198933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.198935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.198946 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.198948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.198949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.198950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.198952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.198953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.198966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.198969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.209896 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.209897 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.209898 LLDP, length 82 [|LLDP] 17:44:38.209941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.209942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2f 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.209944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.209945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.209946 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.209947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.209948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.209963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.209964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.209966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.209977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.209979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.220902 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.220905 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.220906 LLDP, length 82 [|LLDP] 17:44:38.220949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.220950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f37 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.220951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.220953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.220954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.220955 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.220956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.220957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.220980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.220983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.220986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.220988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.229174 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.229176 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.229183 LLDP, length 82 [|LLDP] 17:44:38.229231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.229232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3d f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.229233 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.229235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.229236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.229251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.229253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.229254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.229255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.229257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.229270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.229273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.240173 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.240174 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.240175 LLDP, length 82 [|LLDP] 17:44:38.240217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.240217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f46 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.240219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.240220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.240221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.240222 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.240223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.240225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.240249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.240250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.240254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.240256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.248429 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.248431 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.248432 LLDP, length 82 [|LLDP] 17:44:38.248473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.248474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4c a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.248475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.248476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.248478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.248479 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.248480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.248481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.248503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.248505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.248508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.248510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.259442 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.259443 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.259444 LLDP, length 82 [|LLDP] 17:44:38.259486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.259487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f55 0a58 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.259488 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.259489 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.259490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.259492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.259505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.259507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.259508 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.259509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.259522 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.259524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.270447 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.270448 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.270449 LLDP, length 82 [|LLDP] 17:44:38.270489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.270490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5d 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.270491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.270492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.270494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.270495 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.270496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.270498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.270520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.270522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.270525 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.270527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.278704 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.278706 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.278707 LLDP, length 82 [|LLDP] 17:44:38.278748 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.278749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f63 bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.278750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.278752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.278763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.278765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.278766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.278767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.278769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.278770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.278785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.278787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.289716 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.289718 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.289719 LLDP, length 82 [|LLDP] 17:44:38.289760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.289761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6c 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.289762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.289763 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.289764 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.289765 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.289767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.289781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.289784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.289785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.289796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.289798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.300725 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.300727 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.300728 LLDP, length 82 [|LLDP] 17:44:38.300770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.300770 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f74 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.300772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.300773 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.300774 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.300775 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.300777 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.300778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.300800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.300802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.300805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.300807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.308984 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.308986 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.308987 LLDP, length 82 [|LLDP] 17:44:38.309027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.309028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.309030 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.309031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.309032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.309046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.309048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.309049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.309050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.309051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.309064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.309066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.319996 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.319997 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.319999 LLDP, length 82 [|LLDP] 17:44:38.320040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.320041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f83 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.320042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.320043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.320044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.320045 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.320047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.320048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.320084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.320086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.320090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.320092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.331031 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.331034 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.331035 LLDP, length 82 [|LLDP] 17:44:38.331095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.331096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8b a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.331098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.331099 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.331100 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.331101 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.331103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.331104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.331135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.331137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.331141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.331143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.339269 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.339277 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.339278 LLDP, length 82 [|LLDP] 17:44:38.339329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.339330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f91 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.339332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.339333 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.339334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.339335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.339350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.339352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.339354 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.339355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.339373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.339376 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.350284 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.350285 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.350293 LLDP, length 82 [|LLDP] 17:44:38.350336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.350337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9a 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.350338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.350339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.350340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.350346 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.350348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.350349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.350374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.350377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.350380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.350382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.358535 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.358536 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.358538 LLDP, length 82 [|LLDP] 17:44:38.358589 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.358589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa0 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.358591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.358592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.358605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.358607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.358608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.358609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.358610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.358611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.358627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.358629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.369548 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.369550 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.369551 LLDP, length 82 [|LLDP] 17:44:38.369597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.369598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa9 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.369600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.369601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.369602 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.369603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.369605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.369620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.369622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.369623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.369636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.369638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.380562 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.380564 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.380565 LLDP, length 82 [|LLDP] 17:44:38.380610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.380611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb1 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.380613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.380614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.380615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.380616 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.380617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.380618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.380645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.380647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.380650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.380652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.388814 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.388816 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.388817 LLDP, length 82 [|LLDP] 17:44:38.388868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.388869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb7 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.388870 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.388871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.388873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.388888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.388891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.388892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.388893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.388894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.388908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.388910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.399832 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.399834 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.399835 LLDP, length 82 [|LLDP] 17:44:38.399884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.399885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc0 23ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.399887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.399888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.399889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.399890 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.399892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.399893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.399918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.399920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.399924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.399926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.410833 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.410835 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.410836 LLDP, length 82 [|LLDP] 17:44:38.410876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.410877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc8 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.410879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.410880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.410881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.410882 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.410883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.410884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.410908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.410910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.410913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.410915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.419089 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.419091 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.419092 LLDP, length 82 [|LLDP] 17:44:38.419145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.419146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fce d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.419148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.419149 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.419150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.419151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.419167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.419169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.419171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.419172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.419185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.419187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.430112 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.430114 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.430115 LLDP, length 82 [|LLDP] 17:44:38.430165 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.430166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd7 3d8e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.430167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.430168 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.430170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.430171 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.430172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.430173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.430200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.430201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.430205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.430208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.441117 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.441119 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.441120 LLDP, length 82 [|LLDP] 17:44:38.441160 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.441161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdf a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.441162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.441164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.441177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.441179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.441180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.441181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.441183 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.441184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.441198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.441201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.449375 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.449376 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.449377 LLDP, length 82 [|LLDP] 17:44:38.449415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.449416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe5 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.449418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.449419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.449420 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.449421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.449423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.449438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.449440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.449441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.449453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.449455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.460373 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.460374 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.460375 LLDP, length 82 [|LLDP] 17:44:38.460419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.460419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fee 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.460421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.460429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.460431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.460432 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.460433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.460434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.460459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.460461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.460464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.460466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.468633 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.468634 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.468635 LLDP, length 82 [|LLDP] 17:44:38.468677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.468678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff4 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.468679 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.468680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.468682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.468695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.468697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.468698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.468700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.468701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.468718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.468720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.479639 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.479649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.479651 LLDP, length 82 [|LLDP] 17:44:38.479688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.479688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffd 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.479690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.479691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.479693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.479694 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.479695 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.479696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.479720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.479722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.479725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.479728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.490670 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.490673 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.490674 LLDP, length 82 [|LLDP] 17:44:38.490725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.490726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1005 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.490728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.490729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.490745 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.490747 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.490749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.490750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.490786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.490789 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.490793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.490795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.498945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.498953 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.498954 LLDP, length 82 [|LLDP] 17:44:38.499012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.499014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100b bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.499015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.499016 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.499017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.499018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.499046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.499049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.499050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.499051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.499067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.499069 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.509935 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.509937 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.509944 LLDP, length 82 [|LLDP] 17:44:38.509989 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.509990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1014 23f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.509992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.509993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.509995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.509996 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.509997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.509998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.510027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.510029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.510033 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.510035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.520929 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.520931 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.520932 LLDP, length 82 [|LLDP] 17:44:38.520977 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.520978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101c 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.520980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.520981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.520993 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.520995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.520996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.520998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.520999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.521000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.521015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.521017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.529206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.529214 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.529215 LLDP, length 82 [|LLDP] 17:44:38.529262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.529263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1022 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.529264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.529266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.529267 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.529268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.529270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.529285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.529288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.529289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.529303 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.529306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.540198 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.540199 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.540200 LLDP, length 82 [|LLDP] 17:44:38.540246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.540246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102b 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.540248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.540249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.540250 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.540252 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.540253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.540254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.540277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.540280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.540283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.540286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.548453 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.548454 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.548455 LLDP, length 82 [|LLDP] 17:44:38.548503 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.548504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1031 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.548505 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.548507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.548508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.548521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.548523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.548524 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.548526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.548527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.548541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.548543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.559462 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.559464 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.559465 LLDP, length 82 [|LLDP] 17:44:38.559509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.559510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1039 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.559512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.559513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.559514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.559515 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.559516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.559518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.559542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.559544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.559547 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.559550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.570475 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.570477 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.570477 LLDP, length 82 [|LLDP] 17:44:38.570521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.570522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1042 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.570523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.570525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.570526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.570527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.570529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.570530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.570553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.570555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.570558 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.570561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.578748 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.578750 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.578757 LLDP, length 82 [|LLDP] 17:44:38.578807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.578808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1048 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.578809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.578811 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.578812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.578813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.578829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.578831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.578832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.578834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.578847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.578850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.589746 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.589748 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.589749 LLDP, length 82 [|LLDP] 17:44:38.589805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.589806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1051 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.589807 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.589809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.589810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.589811 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.589812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.589814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.589842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.589844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.589847 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.589850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.600761 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.600763 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.600770 LLDP, length 82 [|LLDP] 17:44:38.600823 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.600824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1059 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.600825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.600826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.600842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.600844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.600845 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.600847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.600848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.600849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.600865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.600867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.609016 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.609018 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.609019 LLDP, length 82 [|LLDP] 17:44:38.609067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.609068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105f bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.609069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.609071 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.609073 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.609074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.609075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.609097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.609099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.609100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.609114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.609117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.620033 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.620036 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.620037 LLDP, length 82 [|LLDP] 17:44:38.620078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.620078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1068 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.620080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.620081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.620082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.620083 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.620085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.620086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.620114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.620117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.620121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.620122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.631039 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.631041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.631042 LLDP, length 82 [|LLDP] 17:44:38.631085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.631086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1070 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.631088 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.631089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.631094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.631109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.631111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.631112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.631113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.631115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.631129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.631132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.639295 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.639297 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.639298 LLDP, length 82 [|LLDP] 17:44:38.639345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.639346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1076 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.639348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.639349 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.639350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.639351 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.639352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.639353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.639379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.639382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.639385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.639387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.650299 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.650300 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.650301 LLDP, length 82 [|LLDP] 17:44:38.650346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.650347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107f 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.650349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.650350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.650351 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.650352 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.650354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.650355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.650387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.650389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.650392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.650394 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.658552 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.658554 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.658555 LLDP, length 82 [|LLDP] 17:44:38.658594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.658595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1085 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.658596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.658598 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.658599 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.658600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.658618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.658620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.658622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.658623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.658636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.658638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.669583 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.669586 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.669587 LLDP, length 82 [|LLDP] 17:44:38.669643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.669644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108d f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.669645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.669647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.669648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.669649 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.669650 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.669652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.669679 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.669682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.669686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.669689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.680585 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.680599 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.680600 LLDP, length 82 [|LLDP] 17:44:38.680652 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.680653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1096 5728 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.680655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.680656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.680672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.680674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.680675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.680677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.680678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.680679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.680695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.680697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.688827 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.688829 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.688830 LLDP, length 82 [|LLDP] 17:44:38.688870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.688871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109c a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.688873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.688874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.688875 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.688877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.688878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.688893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.688895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.688896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.688908 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.688910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.699839 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.699841 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.699842 LLDP, length 82 [|LLDP] 17:44:38.699886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.699887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a5 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.699889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.699890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.699891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.699892 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.699893 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.699895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.699919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.699920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.699924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.699926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.710851 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.710853 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.710854 LLDP, length 82 [|LLDP] 17:44:38.710891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.710893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ad 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.710894 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.710896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.710897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.710910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.710912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.710913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.710914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.710915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.710929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.710931 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.719102 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.719103 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.719104 LLDP, length 82 [|LLDP] 17:44:38.719147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.719148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b3 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.719150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.719151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.719152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.719153 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.719154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.719155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.719179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.719181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.719184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.719186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.730134 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.730136 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.730137 LLDP, length 82 [|LLDP] 17:44:38.730195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.730196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bc 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.730198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.730199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.730200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.730202 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.730203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.730204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.730230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.730232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.730235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.730238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.738374 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.738376 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.738377 LLDP, length 82 [|LLDP] 17:44:38.738426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.738427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c2 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.738428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.738429 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.738431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.738432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.738447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.738449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.738450 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.738452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.738465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.738468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.749396 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.749398 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.749405 LLDP, length 82 [|LLDP] 17:44:38.749455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.749457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ca d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.749458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.749460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.749461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.749462 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.749464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.749465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.749493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.749496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.749500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.749502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.760412 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.760414 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.760415 LLDP, length 82 [|LLDP] 17:44:38.760462 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.760463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d3 3d89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.760464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.760466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.760479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.760482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.760483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.760484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.760485 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.760486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.760502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.760504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.768660 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.768663 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.768670 LLDP, length 82 [|LLDP] 17:44:38.768718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.768719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d9 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.768721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.768723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.768724 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.768725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.768727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.768744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.768746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.768747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.768761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.768763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.779686 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.779694 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.779695 LLDP, length 82 [|LLDP] 17:44:38.779767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.779768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e1 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.779769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.779771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.779772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.779773 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.779774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.779776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.779805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.779808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.779812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.779814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.790679 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.790681 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.790682 LLDP, length 82 [|LLDP] 17:44:38.790736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.790737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ea 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.790739 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.790740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.790742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.790756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.790758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.790759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.790760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.790762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.790776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.790778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.798943 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.798951 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.798952 LLDP, length 82 [|LLDP] 17:44:38.799010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.799011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f0 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.799013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.799014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.799015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.799016 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.799018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.799019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.799049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.799051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.799055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.799057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.809945 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.809947 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.809954 LLDP, length 82 [|LLDP] 17:44:38.810000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.810001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f9 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.810002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.810003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.810005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.810006 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.810007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.810008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.810036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.810039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.810042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.810044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.820956 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.820959 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.820966 LLDP, length 82 [|LLDP] 17:44:38.821020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.821021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1101 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.821023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.821024 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.821025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.821026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.821043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.821046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.821047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.821048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.821062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.821064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.829223 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.829224 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.829225 LLDP, length 82 [|LLDP] 17:44:38.829263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.829264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1107 bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.829266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.829267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.829268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.829270 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.829271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.829272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.829297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.829299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.829302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.829304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.840221 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.840223 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.840224 LLDP, length 82 [|LLDP] 17:44:38.840272 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.840273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1110 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.840275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.840276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.840289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.840291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.840292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.840294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.840295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.840296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.840311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.840313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.848477 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.848479 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.848481 LLDP, length 82 [|LLDP] 17:44:38.848526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.848527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1116 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.848529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.848530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.848531 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.848532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.848534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.848549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.848551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.848552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.848564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.848566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.859480 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.859482 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.859483 LLDP, length 82 [|LLDP] 17:44:38.859522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.859523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.859524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.859526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.859527 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.859528 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.859529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870507 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.870509 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.870510 LLDP, length 82 [|LLDP] 17:44:38.870549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.870550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1127 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.870552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.870553 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.870554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.870555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.870556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.870575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.870577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.870578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.870581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.878758 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.878759 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.878760 LLDP, length 82 [|LLDP] 17:44:38.878807 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.878808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112d 8a5b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.878810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.878811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.878812 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.878813 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.878814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.878816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.878817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.878843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.878844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.878847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.889768 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.889770 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.889771 LLDP, length 82 [|LLDP] 17:44:38.889815 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.889816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1135 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.889818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.889819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.889820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.889839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.889840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.889843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.889844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.889845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.889846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.889848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.900781 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.900783 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.900790 LLDP, length 82 [|LLDP] 17:44:38.900835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.900836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113e 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.900838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.900839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.900840 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.900842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.900843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.900844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.900863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.900864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.900867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.900868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.909029 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.909030 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.909031 LLDP, length 82 [|LLDP] 17:44:38.909075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.909076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1144 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.909078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.909079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.909080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.909081 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.909082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.909083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.909084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.909111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.909112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.909115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.920040 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.920041 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.920042 LLDP, length 82 [|LLDP] 17:44:38.920083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.920084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114d 0a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.920085 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.920086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.920087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.920089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.920104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.920105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.920107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.920108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.920109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.920111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.931047 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.931049 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.931050 LLDP, length 82 [|LLDP] 17:44:38.931091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.931092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1155 70c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.931093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.931095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.931096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.931097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.931098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.931099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.931100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.931125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.931126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.931129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.939324 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.939325 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.939326 LLDP, length 82 [|LLDP] 17:44:38.939362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.939363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115b bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.939364 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.939365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.939366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.939368 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.939369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.939370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.939371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.939396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.939397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.939400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.950315 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.950317 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.950318 LLDP, length 82 [|LLDP] 17:44:38.950359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.950360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1164 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.950362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.950363 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.950364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.950365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.950366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.950382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.950383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.950385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.950386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.950388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.958572 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.958574 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.958575 LLDP, length 82 [|LLDP] 17:44:38.958615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.958616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116a 70bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.958618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.958619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.958620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.958621 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.958622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.958624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.958625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.958649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.958650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.958652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.969581 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.969582 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.969583 LLDP, length 82 [|LLDP] 17:44:38.969623 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.969624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1172 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.969626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.969627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.969628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.969642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.969643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.969645 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.969647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.969648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.969649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.969651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.980592 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.980593 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.980594 LLDP, length 82 [|LLDP] 17:44:38.980636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.980637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117b 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.980638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.980639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.980641 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.980642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.980643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.980644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.980660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.980661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.980664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.980665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.988849 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.988850 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.988851 LLDP, length 82 [|LLDP] 17:44:38.988893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.988894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1181 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.988896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.988897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.988898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.988899 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.988900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.988901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.988902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.988928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.988929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.988932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:38.999857 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:38.999859 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.999860 LLDP, length 82 [|LLDP] 17:44:38.999902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:38.999903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1189 f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:38.999904 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:38.999905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:38.999907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:38.999908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.999922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:38.999924 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:38.999926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:38.999927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:38.999928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:38.999930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.012264 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.012266 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.012267 LLDP, length 82 [|LLDP] 17:44:39.012301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.012302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1192 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.012303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.012304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.012305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.012307 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.012308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.012309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.012310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.012335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.012336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.012339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.019127 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.019128 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.019129 LLDP, length 82 [|LLDP] 17:44:39.019170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.019171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1198 a3ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.019173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.019174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.019175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.019177 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.019178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.019179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.019180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.019205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.019206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.019208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.030206 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.030209 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.030210 LLDP, length 82 [|LLDP] 17:44:39.030316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.030317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a1 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.030319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.030320 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.030322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.030323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.030324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.030364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.030366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.030369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.030371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.030372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.038459 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.038462 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.038464 LLDP, length 82 [|LLDP] 17:44:39.038565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.038566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a7 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.038568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.038569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.038571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.038573 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.038575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.038576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.038578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.038630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.038631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.038635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.049466 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.049470 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.049471 LLDP, length 82 [|LLDP] 17:44:39.049558 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.049559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11af bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.049561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.049563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.049564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.049599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.049601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.049608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.049610 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.049613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.049615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.049617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.060475 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.060478 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.060479 LLDP, length 82 [|LLDP] 17:44:39.060587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.060589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b8 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.060591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.060592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.060594 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.060596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.060597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.060599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.060635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.060636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.060640 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.060642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.068731 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.068734 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.068735 LLDP, length 82 [|LLDP] 17:44:39.068827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.068828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11be 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.068831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.068832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.068834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.068835 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.068836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.068837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.068839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.068882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.068884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.068888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.079740 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.079744 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.079745 LLDP, length 82 [|LLDP] 17:44:39.079829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.079830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c6 d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.079832 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.079833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.079835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.079836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.079864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.079866 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.079870 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.079872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.079873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.079875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.090745 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.090749 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.090750 LLDP, length 82 [|LLDP] 17:44:39.090836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.090837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cf 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.090839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.090840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.090841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.090843 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.090844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.090845 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.090847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.090892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.090894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.090898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.099025 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.099029 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.099030 LLDP, length 82 [|LLDP] 17:44:39.099150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.099151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d5 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.099153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.099155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.099156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.099158 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.099159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.099160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.099162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.099221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.099223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.099229 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.110004 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.110006 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.110008 LLDP, length 82 [|LLDP] 17:44:39.110088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.110089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dd f0bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.110091 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.110092 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.110093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.110094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.110095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.110125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.110126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.110130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.110131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.110133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.120985 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.120993 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.120994 LLDP, length 82 [|LLDP] 17:44:39.121040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.121041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e6 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.121043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.121044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.121045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.121046 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.121047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.121049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.121050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.121077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.121079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.121082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.129239 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.129248 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.129249 LLDP, length 82 [|LLDP] 17:44:39.129299 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.129300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ec a3f5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.129301 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.129302 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.129304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.129321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.129322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.129325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.129326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.129328 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.129329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.129330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.140241 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.140242 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.140244 LLDP, length 82 [|LLDP] 17:44:39.140288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.140289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f5 0a56 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.140291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.140292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.140293 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.140295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.140296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.140297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.140314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.140315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.140317 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.140319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.148499 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.148500 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.148501 LLDP, length 82 [|LLDP] 17:44:39.148543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.148544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fb 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.148546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.148547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.148548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.148549 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.148550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.148552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.148553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.148579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.148580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.148583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.160919 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.160920 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.160921 LLDP, length 82 [|LLDP] 17:44:39.160958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.160959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1203 bd89 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.160961 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.160962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.160963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.160965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.160980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.160981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.160984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.160985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.160986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.160987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.170521 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.170522 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.170524 LLDP, length 82 [|LLDP] 17:44:39.170562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.170563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120c 23ef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.170564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.170566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.170567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.170568 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.170569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.170570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.170571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.170596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.170597 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.170600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.178772 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.178774 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.178775 LLDP, length 82 [|LLDP] 17:44:39.178818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.178819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1212 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.178820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.178821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.178823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.178824 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.178825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.178826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.178828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.178852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.178854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.178856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.189784 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.189786 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.189787 LLDP, length 82 [|LLDP] 17:44:39.189833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.189834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121a d722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.189836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.189837 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.189838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.189839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.189841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.189857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.189858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.189861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.189863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.189865 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.200797 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.200798 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.200799 LLDP, length 82 [|LLDP] 17:44:39.200843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.200844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1223 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.200845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.200846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.200847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.200848 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.200850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.200851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.200852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.200877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.200878 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.200882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.209052 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.209053 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.209054 LLDP, length 82 [|LLDP] 17:44:39.209097 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.209098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1229 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.209100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.209101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.209102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.209116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.209117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.209119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.209120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.209122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.209123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.209124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.220073 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.220075 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.220076 LLDP, length 82 [|LLDP] 17:44:39.220112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.220113 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1231 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.220114 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.220115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.220117 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.220118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.220119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.220120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.220136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.220137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.220140 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.220141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.228332 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.228334 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.228335 LLDP, length 82 [|LLDP] 17:44:39.228388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.228388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 3d88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.228390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.228391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.228393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.228394 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.228395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.228396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.228397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.228425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.228426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.228429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.239339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.239341 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.239342 LLDP, length 82 [|LLDP] 17:44:39.239391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.239392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1240 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.239393 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.239394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.239396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.239397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.239414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.239415 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.239417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.239418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.239420 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.239421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.250339 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.250341 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.250342 LLDP, length 82 [|LLDP] 17:44:39.250386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.250388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1249 0a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.250389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.250390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.250392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.250393 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.250394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.250395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.250396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.250421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.250422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.250425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.258583 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.258584 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.258586 LLDP, length 82 [|LLDP] 17:44:39.258623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.258624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124f 5722 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.258626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.258627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.258628 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.258629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.258630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269605 LLDP, length 82 [|LLDP] 17:44:39.269619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.269620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1257 bd88 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.269622 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.269624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.269625 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.269626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.269627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269647 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.269649 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.269651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.269652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.269653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.269684 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.269687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.280615 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.280617 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.280618 LLDP, length 82 [|LLDP] 17:44:39.280659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.280660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1260 23ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.280662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.280663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.280664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.280665 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.280666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.280668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.280691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.280693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.280697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.280699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.288874 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.288876 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.288877 LLDP, length 82 [|LLDP] 17:44:39.288917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.288918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1266 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.288920 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.288921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.288922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.288934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.288936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.288937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.288939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.288940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.288954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.288956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.299881 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.299883 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.299884 LLDP, length 82 [|LLDP] 17:44:39.299925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.299926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126e d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.299927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.299928 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.299929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.299931 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.299932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.299934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.299957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.299959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.299962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.299964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.310889 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.310891 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.310893 LLDP, length 82 [|LLDP] 17:44:39.310932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.310933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1277 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.310934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.310936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.310937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.310938 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.310939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.310940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.310963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.310964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.310967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.310969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:44:39.319147 IP 1.1.1.2.44862 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:44:39.319149 IP 1.1.1.2.54612 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.319150 LLDP, length 82 [|LLDP] 17:44:39.319190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:44:39.319191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127d 8a55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:44:39.319192 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:44:39.319194 IP 192.168.1.1.41237 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:44:39.319195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:44:39.319196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.319209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:44:39.319211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:44:39.319212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:44:39.319213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:44:39.319226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:44:39.319228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 9000 packets captured 9000 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:44:48 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:44:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:44:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif | 256.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2553' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.3, port 36554 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:44:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 603 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG infra2:Logger.py:156 17:48:47.467768 LLDP, length 230: dentlab-infra2 17:48:50.126935 LLDP, length 82 [|LLDP] 17:48:50.126952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.126953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.126957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.126958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.126959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.126960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.126962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.126992 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.126995 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.126996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.127006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.127009 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.127010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.127011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.135112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.135114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.135131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.135132 LLDP, length 82 [|LLDP] 17:48:50.135147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.135149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a5 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.135151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.135153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.135154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.135155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.135156 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.135157 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.135158 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.135159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.135160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.146110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.146112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.146126 LLDP, length 82 [|LLDP] 17:48:50.146139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.146140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.146142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.146143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.146144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.146146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.146152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.146154 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.146155 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.146157 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.146158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.146159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.154372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.154374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.154382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.154383 LLDP, length 82 [|LLDP] 17:48:50.154395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.154396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.154398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.154400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.154401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.154402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.154403 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.154404 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.154405 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.154406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.154407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.165382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.165384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.165392 LLDP, length 82 [|LLDP] 17:48:50.165402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.165402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bc 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.165404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.165405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.165406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.165407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.165413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.165415 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.165416 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.165417 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.165418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.165419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.176392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.176393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.176401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.176402 LLDP, length 82 [|LLDP] 17:48:50.176414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.176415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.176417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.176418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.176419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.176420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.176421 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.176423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.176424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.176425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.176426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.184658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.184660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.184667 LLDP, length 82 [|LLDP] 17:48:50.184678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.184679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca f012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.184681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.184682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.184683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.184684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.184690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.184692 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.184693 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.184694 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.195652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.195654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.195662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.195663 LLDP, length 82 [|LLDP] 17:48:50.195674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.195675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d3 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.195677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.195678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.195679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.206670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.206671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.206672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.206688 LLDP, length 82 [|LLDP] 17:48:50.206698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.206699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.206701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.206702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.206703 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.206704 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.206705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.206713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.206715 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.206716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.206717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.214920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.214922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.214938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.214939 LLDP, length 82 [|LLDP] 17:48:50.214949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.214951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e2 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.214952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.214954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.214955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.214956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.214957 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.214959 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.214960 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.214961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.214962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.225942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.225944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.225952 LLDP, length 82 [|LLDP] 17:48:50.225963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.225964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 7013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.225965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.225967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.225968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.225969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.225976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.225978 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.225979 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.225980 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.225981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.225982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.234189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.234191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.234204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.234206 LLDP, length 82 [|LLDP] 17:48:50.234218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.234218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 bce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.234220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.234221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.234223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.234224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.234225 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.234225 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.234226 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.234228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.234229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.245205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.245208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.245215 LLDP, length 82 [|LLDP] 17:48:50.245226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.245227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f9 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.245229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.245230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.245231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.245232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.245238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.245241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.245242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.245243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.245244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.245244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.256209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.256211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.256224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.256225 LLDP, length 82 [|LLDP] 17:48:50.256237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.256238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.256239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.256241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.256243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.256244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.256245 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.256246 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.256247 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.256248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.256249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.264478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.264479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.264487 LLDP, length 82 [|LLDP] 17:48:50.264497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.264498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.264499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.264501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.264502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.264503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.264509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.264511 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.264512 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.264513 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.275473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.275475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.275482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.275483 LLDP, length 82 [|LLDP] 17:48:50.275495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.275496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0110 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.275498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.275500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.275501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.286484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.286485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.286493 LLDP, length 82 [|LLDP] 17:48:50.286502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.286503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 a34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.286504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.286505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.286506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.286510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.294742 LLDP, length 82 [|LLDP] 17:48:50.294753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.294754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.294757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.294757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.294766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.294767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.294770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.294771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.305757 LLDP, length 82 [|LLDP] 17:48:50.305767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.305768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0127 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.305771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.305772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.305773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.305774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.305775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.305786 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.305788 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.305790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.305795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.305797 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.305798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.305799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.316764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.316766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.316780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.316781 LLDP, length 82 [|LLDP] 17:48:50.316792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.316793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.316794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.316796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.316797 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.316798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.316799 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.316800 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.316801 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.316802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.316804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.325021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.325023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.325037 LLDP, length 82 [|LLDP] 17:48:50.325049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.325050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0136 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.325051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.325053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.325054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.325055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.325062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.325063 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.325064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.325065 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.325066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.325067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.336032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.336034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.336048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.336049 LLDP, length 82 [|LLDP] 17:48:50.336060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.336061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.336063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.336064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.336066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.336067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.336068 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.336069 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.336070 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.336071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.336072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.344297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.344299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.344313 LLDP, length 82 [|LLDP] 17:48:50.344324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.344324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.344326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.344327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.344328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.344329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.344336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.344338 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.344339 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.344340 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.344342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.344342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.355312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.355314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.355323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.355324 LLDP, length 82 [|LLDP] 17:48:50.355335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.355336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014d 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.355338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.355339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.355341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.355342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.355343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.355344 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.355345 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.355346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.355347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.366321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.366323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.366330 LLDP, length 82 [|LLDP] 17:48:50.366341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.366342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 89b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.366344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.366345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.366346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.366347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.366354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.366355 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.366357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.366357 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.374564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.374566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.374574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.374575 LLDP, length 82 [|LLDP] 17:48:50.374586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.374587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.374589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.374591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.374592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.385574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.385575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.385582 LLDP, length 82 [|LLDP] 17:48:50.385592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.385593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0164 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.385595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.385596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.385598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.385602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.396591 LLDP, length 82 [|LLDP] 17:48:50.396607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.396608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.396609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.396610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.396611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.396623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.396624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.396627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.396629 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.396630 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.396632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.396633 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.396634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.396635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.404850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.404851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.404865 LLDP, length 82 [|LLDP] 17:48:50.404876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.404876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.404878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.404879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.404880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.404882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.404889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.404891 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.404892 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.404893 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.404894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.404895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.415856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.415858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.415872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.415873 LLDP, length 82 [|LLDP] 17:48:50.415885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.415887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.415888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.415889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.415891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.415892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.415893 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.415894 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.415895 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.415896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.415897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.424120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.424122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.424130 LLDP, length 82 [|LLDP] 17:48:50.424140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.424141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.424142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.424144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.424145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.424147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.424153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.424155 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.424156 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.424157 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.424158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.424159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.435122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.435123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.435137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.435138 LLDP, length 82 [|LLDP] 17:48:50.435150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.435151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018a 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.435153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.435154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.435155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.435156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.435157 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.435158 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.435159 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.435160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.435161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.446133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.446136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.446150 LLDP, length 82 [|LLDP] 17:48:50.446161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.446162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.446164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.446165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.446166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.446167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.446174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.446176 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.446177 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.446178 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.446179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.446180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.454403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.454405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.454413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.454415 LLDP, length 82 [|LLDP] 17:48:50.454425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.454427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.454428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.454430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.454431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.454433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.454434 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.454436 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.454437 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.465404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.465405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.465414 LLDP, length 82 [|LLDP] 17:48:50.465425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.465426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a1 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.465428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.465429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.465430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.465435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.476413 LLDP, length 82 [|LLDP] 17:48:50.476422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.476423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.476426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.476427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.476435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.476436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.476439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.476441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.484674 LLDP, length 82 [|LLDP] 17:48:50.484683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.484683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af d680 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.484686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.484687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.484688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.484689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.484701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.484703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.495682 LLDP, length 82 [|LLDP] 17:48:50.495703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.495704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b8 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.495706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.495707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.495708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.495716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.495718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.495720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.495721 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.495722 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.495724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.495726 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.495727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.495728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.506703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.506704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.506713 LLDP, length 82 [|LLDP] 17:48:50.506723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.506724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 a346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.506725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.506726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.506727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.506729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.506735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.506737 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.506738 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.506739 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.506740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.506741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.514951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.514953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.514961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.514962 LLDP, length 82 [|LLDP] 17:48:50.514978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.514979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.514980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.514982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.514983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.514984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.514986 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.514986 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.514988 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.514990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.514991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.525963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.525966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.525981 LLDP, length 82 [|LLDP] 17:48:50.525990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.525991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.525993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.525994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.525995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.525996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.526003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.526006 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.526007 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.526008 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.526009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.526010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.534217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.534218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.534234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.534235 LLDP, length 82 [|LLDP] 17:48:50.534248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.534249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.534251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.534252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.534254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.534255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.534256 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.534257 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.534258 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.534259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.534261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.545228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.545230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.545245 LLDP, length 82 [|LLDP] 17:48:50.545253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.545254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01de 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.545256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.545257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.545258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.545259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.545266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.545267 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.545268 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.545270 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.545271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.545272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.556243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.556245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.556254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.556256 LLDP, length 82 [|LLDP] 17:48:50.556269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.556270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.556272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.556273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.556274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.556275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.556276 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.556277 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.556278 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.564487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.564489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.564497 LLDP, length 82 [|LLDP] 17:48:50.564506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.564506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.564508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.564509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.564510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.564515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.575496 LLDP, length 82 [|LLDP] 17:48:50.575504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.575505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f5 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.575507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.575508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.575518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.575519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.575522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.575523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.586512 LLDP, length 82 [|LLDP] 17:48:50.586520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.586521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.586523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.586524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.586525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.586526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.586538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.586540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.594746 LLDP, length 82 [|LLDP] 17:48:50.594753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.594754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.594756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.594760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.605780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.605782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.605783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.605801 LLDP, length 82 [|LLDP] 17:48:50.605810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.605811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020c 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.605813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.605814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.605815 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.605817 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.605818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.605827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.605830 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.605831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.605832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.616788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.616790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.616809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.616810 LLDP, length 82 [|LLDP] 17:48:50.616819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.616820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 a34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.616821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.616823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.616824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.616826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.616827 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.616828 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.616829 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.616830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.616831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.625051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.625053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.625077 LLDP, length 82 [|LLDP] 17:48:50.625085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.625090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.625092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.625093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.625094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.625096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.625102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.625104 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.625105 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.625106 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.625107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.625108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.636064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.636066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.636075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.636076 LLDP, length 82 [|LLDP] 17:48:50.636085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.636086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.636088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.636089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.636091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.636092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.636093 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.636094 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.636095 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.636096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.636097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.644317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.644318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.644327 LLDP, length 82 [|LLDP] 17:48:50.644335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.644337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.644338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.644340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.644341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.644342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.644349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.644351 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.644352 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.644353 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.644354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.644355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.655335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.655337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.655355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.655356 LLDP, length 82 [|LLDP] 17:48:50.655365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.655366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0232 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.655368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.655369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.655370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.655372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.655373 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.655374 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.655375 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.655376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.655377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.666344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.666345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.666354 LLDP, length 82 [|LLDP] 17:48:50.666363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.666365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.666366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.666367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.666369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.666370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.666377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.666379 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.666380 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.666381 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.674586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.674588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.674597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.674598 LLDP, length 82 [|LLDP] 17:48:50.674607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.674609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.674610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.674612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.674613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.685600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.685602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.685611 LLDP, length 82 [|LLDP] 17:48:50.685621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.685622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0249 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.685623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.685625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.685626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.685630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.696618 LLDP, length 82 [|LLDP] 17:48:50.696627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.696627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.696630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.696631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.696633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.696634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.696646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.696647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.696650 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.696651 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.696653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.696655 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.696656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.696657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.704883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.704885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.704900 LLDP, length 82 [|LLDP] 17:48:50.704911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.704912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.704913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.704915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.704916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.704917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.704924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.704926 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.704928 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.704929 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.704930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.704931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.715880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.715881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.715888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.715890 LLDP, length 82 [|LLDP] 17:48:50.715900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.715901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.715902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.715903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.715905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.715906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.715907 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.715908 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.715910 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.715911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.715911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.724132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.724134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.724147 LLDP, length 82 [|LLDP] 17:48:50.724156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.724157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0266 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.724158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.724159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.724161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.724161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.724167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.724169 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.724170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.724171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.724172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.724173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.735142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.735144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.735158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.735159 LLDP, length 82 [|LLDP] 17:48:50.735167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.735168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026e f019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.735170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.735171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.735173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.735174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.735175 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.735176 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.735177 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.735178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.735179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.746152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.746154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.746168 LLDP, length 82 [|LLDP] 17:48:50.746178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.746179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.746181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.746182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.746183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.746184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.746191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.746192 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.746194 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.746194 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.746196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.746197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.754420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.754421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.754429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.754430 LLDP, length 82 [|LLDP] 17:48:50.754439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.754440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d a346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.754442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.754443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.754445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.754446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.754447 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.754448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.754449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.765410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.765412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.765419 LLDP, length 82 [|LLDP] 17:48:50.765428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.765429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0286 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.765431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.765432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.765433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.765437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.776429 LLDP, length 82 [|LLDP] 17:48:50.776437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.776438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.776440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.776442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.776443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.776452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.776453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.776456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.784686 LLDP, length 82 [|LLDP] 17:48:50.784695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.784696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.784698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.784699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.784700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.784702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.784711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.784712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.795699 LLDP, length 82 [|LLDP] 17:48:50.795711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.795712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029d 2345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.795714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.795716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.795717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.795718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.795728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.795729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.795732 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.795733 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.795735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.795736 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.795737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.795738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.806707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.806709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.806723 LLDP, length 82 [|LLDP] 17:48:50.806731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.806732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.806734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.806735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.806737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.806738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.806744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.806746 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.806747 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.806748 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.806749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.806750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.814969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.814971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.814984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.814986 LLDP, length 82 [|LLDP] 17:48:50.814996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.814996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.814998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.814999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.815001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.815002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.815003 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.815005 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.815006 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.815007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.815008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.825980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.825982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.825990 LLDP, length 82 [|LLDP] 17:48:50.825998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.825999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.826000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.826002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.826003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.826004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.826010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.826012 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.826013 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.826014 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.826015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.826016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.834233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.834235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.834249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.834250 LLDP, length 82 [|LLDP] 17:48:50.834260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.834261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ba 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.834263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.834264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.834266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.834267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.834268 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.834269 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.834270 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.834271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.834272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.845240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.845242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.845255 LLDP, length 82 [|LLDP] 17:48:50.845264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.845265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c2 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.845266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.845267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.845269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.845270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.845276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.845278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.845279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.845280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.845281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.845282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.856263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.856264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.856272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.856273 LLDP, length 82 [|LLDP] 17:48:50.856282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.856283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.856285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.856286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.856288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.856289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.856290 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.856291 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.856293 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.864507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.864509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.864517 LLDP, length 82 [|LLDP] 17:48:50.864525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.864526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.864528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.864529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.864530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.864534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.875517 LLDP, length 82 [|LLDP] 17:48:50.875525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.875526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02da 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.875529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.875530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.875531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.875541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.875542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.875545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.886520 LLDP, length 82 [|LLDP] 17:48:50.886529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.886530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.886532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.886533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.886534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.886535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.886545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.886547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.894812 LLDP, length 82 [|LLDP] 17:48:50.894820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.894821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.894823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.894824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.894826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.894827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.894837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.894838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.894841 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.894842 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.894844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.894845 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.894846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.894847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.905798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.905799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.905814 LLDP, length 82 [|LLDP] 17:48:50.905822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.905823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.905825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.905826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.905827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.905829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.905835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.905837 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.905838 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.905840 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.905841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.905842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.914054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.914055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.914069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.914070 LLDP, length 82 [|LLDP] 17:48:50.914078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.914079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f7 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.914080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.914081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.914083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.914084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.914085 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.914086 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.914087 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.914088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.914089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.925065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.925067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.925081 LLDP, length 82 [|LLDP] 17:48:50.925089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.925090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ff d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.925092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.925093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.925095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.925095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.925102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.925104 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.925105 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.925106 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.925107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.925108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.936073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.936074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.936087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.936088 LLDP, length 82 [|LLDP] 17:48:50.936097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.936098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.936100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.936101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.936103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.936104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.936105 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.936106 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.936108 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.936109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.936110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.944346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.944347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.944356 LLDP, length 82 [|LLDP] 17:48:50.944365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.944366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030e 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.944368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.944369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.944370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.944371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.944378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.944380 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.944380 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.944381 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.944382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.944384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.955372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.955375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.955387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.955388 LLDP, length 82 [|LLDP] 17:48:50.955398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.955399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0316 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.955401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.955402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.955403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.955405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.955406 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.955407 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.955408 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.966372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.966374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.966385 LLDP, length 82 [|LLDP] 17:48:50.966398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.966399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.966401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.966402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.966403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.966408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.974613 LLDP, length 82 [|LLDP] 17:48:50.974622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.974623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.974626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.974627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.974628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.974637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.974638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.974641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.985615 LLDP, length 82 [|LLDP] 17:48:50.985623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.985624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032e 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.985627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.985628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.985629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.985630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.985639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.985641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.996635 LLDP, length 82 [|LLDP] 17:48:50.996647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.996648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.996651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.996652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.996653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.996654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.996664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.996665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.996668 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.996669 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.996671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.996672 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.996673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.996674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.004902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.004903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.004919 LLDP, length 82 [|LLDP] 17:48:51.004929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.004930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.004932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.004933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.004934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.004935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.004942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.004944 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.004945 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.004946 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.004947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.004948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.015900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.015902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.015916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.015917 LLDP, length 82 [|LLDP] 17:48:51.015926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.015927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.015929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.015931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.015932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.015934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.015935 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.015936 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.015937 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.015938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.015940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.024156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.024158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.024178 LLDP, length 82 [|LLDP] 17:48:51.024186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.024187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034b 703b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.024188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.024189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.024191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.024192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.024198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.024200 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.024201 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.024202 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.024203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.024204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.035168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.035169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.035182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.035184 LLDP, length 82 [|LLDP] 17:48:51.035193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.035194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0353 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.035195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.035197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.035198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.035200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.035201 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.035202 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.035203 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.035204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.035205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.046172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.046174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.046188 LLDP, length 82 [|LLDP] 17:48:51.046196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.046197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.046198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.046199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.046201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.046202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.046208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.046210 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.046211 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.046212 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.046213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.046214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.054440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.054441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.054449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.054450 LLDP, length 82 [|LLDP] 17:48:51.054459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.054461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0362 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.054462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.054463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.054465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.054466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.054467 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.054469 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.054470 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.065435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.065437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.065445 LLDP, length 82 [|LLDP] 17:48:51.065452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.065453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036a f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.065455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.065456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.065457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.065461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.076447 LLDP, length 82 [|LLDP] 17:48:51.076455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.076456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 56a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.076459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.076460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.076461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.076469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.076470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.076473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.084706 LLDP, length 82 [|LLDP] 17:48:51.084714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.084715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.084718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.084718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.084719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.084720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.084729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.084731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.095724 LLDP, length 82 [|LLDP] 17:48:51.095737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.095737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0382 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.095741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.095742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.095743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.095744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.095753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.095770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.095773 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.095774 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.095776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.095778 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.095779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.095780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.106763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.106772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.106782 LLDP, length 82 [|LLDP] 17:48:51.106797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.106798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.106800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.106801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.106803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.106804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.106812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.106814 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.106815 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.106817 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.106819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.106819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.114997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.114999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.115013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.115014 LLDP, length 82 [|LLDP] 17:48:51.115024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.115025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.115027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.115028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.115030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.115031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.115033 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.115034 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.115035 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.115036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.115037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.126015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.126017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.126028 LLDP, length 82 [|LLDP] 17:48:51.126040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.126041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.126043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.126043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.126045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.126046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.126053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.126055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.126056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.126058 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.126059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.126059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.134262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.134264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.134272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.134273 LLDP, length 82 [|LLDP] 17:48:51.134283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.134284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.134286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.134287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.134289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.134291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.134292 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.134292 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.134294 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.134295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.134296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.145263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.145264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.145279 LLDP, length 82 [|LLDP] 17:48:51.145287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.145289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a7 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.145290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.145292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.145293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.145294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.145300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.145302 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.145303 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.145304 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.145305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.145306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.156283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.156284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.156292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.156293 LLDP, length 82 [|LLDP] 17:48:51.156302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.156303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 3d00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.156305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.156306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.156308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.156309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.156310 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.156311 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.156312 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.164529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.164531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.164538 LLDP, length 82 [|LLDP] 17:48:51.164547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.164548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b6 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.164549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.164551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.164552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.164556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.175536 LLDP, length 82 [|LLDP] 17:48:51.175543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.175544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03be f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.175546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.175547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.175549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.175557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.175558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.175561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.186540 LLDP, length 82 [|LLDP] 17:48:51.186548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.186548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.186551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.186552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.186553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.186554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.186563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.186564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.194813 LLDP, length 82 [|LLDP] 17:48:51.194825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.194826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.194828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.194830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.194831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.194832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.194842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.194843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.194845 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.194847 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.194848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.194850 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.194850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.194851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.205818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.205820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.205828 LLDP, length 82 [|LLDP] 17:48:51.205837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.205837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.205839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.205840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.205841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.205842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.205848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.205850 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.205851 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.205852 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.205853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.205854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.214078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.214079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.214093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.214094 LLDP, length 82 [|LLDP] 17:48:51.214103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.214104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03dc 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.214106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.214107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.214108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.214110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.214111 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.214112 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.214113 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.214114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.214115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.225086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.225088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.225101 LLDP, length 82 [|LLDP] 17:48:51.225109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.225110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e4 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.225111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.225112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.225113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.225114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.225120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.225123 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.225123 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.225125 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.225126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.225127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.236096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.236097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.236111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.236112 LLDP, length 82 [|LLDP] 17:48:51.236120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.236121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.236123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.236124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.236126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.236127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.236128 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.236129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.236130 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.236131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.236132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.244353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.244354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.244368 LLDP, length 82 [|LLDP] 17:48:51.244375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.244376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f3 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.244378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.244379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.244380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.244382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.244387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.244389 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.244390 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.244391 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.244392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.244393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.255371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.255373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.255380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.255381 LLDP, length 82 [|LLDP] 17:48:51.255390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.255391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fb d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.255392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.255394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.255395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.255397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.255398 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.255399 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.255400 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.266371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.266373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.266380 LLDP, length 82 [|LLDP] 17:48:51.266389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.266390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.266391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.266392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.266393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.266397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.274626 LLDP, length 82 [|LLDP] 17:48:51.274634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.274635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040a 89d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.274637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.274638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.274639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.274647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.274648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.274650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.285639 LLDP, length 82 [|LLDP] 17:48:51.285648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.285648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0412 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.285651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.285652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.285653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.285655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.285663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.285665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.296655 LLDP, length 82 [|LLDP] 17:48:51.296666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.296667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.296669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.296670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.296671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.296673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.296682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.296683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.296686 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.296687 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.296688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.296690 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.296691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.296692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.304907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.304909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.304922 LLDP, length 82 [|LLDP] 17:48:51.304930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.304931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.304933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.304934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.304935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.304936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.304943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.304944 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.304945 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.304947 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.304948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.304949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.315916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.315918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.315931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.315933 LLDP, length 82 [|LLDP] 17:48:51.315941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.315942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.315944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.315946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.315947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.315948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.315949 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.315950 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.315951 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.315953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.315954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.324186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.324188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.324196 LLDP, length 82 [|LLDP] 17:48:51.324203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.324204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0430 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.324206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.324207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.324208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.324209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.324215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.324218 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.324219 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.324220 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.324221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.324222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.335184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.335186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.335201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.335202 LLDP, length 82 [|LLDP] 17:48:51.335211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.335212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0438 bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.335213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.335215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.335216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.335218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.335219 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.335220 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.335221 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.335222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.335223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.346209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.346210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.346226 LLDP, length 82 [|LLDP] 17:48:51.346237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.346238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.346240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.346241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.346242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.346243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.346250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.346251 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.346252 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.346254 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.346255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.346256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.354463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.354464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.354473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.354475 LLDP, length 82 [|LLDP] 17:48:51.354485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.354486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0447 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.354487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.354489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.354491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.354492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.354493 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.354494 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.354495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.365461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.365463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.365470 LLDP, length 82 [|LLDP] 17:48:51.365479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.365480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044f d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.365481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.365483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.365484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.365489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.376473 LLDP, length 82 [|LLDP] 17:48:51.376482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.376482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.376485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.376486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.376487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.376495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.376496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.376499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.384727 LLDP, length 82 [|LLDP] 17:48:51.384735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.384735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045e 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.384738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.384739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.384740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.384741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.384750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.384751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.395744 LLDP, length 82 [|LLDP] 17:48:51.395757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.395758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0466 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.395760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.395762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.395763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.395764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.395773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.395774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.395777 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.395778 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.395780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.395782 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.395783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.395783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.406751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.406753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.406766 LLDP, length 82 [|LLDP] 17:48:51.406774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.406775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.406777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.406778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.406779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.406780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.406787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.406789 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.406790 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.406791 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.406792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.406793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.415017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.415019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.415028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.415029 LLDP, length 82 [|LLDP] 17:48:51.415037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.415038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.415040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.415041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.415042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.415044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.415045 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.415046 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.415046 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.415048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.415048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.426019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.426021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.426035 LLDP, length 82 [|LLDP] 17:48:51.426044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.426045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.426047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.426048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.426049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.426050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.426057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.426059 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.426060 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.426062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.426063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.426064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.434277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.434279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.434292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.434294 LLDP, length 82 [|LLDP] 17:48:51.434302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.434303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0484 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.434305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.434306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.434307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.434309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.434310 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.434311 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.434312 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.434313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.434314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.445288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.445289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.445306 LLDP, length 82 [|LLDP] 17:48:51.445316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.445316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048c bd07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.445318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.445319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.445321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.445322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.445328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.445330 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.445331 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.445332 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.445333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.445334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.456306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.456308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.456315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.456316 LLDP, length 82 [|LLDP] 17:48:51.456325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.456326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.456328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.456329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.456331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.456332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.456333 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.456334 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.456335 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.464563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.464564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.464575 LLDP, length 82 [|LLDP] 17:48:51.464587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.464588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049b 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.464589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.464590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.464591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.464596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.475567 LLDP, length 82 [|LLDP] 17:48:51.475578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.475579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a3 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.475582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.475583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.475584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.475595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.475596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.475599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.486571 LLDP, length 82 [|LLDP] 17:48:51.486580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.486581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 3d00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.486583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.486584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.486585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.486587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.486595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.486597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.494836 LLDP, length 82 [|LLDP] 17:48:51.494850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.494850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b2 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.494853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.494854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.494855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.494857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.494866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.494868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.494870 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.494871 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.494873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.494874 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.494875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.494876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.505842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.505844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.505857 LLDP, length 82 [|LLDP] 17:48:51.505867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.505868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.505869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.505871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.505872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.505873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.505879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.505881 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.505882 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.505883 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.505884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.505885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.514099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.514101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.514115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.514116 LLDP, length 82 [|LLDP] 17:48:51.514126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.514127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c1 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.514129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.514130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.514132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.514133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.514134 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.514135 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.514136 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.514137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.514138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.525126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.525129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.525138 LLDP, length 82 [|LLDP] 17:48:51.525149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.525150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c9 a36a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.525152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.525153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.525154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.525155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.525162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.525164 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.525165 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.525166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.525167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.525168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.536133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.536135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.536144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.536145 LLDP, length 82 [|LLDP] 17:48:51.536155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.536156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.536158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.536159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.536161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.536162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.536163 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.536164 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.536166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.536167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.536168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.544386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.544388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.544397 LLDP, length 82 [|LLDP] 17:48:51.544407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.544408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d8 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.544409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.544411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.544412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.544413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.544419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.544421 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.544423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.544424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.544425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.544427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.555415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.555417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.555426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.555428 LLDP, length 82 [|LLDP] 17:48:51.555438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.555439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e0 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.555441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.555442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.555444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.555445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.555446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.555448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.555448 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.566407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.566409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.566419 LLDP, length 82 [|LLDP] 17:48:51.566430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.566431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.566432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.566434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.566435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.566440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.574659 LLDP, length 82 [|LLDP] 17:48:51.574668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.574669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ef 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.574671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.574673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.574674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.574686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.574687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.574691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.585680 LLDP, length 82 [|LLDP] 17:48:51.585688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.585689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f7 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.585692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.585692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.585693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.585695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.585705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.585706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.596682 LLDP, length 82 [|LLDP] 17:48:51.596691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.596692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.596694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.596696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.596697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.596698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.596708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.596710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.596712 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.596714 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.596715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.596716 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.596717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.596718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.604931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.604932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.604946 LLDP, length 82 [|LLDP] 17:48:51.604954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.604955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0506 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.604956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.604958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.604959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.604960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.604966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.604968 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.604969 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.604970 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.604971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.604972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.615944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.615946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.615960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.615961 LLDP, length 82 [|LLDP] 17:48:51.615970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.615972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.615974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.615975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.615976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.615977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.615978 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.615979 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.615980 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.615981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.615982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.624203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.624204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.624218 LLDP, length 82 [|LLDP] 17:48:51.624227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.624228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0515 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.624229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.624230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.624232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.624233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.624239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.624241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.624242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.624243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.624244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.624245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.635205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.635207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.635220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.635221 LLDP, length 82 [|LLDP] 17:48:51.635230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.635231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051d a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.635232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.635234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.635235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.635236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.635237 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.635238 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.635239 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.635240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.635241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.646222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.646223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.646237 LLDP, length 82 [|LLDP] 17:48:51.646246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.646247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.646249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.646250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.646251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.646253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.646259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.646261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.646263 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.646264 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.646265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.646266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.654490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.654492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.654500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.654501 LLDP, length 82 [|LLDP] 17:48:51.654510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.654511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052c 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.654513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.654514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.654515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.654516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.654517 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.654518 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.654519 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.665486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.665488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.665497 LLDP, length 82 [|LLDP] 17:48:51.665506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.665507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0534 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.665512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.665513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.665514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.665518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.676499 LLDP, length 82 [|LLDP] 17:48:51.676509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.676510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.676513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.676514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.676527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.676528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.676531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.684752 LLDP, length 82 [|LLDP] 17:48:51.684760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.684761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0543 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.684763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.684764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.684765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.684766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.684776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.684777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.695767 LLDP, length 82 [|LLDP] 17:48:51.695779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.695780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b d6a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.695783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.695784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.695785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.695787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.695796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.695797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.695799 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.695801 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.695802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.695804 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.695805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.695806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.704018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.704019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.704032 LLDP, length 82 [|LLDP] 17:48:51.704041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.704042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0552 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.704043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.704045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.704046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.704047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.704053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.704055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.704057 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.704058 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.704059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.704060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.715029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.715031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.715045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.715047 LLDP, length 82 [|LLDP] 17:48:51.715056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.715057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055a 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.715059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.715060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.715061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.715063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.715064 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.715065 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.715066 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.715067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.715068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.726042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.726043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.726057 LLDP, length 82 [|LLDP] 17:48:51.726066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.726067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.726069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.726070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.726071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.726072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.726078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.726080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.726081 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.726082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.726083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.726084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.734304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.734305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.734319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.734320 LLDP, length 82 [|LLDP] 17:48:51.734329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.734329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0569 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.734331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.734332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.734334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.734336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.734337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.734337 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.734338 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.734339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.734341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.745308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.745309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.745321 LLDP, length 82 [|LLDP] 17:48:51.745329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.745330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0571 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.745332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.745333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.745334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.745335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.745341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.745343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.745345 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.745346 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.745348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.745349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.756330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.756331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.756338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.756339 LLDP, length 82 [|LLDP] 17:48:51.756347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.756348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.756350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.756352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.756353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.756354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.756356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.756356 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.756358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.764573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.764575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.764582 LLDP, length 82 [|LLDP] 17:48:51.764590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.764591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0580 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.764593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.764594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.764595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.764599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.775583 LLDP, length 82 [|LLDP] 17:48:51.775591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.775592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0588 bd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.775594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.775595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.775596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.775604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.775605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.775608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.786603 LLDP, length 82 [|LLDP] 17:48:51.786613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.786614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.786617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.786618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.786619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.786621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.786633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.786634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.794859 LLDP, length 82 [|LLDP] 17:48:51.794867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.794868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0597 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.794870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.794871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.794873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.794874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.794884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.794885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.794888 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.794889 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.794891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.794892 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.794893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.794894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.805866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.805868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.805875 LLDP, length 82 [|LLDP] 17:48:51.805884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.805886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.805887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.805888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.805890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.805891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.805898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.805900 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.805900 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.805902 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.805903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.805903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.814120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.814122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.814135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.814136 LLDP, length 82 [|LLDP] 17:48:51.814144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.814145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a6 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.814147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.814148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.814150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.814151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.814152 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.814153 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.814154 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.814155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.814156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.825128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.825129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.825142 LLDP, length 82 [|LLDP] 17:48:51.825152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.825153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ae 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.825154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.825156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.825157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.825158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.825165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.825166 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.825167 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.825168 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.825169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.825170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.836142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.836144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.836158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.836159 LLDP, length 82 [|LLDP] 17:48:51.836167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.836168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.836170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.836171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.836172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.836174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.836174 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.836175 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.836176 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.836177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.836178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.844403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.844405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.844418 LLDP, length 82 [|LLDP] 17:48:51.844427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.844428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bd 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.844430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.844431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.844432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.844433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.844440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.844442 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.844443 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.844444 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.844445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.844446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.855409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.855410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.855417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.855418 LLDP, length 82 [|LLDP] 17:48:51.855426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.855427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c5 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.855429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.855430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.855432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.855433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.855434 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.855435 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.855436 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.866417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.866418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.866425 LLDP, length 82 [|LLDP] 17:48:51.866433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.866434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.866435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.866436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.866438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.866442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.874672 LLDP, length 82 [|LLDP] 17:48:51.874680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.874680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d4 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.874683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.874684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.874686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.874694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.874695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.874698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.885683 LLDP, length 82 [|LLDP] 17:48:51.885691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.885692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dc bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.885695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.885696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.885697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.885698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.885707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.885709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.896696 LLDP, length 82 [|LLDP] 17:48:51.896709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.896710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.896713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.896714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.896715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.896717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.896726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.896728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.896731 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.896732 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.896734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.896735 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.896736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.896737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.904952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.904955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.904968 LLDP, length 82 [|LLDP] 17:48:51.904977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.904978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05eb 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.904980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.904981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.904982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.904983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.904989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.904991 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.904992 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.904993 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.904994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.904995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.915969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.915970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.915977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.915978 LLDP, length 82 [|LLDP] 17:48:51.915988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.915989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.915991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.915992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.915993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.915995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.915996 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.915997 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.915998 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.915999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.916000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.924227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.924229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.924236 LLDP, length 82 [|LLDP] 17:48:51.924245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.924247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fa 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.924248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.924249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.924251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.924252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.924259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.924261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.924262 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.924263 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.924264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.924265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.935229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.935231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.935244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.935245 LLDP, length 82 [|LLDP] 17:48:51.935256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.935257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0602 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.935258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.935259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.935261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.935263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.935264 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.935265 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.935265 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.935266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.935268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.946238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.946239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.946251 LLDP, length 82 [|LLDP] 17:48:51.946260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.946261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.946263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.946264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.946265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.946266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.946272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.946274 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.946275 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.946276 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.946277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.946278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.954510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.954512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.954519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.954520 LLDP, length 82 [|LLDP] 17:48:51.954528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.954529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0611 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.954531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.954532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.954533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.954535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.954536 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.954537 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.954538 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.965504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.965506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.965513 LLDP, length 82 [|LLDP] 17:48:51.965521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.965522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0619 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.965524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.965525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.965526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.965531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.976507 LLDP, length 82 [|LLDP] 17:48:51.976515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.976516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.976518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.976519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.976520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.976528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.976529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.976532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.984771 LLDP, length 82 [|LLDP] 17:48:51.984779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.984780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0628 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.984783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.984784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.984785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.984786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.984795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.984797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.995785 LLDP, length 82 [|LLDP] 17:48:51.995797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.995798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.995801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.995802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.995803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.995804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.995814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.995816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.995818 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.995819 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.995821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.995822 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.995824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.995825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.004042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.004044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.004058 LLDP, length 82 [|LLDP] 17:48:52.004066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.004067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0637 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.004068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.004069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.004071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.004072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.004078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.004080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.004081 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.004082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.004083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.004084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.015051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.015053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.015066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.015067 LLDP, length 82 [|LLDP] 17:48:52.015076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.015077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.015079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.015080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.015082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.015083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.015084 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.015085 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.015086 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.015087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.015088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.026062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.026063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.026077 LLDP, length 82 [|LLDP] 17:48:52.026086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.026087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 d69c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.026089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.026090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.026091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.026093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.026099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.026101 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.026102 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.026103 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.026104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.026105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.034321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.034322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.034338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.034339 LLDP, length 82 [|LLDP] 17:48:52.034348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.034349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064e 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.034351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.034352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.034353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.034355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.034356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.034357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.034358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.034359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.034360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.045330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.045331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.045346 LLDP, length 82 [|LLDP] 17:48:52.045354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.045355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0656 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.045356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.045358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.045359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.045360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.045367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.045368 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.045369 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.045371 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.045371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.045373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.056348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.056350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.056357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.056358 LLDP, length 82 [|LLDP] 17:48:52.056367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.056368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.056370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.056371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.056372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.056374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.056375 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.056376 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.056377 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.064594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.064595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.064604 LLDP, length 82 [|LLDP] 17:48:52.064613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.064614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0665 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.064615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.064617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.064618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.064622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.075602 LLDP, length 82 [|LLDP] 17:48:52.075623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.075625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066d a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.075628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.075629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.075631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.075639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.075641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.075645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.086641 LLDP, length 82 [|LLDP] 17:48:52.086655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.086656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.086657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.086659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.086660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.086661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.086680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.086683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.094893 LLDP, length 82 [|LLDP] 17:48:52.094913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.094914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067c 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.094917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.094918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.094919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.094920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.094935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.094936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.094940 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.094941 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.094943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.094945 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.094946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.094947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.105888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.105889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.105903 LLDP, length 82 [|LLDP] 17:48:52.105913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.105914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.105916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.105917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.105918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.105919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.105926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.105928 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.105929 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.105930 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.105931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.105932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.114143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.114144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.114158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.114159 LLDP, length 82 [|LLDP] 17:48:52.114167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.114169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068b 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.114170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.114171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.114174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.114175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.114176 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.114177 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.114178 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.114179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.114180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.125151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.125152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.125166 LLDP, length 82 [|LLDP] 17:48:52.125175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.125176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0693 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.125178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.125179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.125181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.125182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.125188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.125190 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.125191 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.125192 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.125193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.125194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.136159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.136161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.136175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.136176 LLDP, length 82 [|LLDP] 17:48:52.136185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.136186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.136188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.136189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.136191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.136192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.136193 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.136194 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.136195 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.136196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.136197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.144418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.144420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.144433 LLDP, length 82 [|LLDP] 17:48:52.144442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.144443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a2 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.144445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.144446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.144447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.144448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.144454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.144456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.144457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.144458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.144459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.144460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.155438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.155440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.155447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.155448 LLDP, length 82 [|LLDP] 17:48:52.155457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.155458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06aa 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.155460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.155461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.155463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.155464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.155465 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.155465 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.155466 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.166431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.166433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.166441 LLDP, length 82 [|LLDP] 17:48:52.166449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.166449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.166451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.166453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.166454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.166458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.174693 LLDP, length 82 [|LLDP] 17:48:52.174700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.174701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b9 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.174703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.174704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.174705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.174714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.174715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.174718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.185705 LLDP, length 82 [|LLDP] 17:48:52.185713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.185714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.185717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.185718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.185719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.185720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.185728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.185730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.193965 LLDP, length 82 [|LLDP] 17:48:52.193977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.193977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.193980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.193981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.193983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.193984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.193994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.193995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.193998 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.193999 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.194000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.194002 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.194003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.194004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.204973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.204975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.204988 LLDP, length 82 [|LLDP] 17:48:52.204996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.204997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d0 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.204998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.205000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.205001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.205002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.205009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.205011 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.205012 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.205012 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.205013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.205014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.215989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.215990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.215998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.215999 LLDP, length 82 [|LLDP] 17:48:52.216008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.216009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.216011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.216012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.216013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.216015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.216016 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.216017 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.216018 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.216019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.216020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.224243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.224244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.224251 LLDP, length 82 [|LLDP] 17:48:52.224260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.224261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06df 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.224262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.224263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.224265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.224266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.224272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.224274 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.224275 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.224276 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.224277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.224278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.235256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.235258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.235265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.235267 LLDP, length 82 [|LLDP] 17:48:52.235276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.235276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e7 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.235278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.235279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.235281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.235282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.235283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.235284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.235285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.235286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.235288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.246262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.246263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.246271 LLDP, length 82 [|LLDP] 17:48:52.246280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.246281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.246282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.246283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.246285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.246286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.246292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.246294 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.246294 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.246295 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.246296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.246297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.254532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.254534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.254541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.254542 LLDP, length 82 [|LLDP] 17:48:52.254550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.254551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f6 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.254553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.254554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.254556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.254557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.254558 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.254559 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.254560 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.265523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.265524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.265532 LLDP, length 82 [|LLDP] 17:48:52.265540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.265540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fe 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.265542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.265543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.265545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.265548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.276536 LLDP, length 82 [|LLDP] 17:48:52.276544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.276545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.276548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.276549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.276551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.276559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.276560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.276563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.284791 LLDP, length 82 [|LLDP] 17:48:52.284798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.284799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070d 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.284802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.284802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.284804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.284814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.284815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.295810 LLDP, length 82 [|LLDP] 17:48:52.295821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.295822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.295825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.295826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.295827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.295828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.295838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.295840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.295843 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.295844 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.295845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.295847 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.295848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.295849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.304062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.304064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.304078 LLDP, length 82 [|LLDP] 17:48:52.304086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.304087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.304089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.304090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.304092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.304093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.304099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.304101 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.304102 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.304103 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.304104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.304105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.315073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.315075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.315088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.315090 LLDP, length 82 [|LLDP] 17:48:52.315099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.315100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0724 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.315101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.315102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.315104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.315105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.315106 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.315107 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.315109 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.315110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.315110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.326083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.326085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.326099 LLDP, length 82 [|LLDP] 17:48:52.326107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.326108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.326110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.326111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.326112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.326113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.326119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.326121 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.326122 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.326123 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.326124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.326125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.334337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.334339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.334352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.334353 LLDP, length 82 [|LLDP] 17:48:52.334363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.334364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0733 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.334365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.334367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.334368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.334370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.334371 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.334372 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.334373 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.334374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.334375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.345351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.345352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.345359 LLDP, length 82 [|LLDP] 17:48:52.345367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.345369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073b 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.345370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.345371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.345373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.345374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.345380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.345382 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.345383 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.345384 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.345385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.345386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.356372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.356374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.356381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.356382 LLDP, length 82 [|LLDP] 17:48:52.356391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.356392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 d69b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.356393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.356395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.356396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.356398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.356399 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.356400 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.356401 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.364614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.364615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.364623 LLDP, length 82 [|LLDP] 17:48:52.364631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.364632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074a 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.364634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.364635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.364636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.364640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.375624 LLDP, length 82 [|LLDP] 17:48:52.375631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.375632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0752 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.375635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.375636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.375637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.375646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.375647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.375650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.386647 LLDP, length 82 [|LLDP] 17:48:52.386656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.386657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.386660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.386662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.386663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.386664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.386676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.386678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.394906 LLDP, length 82 [|LLDP] 17:48:52.394915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.394916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0761 3d08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.394919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.394920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.394921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.394922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.394932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.394933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.394936 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.394937 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.394939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.394940 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.394941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.394942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.405909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.405910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.405917 LLDP, length 82 [|LLDP] 17:48:52.405925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.405926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.405928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.405929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.405931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.405932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.405938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.405940 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.405942 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.405942 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.405943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.405944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.414165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.414167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.414181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.414182 LLDP, length 82 [|LLDP] 17:48:52.414191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.414192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f f035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.414194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.414195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.414196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.414198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.414199 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.414200 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.414201 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.414202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.414202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.425174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.425176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.425189 LLDP, length 82 [|LLDP] 17:48:52.425198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.425199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0778 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.425200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.425201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.425203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.425204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.425210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.425212 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.425213 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.425214 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.425215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.425216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.436182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.436184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.436198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.436200 LLDP, length 82 [|LLDP] 17:48:52.436209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.436209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.436211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.436213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.436214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.436215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.436216 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.436217 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.436219 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.436220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.436221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.444443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.444444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.444457 LLDP, length 82 [|LLDP] 17:48:52.444466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.444467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0787 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.444468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.444469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.444471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.444472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.444478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.444481 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.444482 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.444483 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.444484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.444485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.455460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.455461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.455469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.455470 LLDP, length 82 [|LLDP] 17:48:52.455480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.455481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.455483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.455484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.455486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.455487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.455488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.455489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.455490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.466452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.466453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.466461 LLDP, length 82 [|LLDP] 17:48:52.466470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.466471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.466473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.466473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.466474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.466478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.474719 LLDP, length 82 [|LLDP] 17:48:52.474727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.474728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079e 2389 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.474730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.474732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.474733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.474742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.474743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.474746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.485729 LLDP, length 82 [|LLDP] 17:48:52.485736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.485737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 89f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.485740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.485741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.485742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.485744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.485753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.485755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.493990 LLDP, length 82 [|LLDP] 17:48:52.494002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.494002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac d6bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.494006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.494006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.494007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.494008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.494018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.494020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.494022 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.494023 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.494025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.494027 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.494028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.494029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.504994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.504995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.505009 LLDP, length 82 [|LLDP] 17:48:52.505017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.505018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b5 3d23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.505020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.505021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.505022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.505023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.505029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.505032 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.505033 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.505034 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.505035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.505036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.516007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.516008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.516021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.516022 LLDP, length 82 [|LLDP] 17:48:52.516031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.516032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd a389 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.516034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.516035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.516037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.516038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.516039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.516040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.516041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.516043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.516044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.524265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.524267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.524274 LLDP, length 82 [|LLDP] 17:48:52.524289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.524290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 f056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.524291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.524293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.524294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.524295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.524301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.524303 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.524305 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.524306 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.524307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.524307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.535273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.535274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.535289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.535290 LLDP, length 82 [|LLDP] 17:48:52.535300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.535301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cc 56bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.535311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.535312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.535314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.535316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.535317 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.535318 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.535319 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.535320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.535321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.546285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.546287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.546301 LLDP, length 82 [|LLDP] 17:48:52.546310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.546311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 bd22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.546313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.546314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.546315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.546317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.546322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.546325 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.546326 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.546326 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.546328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.546329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.554551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.554552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.554559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.554561 LLDP, length 82 [|LLDP] 17:48:52.554571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.554572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07db 09f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.554574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.554575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.554577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.554578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.554579 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.554580 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.554581 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.565549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.565550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.565558 LLDP, length 82 [|LLDP] 17:48:52.565567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.565568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e3 7056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.565569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.565571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.565572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.565576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.576558 LLDP, length 82 [|LLDP] 17:48:52.576566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.576566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb d6bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.576569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.576570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.576571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.576579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.576581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.576584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.584815 LLDP, length 82 [|LLDP] 17:48:52.584822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.584823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f2 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.584825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.584827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.584828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.584829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.584838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.584839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.595835 LLDP, length 82 [|LLDP] 17:48:52.595847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.595848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.595851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.595852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.595853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.595854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.595864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.595866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.595868 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.595870 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.595871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.595873 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.595874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.595875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.604092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.604094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.604108 LLDP, length 82 [|LLDP] 17:48:52.604116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.604117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.604119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.604120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.604122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.604123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.604129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.604132 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.604133 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.604134 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.604135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.604136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.615095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.615097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.615112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.615113 LLDP, length 82 [|LLDP] 17:48:52.615121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.615122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0809 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.615124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.615125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.615127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.615128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.615129 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.615130 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.615131 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.615132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.615133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.626111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.626113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.626127 LLDP, length 82 [|LLDP] 17:48:52.626136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.626136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.626138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.626151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.626152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.626153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.626160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.626162 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.626163 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.626164 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.626165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.626170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.634365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.634367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.634380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.634381 LLDP, length 82 [|LLDP] 17:48:52.634390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.634391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.634392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.634394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.634395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.634396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.634398 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.634399 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.634400 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.634402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.634403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.648920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.648922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.648930 LLDP, length 82 [|LLDP] 17:48:52.648938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.648939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0820 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.648941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.648942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.648943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.648944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.648950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.648952 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.648953 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.648954 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.648955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.648957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.656398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.656399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.656407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.656408 LLDP, length 82 [|LLDP] 17:48:52.656416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.656417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 bd47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.656419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.656420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.656421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.656423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.656424 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.656425 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.656426 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.664643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.664645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.664654 LLDP, length 82 [|LLDP] 17:48:52.664662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.664670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082f 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.664672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.664673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.664675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.664679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.675668 LLDP, length 82 [|LLDP] 17:48:52.675679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.675680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0837 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.675683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.675684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.675685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.675700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.675701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.675705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.686668 LLDP, length 82 [|LLDP] 17:48:52.686676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.686677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.686679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.686680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.686682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.686683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.686695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.686697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.694942 LLDP, length 82 [|LLDP] 17:48:52.694951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.694952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0846 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.694955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.694956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.694957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.694958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.694979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.694980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.694983 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.694984 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.694986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.694987 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.694989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.694989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.709594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.709596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.709605 LLDP, length 82 [|LLDP] 17:48:52.709614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.709615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.709617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.709618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.709620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.709621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.709627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.709633 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.709634 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.709635 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.709636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.709638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.714202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.714204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.714227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.714228 LLDP, length 82 [|LLDP] 17:48:52.714239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.714240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.714242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.714243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.714245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.714246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.714248 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.714249 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.714250 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.714251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.714252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.725210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.725212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.725220 LLDP, length 82 [|LLDP] 17:48:52.725231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.725232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085d 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.725234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.725235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.725237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.725238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.725245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.725246 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.725247 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.725249 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.725250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.725251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.736216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.736218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.736232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.736233 LLDP, length 82 [|LLDP] 17:48:52.736244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.736245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.736246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.736247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.736249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.736250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.736251 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.736252 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.736253 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.736254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.736256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.744469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.744471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.744485 LLDP, length 82 [|LLDP] 17:48:52.744494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.744495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.744496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.744497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.744499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.744500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.744506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.744508 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.744509 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.744510 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.744511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.744512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.755492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.755494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.755502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.755503 LLDP, length 82 [|LLDP] 17:48:52.755515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.755516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0874 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.755517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.755519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.755520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.755521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.755523 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.755524 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.755525 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.770232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.770234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.770244 LLDP, length 82 [|LLDP] 17:48:52.770255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.770256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.770257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.770259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.770260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.770265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.774741 LLDP, length 82 [|LLDP] 17:48:52.774749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.774750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0883 0a18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.774753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.774754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.774755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.774765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.774766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.774769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.785755 LLDP, length 82 [|LLDP] 17:48:52.785764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.785764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.785767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.785768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.785769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.785770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.785781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.785782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.794017 LLDP, length 82 [|LLDP] 17:48:52.794025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.794026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.794029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.794030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.794031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.794032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.794043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.794045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.794047 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.794049 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.794050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.794051 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.794053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.794054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.805020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.805021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.805036 LLDP, length 82 [|LLDP] 17:48:52.805045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.805046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089a 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.805048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.805049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.805050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.805051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.805058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.805060 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.805061 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.805062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.805063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.805064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.816029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.816031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.816045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.816046 LLDP, length 82 [|LLDP] 17:48:52.816055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.816056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.816058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.816059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.816060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.816062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.816063 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.816064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.816065 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.816066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.816068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.824301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.824303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.824312 LLDP, length 82 [|LLDP] 17:48:52.824323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.824324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.824326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.824327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.824329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.824330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.824337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.824339 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.824340 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.824341 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.824342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.824343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.835298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.835300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.835319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.835320 LLDP, length 82 [|LLDP] 17:48:52.835329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.835330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b1 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.835332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.835333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.835335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.835336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.835337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.835338 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.835340 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.835341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.835342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.846308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.846309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.846322 LLDP, length 82 [|LLDP] 17:48:52.846332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.846333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.846334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.846335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.846336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.846338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.846344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.846346 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.846348 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.846348 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.846349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.846350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.854569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.854571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.854577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.854578 LLDP, length 82 [|LLDP] 17:48:52.854588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.854588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.854590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.854592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.854593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.854595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.854596 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.854597 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.854597 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.865572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.865573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.865581 LLDP, length 82 [|LLDP] 17:48:52.865590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.865590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c8 5706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.865592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.865594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.865595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.865599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.876582 LLDP, length 82 [|LLDP] 17:48:52.876589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.876590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.876593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.876593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.876595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.876603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.876605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.876608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.884839 LLDP, length 82 [|LLDP] 17:48:52.884847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.884848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d7 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.884850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.884851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.884853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.884854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.884862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.884864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.895858 LLDP, length 82 [|LLDP] 17:48:52.895866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.895867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.895869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.895870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.895871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.895872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.895882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.895884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.895886 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.895887 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.895889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.895890 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.895891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.895893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.904113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.904115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.904130 LLDP, length 82 [|LLDP] 17:48:52.904139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.904140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.904141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.904142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.904144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.904145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.904151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.904153 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.904154 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.904155 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.904156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.904157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.915121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.915122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.915137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.915139 LLDP, length 82 [|LLDP] 17:48:52.915149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.915150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ee 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.915151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.915152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.915154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.915155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.915156 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.915157 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.915159 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.915160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.915161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.926128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.926130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.926144 LLDP, length 82 [|LLDP] 17:48:52.926153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.926154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.926156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.926157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.926158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.926159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.926165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.926167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.926168 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.926169 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.926170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.926171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.934387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.934389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.934403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.934404 LLDP, length 82 [|LLDP] 17:48:52.934414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.934415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.934417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.934418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.934420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.934421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.934422 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.934423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.934424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.934425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.934426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.945397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.945398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.945412 LLDP, length 82 [|LLDP] 17:48:52.945422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.945423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0905 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.945424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.945425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.945427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.945428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.945434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.945436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.945437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.945438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.945439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.945440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.956418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.956420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.956427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.956428 LLDP, length 82 [|LLDP] 17:48:52.956438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.956439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.956441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.956442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.956443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.956445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.956446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.956447 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.956448 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.964659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.964660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.964667 LLDP, length 82 [|LLDP] 17:48:52.964676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.964677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.964679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.964680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.964681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.964686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.975669 LLDP, length 82 [|LLDP] 17:48:52.975677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.975678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.975681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.975682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.975683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.975692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.975693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.975696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.983929 LLDP, length 82 [|LLDP] 17:48:52.983937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.983938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.983941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.983942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.983943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.983944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.983953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.983955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.994944 LLDP, length 82 [|LLDP] 17:48:52.994957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.994957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.994960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.994961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.994962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.994963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.994973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.994974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.994977 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.994978 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.994980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.994981 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.994982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.994983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.005949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.005951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.005964 LLDP, length 82 [|LLDP] 17:48:53.005972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.005973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.005975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.005976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.005977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.005979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.005985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.005987 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.005988 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.005990 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.005991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.005992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.014210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.014212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.014219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.014220 LLDP, length 82 [|LLDP] 17:48:53.014229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.014230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.014232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.014233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.014234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.014236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.014237 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.014238 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.014239 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.014240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.014241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.025219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.025220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.025234 LLDP, length 82 [|LLDP] 17:48:53.025242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.025243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0942 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.025245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.025246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.025247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.025249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.025255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.025257 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.025258 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.025260 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.025260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.025261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.036231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.036232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.036246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.036247 LLDP, length 82 [|LLDP] 17:48:53.036256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.036257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 8a38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.036258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.036259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.036261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.036263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.036264 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.036265 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.036266 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.036267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.036268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.044493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.044494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.044501 LLDP, length 82 [|LLDP] 17:48:53.044511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.044512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.044513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.044514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.044515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.044517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.044523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.044524 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.044526 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.044526 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.044541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.044543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.055533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.055534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.055547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.055548 LLDP, length 82 [|LLDP] 17:48:53.055564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.055565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0959 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.055566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.055567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.055569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.055571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.055572 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.055573 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.055574 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.066514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.066516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.066523 LLDP, length 82 [|LLDP] 17:48:53.066533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.066534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.066536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.066537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.066539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.066543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.074769 LLDP, length 82 [|LLDP] 17:48:53.074779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.074780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.074782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.074783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.074784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.074794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.074795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.074798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.085778 LLDP, length 82 [|LLDP] 17:48:53.085787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.085788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.085790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.085791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.085792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.085794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.085805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.085806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.094039 LLDP, length 82 [|LLDP] 17:48:53.094056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.094057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.094058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.094059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.094061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.094062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.094073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.094074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.094077 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.094078 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.094080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.094082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.094083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.094084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.105040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.105041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.105056 LLDP, length 82 [|LLDP] 17:48:53.105064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.105065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097f 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.105067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.105068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.105069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.105070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.105077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.105079 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.105080 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.105081 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.105082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.105083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.116057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.116059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.116066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.116067 LLDP, length 82 [|LLDP] 17:48:53.116077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.116078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 709f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.116080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.116081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.116083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.116085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.116085 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.116087 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.116088 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.116088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.116090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.124305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.124306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.124320 LLDP, length 82 [|LLDP] 17:48:53.124328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.124329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.124331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.124332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.124333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.124334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.124341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.124343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.124344 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.124345 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.124346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.124347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.135330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.135331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.135339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.135340 LLDP, length 82 [|LLDP] 17:48:53.135349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.135350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0996 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.135352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.135354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.135355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.135357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.135357 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.135358 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.135359 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.135360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.135362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.146326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.146328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.146341 LLDP, length 82 [|LLDP] 17:48:53.146351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.146352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.146354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.146355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.146356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.146357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.146363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.146365 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.146366 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.146367 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.146368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.146369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.154597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.154599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.154606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.154608 LLDP, length 82 [|LLDP] 17:48:53.154617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.154618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.154620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.154621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.154624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.154625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.154626 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.154627 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.154628 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.165592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.165594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.165602 LLDP, length 82 [|LLDP] 17:48:53.165611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.165612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ad 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.165613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.165614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.165615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.165619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.176603 LLDP, length 82 [|LLDP] 17:48:53.176611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.176612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.176615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.176615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.176617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.176624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.176625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.176628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.184859 LLDP, length 82 [|LLDP] 17:48:53.184866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.184867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.184870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.184871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.184872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.184873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.184883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.184884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.195882 LLDP, length 82 [|LLDP] 17:48:53.195891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.195892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.195895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.195896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.195897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.195898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.195908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.195909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.195912 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.195913 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.195915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.195916 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.195917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.195918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.204130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.204131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.204144 LLDP, length 82 [|LLDP] 17:48:53.204153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.204154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.204156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.204157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.204159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.204160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.204166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.204167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.204169 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.204170 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.204171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.204172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.215140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.215141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.215155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.215156 LLDP, length 82 [|LLDP] 17:48:53.215164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.215165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d3 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.215167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.215168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.215169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.215171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.215172 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.215173 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.215174 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.215175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.215176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.226167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.226169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.226185 LLDP, length 82 [|LLDP] 17:48:53.226197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.226198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.226200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.226201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.226202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.226203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.226210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.226212 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.226213 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.226214 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.226215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.226216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.234410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.234412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.234426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.234427 LLDP, length 82 [|LLDP] 17:48:53.234438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.234439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.234441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.234442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.234444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.234445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.234446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.234448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.234449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.234450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.234450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.245424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.245425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.245433 LLDP, length 82 [|LLDP] 17:48:53.245441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.245442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ea 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.245444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.245445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.245446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.245448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.245454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.245456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.245457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.245458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.245459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.245461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.256438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.256440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.256447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.256448 LLDP, length 82 [|LLDP] 17:48:53.256459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.256460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.256462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.256463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.256465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.256466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.256468 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.256469 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.256469 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.264683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.264685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.264692 LLDP, length 82 [|LLDP] 17:48:53.264701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.264702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.264703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.264704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.264706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.264710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.275689 LLDP, length 82 [|LLDP] 17:48:53.275697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.275698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.275701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.275702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.275703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.275711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.275712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.275715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.283948 LLDP, length 82 [|LLDP] 17:48:53.283957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.283957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a07 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.283960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.283961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.283963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.283964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.283972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.283974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.294964 LLDP, length 82 [|LLDP] 17:48:53.294976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.294977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0f f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.294979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.294980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.294981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.294983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.294993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.294994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.294996 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.294997 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.294999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.295000 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.295001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.295002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.305973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.305975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.305988 LLDP, length 82 [|LLDP] 17:48:53.305996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.305997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.305999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.306000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.306001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.306002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.306008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.306011 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.306011 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.306013 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.306014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.306015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.314231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.314232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.314240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.314241 LLDP, length 82 [|LLDP] 17:48:53.314250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.314250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e a3d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.314252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.314254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.314255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.314257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.314258 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.314259 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.314260 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.314260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.314262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.325244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.325245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.325259 LLDP, length 82 [|LLDP] 17:48:53.325269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.325269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a27 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.325271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.325272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.325273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.325274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.325281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.325283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.325284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.325285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.325286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.325287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.336264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.336273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.336284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.336285 LLDP, length 82 [|LLDP] 17:48:53.336296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.336296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.336298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.336300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.336301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.336303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.336304 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.336305 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.336306 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.336307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.336309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.344526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.344535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.344550 LLDP, length 82 [|LLDP] 17:48:53.344561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.344562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.344563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.344565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.344566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.344567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.344574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.344576 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.344577 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.344578 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.344579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.344580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.355537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.355539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.355548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.355549 LLDP, length 82 [|LLDP] 17:48:53.355559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.355560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3e 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.355562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.355563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.355565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.355566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.355567 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.355568 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.355569 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.366529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.366530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.366538 LLDP, length 82 [|LLDP] 17:48:53.366546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.366547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 8a39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.366549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.366550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.366551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.366555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.374783 LLDP, length 82 [|LLDP] 17:48:53.374790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.374791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.374793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.374794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.374795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.374806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.374808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.385800 LLDP, length 82 [|LLDP] 17:48:53.385808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.385808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.385811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.385812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.385813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.385814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.385824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.385827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.394074 LLDP, length 82 [|LLDP] 17:48:53.394090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.394091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5b 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.394094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.394095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.394096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.394097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.394110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.394112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.394114 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.394116 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.394118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.394119 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.394120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.394121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.405069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.405071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.405086 LLDP, length 82 [|LLDP] 17:48:53.405096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.405097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a63 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.405099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.405100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.405101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.405103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.405110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.405111 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.405113 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.405114 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.405115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.405116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.416079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.416081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.416095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.416096 LLDP, length 82 [|LLDP] 17:48:53.416105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.416106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.416108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.416109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.416111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.416112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.416113 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.416114 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.416115 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.416116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.416117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.424338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.424340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.424356 LLDP, length 82 [|LLDP] 17:48:53.424365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.424366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.424372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.424373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.424374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.424375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.424383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.424385 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.424386 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.424387 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.424388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.424389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.435363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.435365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.435374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.435375 LLDP, length 82 [|LLDP] 17:48:53.435385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.435386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.435387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.435389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.435390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.435392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.435393 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.435394 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.435395 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.435396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.435397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.446357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.446359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.446369 LLDP, length 82 [|LLDP] 17:48:53.446378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.446379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.446380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.446382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.446383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.446384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.446391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.446393 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.446394 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.446396 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.446397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.446398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.454622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.454624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.454632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.454633 LLDP, length 82 [|LLDP] 17:48:53.454644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.454646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.454648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.454649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.454650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.454652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.454653 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.454654 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.454655 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.465615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.465617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.465625 LLDP, length 82 [|LLDP] 17:48:53.465633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.465634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.465636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.465637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.465639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.465643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.473875 LLDP, length 82 [|LLDP] 17:48:53.473883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.473884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a98 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.473887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.473888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.473889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.473898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.473899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.473901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.484887 LLDP, length 82 [|LLDP] 17:48:53.484897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.484898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa0 d706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.484901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.484902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.484903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.484904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.484915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.484916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.495913 LLDP, length 82 [|LLDP] 17:48:53.495924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.495925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.495927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.495928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.495929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.495930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.495943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.495944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.495947 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.495948 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.495949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.495951 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.495952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.495953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.504168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.504170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.504180 LLDP, length 82 [|LLDP] 17:48:53.504190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.504191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaf 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.504193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.504194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.504195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.504196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.504204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.504206 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.504207 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.504208 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.504209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.504210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.515167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.515169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.515186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.515187 LLDP, length 82 [|LLDP] 17:48:53.515196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.515197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.515199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.515200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.515201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.515203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.515204 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.515205 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.515206 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.515207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.515208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.526194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.526196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.526213 LLDP, length 82 [|LLDP] 17:48:53.526223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.526224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.526225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.526227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.526228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.526229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.526236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.526238 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.526239 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.526240 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.526241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.526243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.534442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.534444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.534459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.534460 LLDP, length 82 [|LLDP] 17:48:53.534472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.534473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.534475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.534476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.534477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.534479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.534480 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.534481 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.534482 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.534483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.534485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.545449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.545450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.545466 LLDP, length 82 [|LLDP] 17:48:53.545474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.545475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acf 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.545477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.545478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.545479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.545481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.545487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.545489 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.545490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.545495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.545496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.545497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.556463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.556465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.556473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.556475 LLDP, length 82 [|LLDP] 17:48:53.556484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.556485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.556487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.556488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.556489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.556491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.556492 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.556493 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.556494 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.564710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.564712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.564720 LLDP, length 82 [|LLDP] 17:48:53.564730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.564731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add bd69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.564733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.564734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.564735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.564740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.575727 LLDP, length 82 [|LLDP] 17:48:53.575739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.575739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.575742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.575743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.575745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.575759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.575761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.575764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.583976 LLDP, length 82 [|LLDP] 17:48:53.583985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.583986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aec 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.583988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.583990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.583991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.583992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.584002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.584004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.594997 LLDP, length 82 [|LLDP] 17:48:53.595013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.595014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af4 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.595017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.595018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.595019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.595021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.595032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.595033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.595036 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.595037 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.595039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.595041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.595042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.595043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.606014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.606016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.606032 LLDP, length 82 [|LLDP] 17:48:53.606042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.606043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.606045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.606046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.606048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.606049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.606056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.606057 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.606058 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.606060 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.606061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.606062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.614260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.614262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.614278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.614279 LLDP, length 82 [|LLDP] 17:48:53.614289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.614290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b03 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.614292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.614293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.614295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.614297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.614298 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.614298 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.614299 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.614300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.614301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.625271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.625273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.625281 LLDP, length 82 [|LLDP] 17:48:53.625292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.625293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0b f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.625295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.625296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.625298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.625299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.625306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.625308 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.625309 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.625310 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.625311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.625312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.636282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.636285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.636300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.636301 LLDP, length 82 [|LLDP] 17:48:53.636311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.636312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.636313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.636314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.636316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.636317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.636318 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.636319 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.636320 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.636321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.636322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.644534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.644537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.644555 LLDP, length 82 [|LLDP] 17:48:53.644565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.644566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.644568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.644569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.644570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.644572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.644578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.644580 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.644581 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.644582 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.644584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.644585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.655556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.655557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.655567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.655568 LLDP, length 82 [|LLDP] 17:48:53.655583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.655584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b23 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.655585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.655586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.655588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.655590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.655591 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.655592 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.655593 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.666555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.666557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.666566 LLDP, length 82 [|LLDP] 17:48:53.666578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.666579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.666581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.666582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.666583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.666588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.674807 LLDP, length 82 [|LLDP] 17:48:53.674816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.674817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.674819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.674821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.674822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.674837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.674838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.674841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.685822 LLDP, length 82 [|LLDP] 17:48:53.685831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.685832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.685835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.685836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.685838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.685839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.685849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.685850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.694082 LLDP, length 82 [|LLDP] 17:48:53.694095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.694096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b40 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.694098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.694099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.694100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.694102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.694112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.694114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.694116 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.694117 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.694119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.694120 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.694121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.694126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.705095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.705103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.705113 LLDP, length 82 [|LLDP] 17:48:53.705123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.705124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b48 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.705125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.705126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.705128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.705129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.705136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.705138 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.705139 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.705140 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.705142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.705143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.716107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.716108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.716116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.716118 LLDP, length 82 [|LLDP] 17:48:53.716126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.716127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.716129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.716130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.716132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.716133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.716134 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.716135 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.716136 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.716137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.716139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.724352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.724353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.724366 LLDP, length 82 [|LLDP] 17:48:53.724375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.724375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b57 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.724377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.724378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.724379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.724380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.724386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.724388 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.724389 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.724390 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.724391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.724392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.735387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.735388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.735413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.735415 LLDP, length 82 [|LLDP] 17:48:53.735423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.735424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5f f0a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.735425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.735427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.735429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.735431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.735432 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.735433 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.735434 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.735435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.735437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.746389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.746391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.746408 LLDP, length 82 [|LLDP] 17:48:53.746420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.746421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.746423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.746424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.746425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.746426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.746434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.746436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.746437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.746438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.746439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.746440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.754644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.754646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.754653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.754654 LLDP, length 82 [|LLDP] 17:48:53.754666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.754666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.754668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.754669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.754671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.754672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.754673 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.754674 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.754675 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.765637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.765639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.765648 LLDP, length 82 [|LLDP] 17:48:53.765656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.765657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.765659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.765660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.765661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.765665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.773898 LLDP, length 82 [|LLDP] 17:48:53.773908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.773909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7d 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.773912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.773913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.773914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.773925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.773926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.773930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.784906 LLDP, length 82 [|LLDP] 17:48:53.784914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.784915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b85 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.784918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.784919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.784920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.784922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.784930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.784932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.795931 LLDP, length 82 [|LLDP] 17:48:53.795949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.795949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.795953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.795954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.795955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.795956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.795968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.795970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.795972 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.795974 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.795975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.795978 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.795979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.795980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.804178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.804179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.804193 LLDP, length 82 [|LLDP] 17:48:53.804205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.804207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b94 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.804208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.804209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.804211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.804212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.804219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.804220 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.804221 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.804223 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.804224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.804225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.815191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.815193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.815207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.815208 LLDP, length 82 [|LLDP] 17:48:53.815218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.815219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9c d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.815221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.815222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.815223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.815225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.815226 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.815227 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.815228 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.815229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.815230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.826200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.826202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.826217 LLDP, length 82 [|LLDP] 17:48:53.826226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.826227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.826229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.826230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.826231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.826232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.826239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.826241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.826242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.826243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.826244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.826245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.834455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.834457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.834470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.834472 LLDP, length 82 [|LLDP] 17:48:53.834481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.834482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bab 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.834484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.834485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.834486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.834488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.834489 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.834490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.834491 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.834492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.834493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.845459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.845461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.845475 LLDP, length 82 [|LLDP] 17:48:53.845483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.845484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb3 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.845486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.845487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.845489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.845490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.845496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.845498 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.845499 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.845500 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.845501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.845502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.856480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.856482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.856489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.856490 LLDP, length 82 [|LLDP] 17:48:53.856500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.856501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.856503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.856504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.856506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.856507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.856508 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.856509 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.856510 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.864726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.864728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.864735 LLDP, length 82 [|LLDP] 17:48:53.864743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.864744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.864745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.864747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.864748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.864752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.875740 LLDP, length 82 [|LLDP] 17:48:53.875748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.875749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.875752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.875753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.875754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.875763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.875765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.875768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.883994 LLDP, length 82 [|LLDP] 17:48:53.884003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.884004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd1 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.884006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.884007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.884009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.884010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.884019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.884021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.895011 LLDP, length 82 [|LLDP] 17:48:53.895023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.895024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd9 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.895027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.895028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.895029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.895031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.895040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.895042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.895044 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.895045 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.895047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.895048 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.895049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.895050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.906016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.906018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.906032 LLDP, length 82 [|LLDP] 17:48:53.906041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.906042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.906044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.906045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.906046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.906047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.906053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.906055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.906056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.906057 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.906058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.906059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.914273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.914275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.914282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.914283 LLDP, length 82 [|LLDP] 17:48:53.914294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.914295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be8 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.914296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.914298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.914299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.914301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.914302 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.914303 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.914304 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.914305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.914306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.925286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.925288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.925296 LLDP, length 82 [|LLDP] 17:48:53.925305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.925306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf0 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.925308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.925309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.925310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.925311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.925317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.925319 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.925320 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.925322 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.925322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.925323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.936290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.936292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.936306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.936307 LLDP, length 82 [|LLDP] 17:48:53.936316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.936317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.936318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.936320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.936321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.936323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.936324 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.936325 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.936326 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.936327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.936329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.944551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.944553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.944567 LLDP, length 82 [|LLDP] 17:48:53.944575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.944576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bff 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.944578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.944579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.944580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.944582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.944588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.944589 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.944590 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.944592 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.944592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.944593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.955571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.955573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.955581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.955582 LLDP, length 82 [|LLDP] 17:48:53.955592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.955594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c07 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.955595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.955596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.955598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.955599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.955600 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.955601 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.955602 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.966566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.966568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.966575 LLDP, length 82 [|LLDP] 17:48:53.966582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.966583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.966585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.966586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.966587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.966591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.974825 LLDP, length 82 [|LLDP] 17:48:53.974833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.974834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.974836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.974838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.974839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.974846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.974848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.974850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.985839 LLDP, length 82 [|LLDP] 17:48:53.985847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.985848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 0a39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.985850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.985851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.985852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.985854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.985862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.985864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.994099 LLDP, length 82 [|LLDP] 17:48:53.994107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.994108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c25 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.994111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.994112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.994113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.994114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.994124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.994125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.994127 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.994129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.994130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.994132 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.994133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.994134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.005105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.005107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.005121 LLDP, length 82 [|LLDP] 17:48:54.005129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.005130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2d bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.005132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.005133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.005135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.005136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.005142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.005144 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.005145 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.005146 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.005147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.005147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.016113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.016114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.016128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.016129 LLDP, length 82 [|LLDP] 17:48:54.016138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.016139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.016141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.016142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.016144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.016146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.016146 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.016147 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.016149 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.016150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.016151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.024371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.024373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.024387 LLDP, length 82 [|LLDP] 17:48:54.024395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.024396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3c 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.024397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.024398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.024400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.024401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.024407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.024409 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.024410 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.024411 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.024412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.024413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.035460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.035463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.035485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.035506 LLDP, length 82 [|LLDP] 17:48:54.035532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.035533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c44 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.035535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.035539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.035542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.035545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.035547 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.035549 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.035551 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.035552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.035555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.046445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.046448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.046462 LLDP, length 82 [|LLDP] 17:48:54.046479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.046480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.046482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.046483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.046483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.046484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.046492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.046493 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.046494 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.046495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.046496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.046497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.054718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.054722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.054738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.054739 LLDP, length 82 [|LLDP] 17:48:54.054755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.054756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c53 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.054758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.054759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.054761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.054762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.054763 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.054764 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.054765 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.065699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.065701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.065717 LLDP, length 82 [|LLDP] 17:48:54.065730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.065731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.065733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.065734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.065735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.065740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.073959 LLDP, length 82 [|LLDP] 17:48:54.073974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.073975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c62 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.073977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.073978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.073980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.073998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.073999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.074002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.084965 LLDP, length 82 [|LLDP] 17:48:54.084978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.084979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6a a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.084982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.084983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.084984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.084985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.085003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.085005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.095995 LLDP, length 82 [|LLDP] 17:48:54.096007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.096008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.096011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.096013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.096014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.096015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.096035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.096036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.096039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.096040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.096041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.096042 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.096043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.096044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.104263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.104267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.104291 LLDP, length 82 [|LLDP] 17:48:54.104308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.104309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c79 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.104311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.104312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.104313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.104314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.104321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.104323 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.104324 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.104325 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.104326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.104327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.115243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.115246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.115259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.115260 LLDP, length 82 [|LLDP] 17:48:54.115271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.115272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c81 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.115273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.115274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.115276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.115277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.115278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.115279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.115280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.115281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.115281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.126235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.126236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.126252 LLDP, length 82 [|LLDP] 17:48:54.126262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.126263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.126264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.126266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.126267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.126268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.126274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.126275 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.126277 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.126278 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.126279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.126279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.134478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.134480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.134495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.134496 LLDP, length 82 [|LLDP] 17:48:54.134505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.134506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c90 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.134508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.134509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.134510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.134511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.134512 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.134513 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.134514 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.134515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.134516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.145489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.145491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.145509 LLDP, length 82 [|LLDP] 17:48:54.145517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.145518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c98 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.145519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.145521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.145522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.145523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.145529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.145532 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.145532 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.145533 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.145534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.145535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.156509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.156510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.156518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.156519 LLDP, length 82 [|LLDP] 17:48:54.156527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.156529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.156530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.156531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.156533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.156534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.156535 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.156536 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.156537 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.164745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.164746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.164754 LLDP, length 82 [|LLDP] 17:48:54.164761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.164762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca7 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.164763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.164764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.164766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.164770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.175757 LLDP, length 82 [|LLDP] 17:48:54.175764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.175765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.175768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.175769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.175770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.175778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.175780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.175782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.184014 LLDP, length 82 [|LLDP] 17:48:54.184020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.184021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb6 3d6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.184024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.184025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.184026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.184027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.184036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.184037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.195031 LLDP, length 82 [|LLDP] 17:48:54.195043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.195044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbe a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.195047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.195048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.195049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.195050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.195060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.195061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.195064 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.195064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.195066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.195067 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.195068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.195069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.206040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.206041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.206056 LLDP, length 82 [|LLDP] 17:48:54.206063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.206064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.206066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.206067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.206068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.206069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.206076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.206077 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.206078 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.206079 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.206080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.206081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.214298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.214299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.214313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.214314 LLDP, length 82 [|LLDP] 17:48:54.214322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.214323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccd 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.214325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.214326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.214328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.214329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.214330 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.214331 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.214332 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.214333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.214334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.225311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.225312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.225319 LLDP, length 82 [|LLDP] 17:48:54.225326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.225327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd5 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.225329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.225330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.225331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.225332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.225338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.225339 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.225341 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.225342 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.225342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.225343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.236319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.236320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.236335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.236336 LLDP, length 82 [|LLDP] 17:48:54.236344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.236345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 23d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.236346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.236347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.236349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.236350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.236351 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.236352 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.236353 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.236354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.236355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.244572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.244574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.244588 LLDP, length 82 [|LLDP] 17:48:54.244595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.244596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce4 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.244598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.244599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.244600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.244601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.244607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.244609 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.244610 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.244611 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.244612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.244613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.255593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.255594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.255603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.255604 LLDP, length 82 [|LLDP] 17:48:54.255613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.255614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.255615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.255617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.255618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.255619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.255620 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.255621 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.255622 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.263839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.263841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.263848 LLDP, length 82 [|LLDP] 17:48:54.263855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.263856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf3 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.263857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.263858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.263860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.263863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.274849 LLDP, length 82 [|LLDP] 17:48:54.274856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.274857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfb 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.274860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.274861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.274861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.274870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.274871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.274874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.285864 LLDP, length 82 [|LLDP] 17:48:54.285870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.285871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.285874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.285875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.285876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.285877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.285878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.285889 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.285891 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.285892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.285898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.285900 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.285901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.285902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.294126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.294128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.294135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.294137 LLDP, length 82 [|LLDP] 17:48:54.294145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.294146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.294147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.294148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.294150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.294151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.294152 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.294153 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.294154 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.294155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.294156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.305134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.305135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.305143 LLDP, length 82 [|LLDP] 17:48:54.305150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.305151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d12 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.305152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.305154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.305155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.305156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.305162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.305164 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.305165 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.305166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.305167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.305168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.316141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.316143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.316151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.316152 LLDP, length 82 [|LLDP] 17:48:54.316160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.316161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.316162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.316163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.316165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.316166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.316167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.316168 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.316168 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.316169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.316170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.324395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.324396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.324410 LLDP, length 82 [|LLDP] 17:48:54.324417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.324418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d21 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.324420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.324421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.324422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.324423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.324429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.324431 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.324432 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.324433 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.324434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.324435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.335405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.335406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.335420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.335421 LLDP, length 82 [|LLDP] 17:48:54.335428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.335429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d29 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.335431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.335432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.335434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.335435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.335436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.335437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.335438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.335438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.335439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.346417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.346418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.346426 LLDP, length 82 [|LLDP] 17:48:54.346434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.346435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.346436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.346437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.346438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.346440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.346445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.346447 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.346448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.346449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.354667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.354668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.354676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.354677 LLDP, length 82 [|LLDP] 17:48:54.354685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.354686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d38 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.354688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.354689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.354691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.365685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.365686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.365694 LLDP, length 82 [|LLDP] 17:48:54.365701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.365702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.365703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.365705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.365706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.365710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.373938 LLDP, length 82 [|LLDP] 17:48:54.373944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.373945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d47 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.373947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.373949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.373950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.373958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.373959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.373962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.384926 LLDP, length 82 [|LLDP] 17:48:54.384932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.384933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4f 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.384935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.384936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395963 LLDP, length 82 [|LLDP] 17:48:54.395974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.395975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.395978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.395979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.395980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.395981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.395982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395993 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.395996 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.395997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.395999 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.395999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.396001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.407222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.407224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.407231 LLDP, length 82 [|LLDP] 17:48:54.407239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.407240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.407242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.407243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.407244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.407245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.407251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.407253 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.407254 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.407255 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.407256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.407257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.415231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.415233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.415247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.415248 LLDP, length 82 [|LLDP] 17:48:54.415256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.415256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d66 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.415259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.415259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.415260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.415262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.415263 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.415264 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.415265 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.415266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.415267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.426240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.426242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.426256 LLDP, length 82 [|LLDP] 17:48:54.426265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.426266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.426268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.426269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.426270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.426272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.426278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.426280 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.426281 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.426282 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.426283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.426284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.434496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.434498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.434511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.434512 LLDP, length 82 [|LLDP] 17:48:54.434521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.434522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d75 5706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.434524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.434525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.434526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.434527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.434529 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.434530 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.434531 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.434532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.434533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.445511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.445512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.445526 LLDP, length 82 [|LLDP] 17:48:54.445535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.445536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7d bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.445537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.445539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.445540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.445541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.445547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.445549 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.445550 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.445551 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.445552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.445554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.456541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.456544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.456556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.456557 LLDP, length 82 [|LLDP] 17:48:54.456568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.456569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.456571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.456572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.456573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.456575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.456577 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.456577 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.456578 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.467897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.467899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.467908 LLDP, length 82 [|LLDP] 17:48:54.467918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.467919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8c 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.467920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.467921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.467922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.467927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.475786 LLDP, length 82 [|LLDP] 17:48:54.475795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.475796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.475798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.475799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.475800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.475801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.475812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.475814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.484042 LLDP, length 82 [|LLDP] 17:48:54.484051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.484052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.484055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.484056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.484057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.484058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.484069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.484071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.495065 LLDP, length 82 [|LLDP] 17:48:54.495075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.495075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.495078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.495079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.495080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.495081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.495082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.495097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.495098 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.495101 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.495103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.495104 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.495105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.495106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.506074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.506076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.506090 LLDP, length 82 [|LLDP] 17:48:54.506100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.506100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.506102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.506103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.506105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.506106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.506113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.506115 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.506116 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.506117 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.506118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.506119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.514328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.514330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.514339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.514340 LLDP, length 82 [|LLDP] 17:48:54.514350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.514351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db2 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.514352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.514354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.514355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.514356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.514357 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.514358 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.514359 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.514360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.514361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.528530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.528532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.528539 LLDP, length 82 [|LLDP] 17:48:54.528548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.528549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dba a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.528550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.528551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.528552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.528554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.528560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.528562 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.528563 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.528564 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.528565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.528566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.536336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.536337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.536350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.536351 LLDP, length 82 [|LLDP] 17:48:54.536360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.536361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.536363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.536364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.536365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.536367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.536368 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.536370 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.536370 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.536371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.536372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.544595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.544596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.544609 LLDP, length 82 [|LLDP] 17:48:54.544617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.544618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc9 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.544619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.544620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.544622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.544623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.544629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.544631 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.544632 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.544633 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.544634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.544635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.555616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.555618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.555625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.555626 LLDP, length 82 [|LLDP] 17:48:54.555635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.555636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.555638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.555639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.555640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.555642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.555643 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.555644 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.555645 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.563858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.563859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.563866 LLDP, length 82 [|LLDP] 17:48:54.563874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.563875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd8 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.563876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.563878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.563879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.563883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.574867 LLDP, length 82 [|LLDP] 17:48:54.574874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.574875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de0 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.574877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.574878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.574879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.574880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.574888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.574890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.589206 LLDP, length 82 [|LLDP] 17:48:54.589214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.589214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.589217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.589218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.589219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.589220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.589221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.589232 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.589234 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.589235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.589240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.589242 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.589243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.589245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.594141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.594143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.594150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.594152 LLDP, length 82 [|LLDP] 17:48:54.594161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.594161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0def 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.594163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.594165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.594166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.594167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.594169 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.594170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.594171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.594171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.594172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.605148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.605149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.605162 LLDP, length 82 [|LLDP] 17:48:54.605170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.605171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df7 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.605172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.605173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.605174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.605175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.605182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.605184 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.605185 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.605186 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.605186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.605187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.616157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.616158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.616171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.616172 LLDP, length 82 [|LLDP] 17:48:54.616181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.616182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.616183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.616184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.616186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.616187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.616189 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.616190 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.616191 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.616192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.616193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.624416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.624417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.624430 LLDP, length 82 [|LLDP] 17:48:54.624438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.624439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e06 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.624441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.624442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.624443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.624444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.624450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.624452 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.624453 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.624455 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.624456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.624457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.635423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.635425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.635437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.635439 LLDP, length 82 [|LLDP] 17:48:54.635447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.635448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0e a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.635450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.635451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.635453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.635454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.635456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.635457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.635458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.635459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.635460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.649873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.649875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.649882 LLDP, length 82 [|LLDP] 17:48:54.649889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.649890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.649892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.649893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.649894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.649895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.649901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.649903 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.649904 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.649905 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.654689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.654691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.654697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.654698 LLDP, length 82 [|LLDP] 17:48:54.654706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.654708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1d 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.654709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.654711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.654712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.665700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.665702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.665709 LLDP, length 82 [|LLDP] 17:48:54.665717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.665718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.665719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.665720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.665721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.665726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.673971 LLDP, length 82 [|LLDP] 17:48:54.673981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.673982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.673985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.673985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.673987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.673988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.674001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.674003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.684986 LLDP, length 82 [|LLDP] 17:48:54.684997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.684998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e34 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.685000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.685001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.685003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.685004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.685005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.685017 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.685019 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.685020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.685027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.685028 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.685030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.685031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.695983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.695985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.695999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.696000 LLDP, length 82 [|LLDP] 17:48:54.696008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.696009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.696011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.696012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.696013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.696015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.696016 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.696017 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.696018 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.696019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.696020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.704240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.704241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.704254 LLDP, length 82 [|LLDP] 17:48:54.704262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.704263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e43 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.704265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.704266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.704267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.704269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.704275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.704277 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.704278 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.704279 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.704280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.704281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.715251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.715252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.715265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.715266 LLDP, length 82 [|LLDP] 17:48:54.715275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.715276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4b 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.715277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.715279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.715280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.715282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.715283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.715284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.715285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.715286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.715287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.726256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.726257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.726270 LLDP, length 82 [|LLDP] 17:48:54.726278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.726279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.726281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.726282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.726283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.726285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.726292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.726293 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.726294 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.726295 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.726296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.726297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.734514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.734516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.734529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.734531 LLDP, length 82 [|LLDP] 17:48:54.734539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.734540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.734542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.734543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.734544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.734546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.734547 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.734548 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.734549 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.734550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.734551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.745537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.745538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.745546 LLDP, length 82 [|LLDP] 17:48:54.745554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.745555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.745557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.745558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.745560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.745561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.745567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.745569 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.745570 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.745571 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.753779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.753780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.753787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.753788 LLDP, length 82 [|LLDP] 17:48:54.753796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.753797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.753799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.753800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.753801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.764788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.764790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.764797 LLDP, length 82 [|LLDP] 17:48:54.764804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.764805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e71 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.764806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.764807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.764809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.764813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.775815 LLDP, length 82 [|LLDP] 17:48:54.775824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.775825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.775829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.775830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.775831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.775831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.775844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.775846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.784070 LLDP, length 82 [|LLDP] 17:48:54.784086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.784086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e80 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.784089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.784090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.784091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.784092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.784093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.784105 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.784107 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.784109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.784116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.784118 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.784119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.784120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.795077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.795079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.795093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.795095 LLDP, length 82 [|LLDP] 17:48:54.795106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.795107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e88 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.795109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.795110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.795111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.795113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.795114 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.795115 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.795116 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.795117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.795118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.806083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.806085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.806103 LLDP, length 82 [|LLDP] 17:48:54.806113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.806114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.806115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.806116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.806118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.806119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.806125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.806127 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.806129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.806130 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.806131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.806131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.814344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.814346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.814360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.814362 LLDP, length 82 [|LLDP] 17:48:54.814373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.814374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e97 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.814375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.814377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.814378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.814379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.814381 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.814382 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.814383 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.814384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.814385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.825350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.825352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.825367 LLDP, length 82 [|LLDP] 17:48:54.825377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.825378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.825380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.825381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.825382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.825383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.825401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.825403 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.825404 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.825404 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.825406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.825407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.836367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.836369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.836377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.836378 LLDP, length 82 [|LLDP] 17:48:54.836389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.836389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.836391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.836392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.836394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.836395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.836397 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.836398 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.836399 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.836400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.836401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.844632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.844634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.844643 LLDP, length 82 [|LLDP] 17:48:54.844653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.844654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eae 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.844655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.844657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.844658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.844659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.844666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.844668 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.844669 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.844670 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.855629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.855631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.855641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.855642 LLDP, length 82 [|LLDP] 17:48:54.855653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.855654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.855656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.855657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.855659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.863886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.863888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.863897 LLDP, length 82 [|LLDP] 17:48:54.863905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.863906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc f0ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.863908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.863909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.863910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.863914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.874900 LLDP, length 82 [|LLDP] 17:48:54.874910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.874910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec5 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.874913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.874914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.874915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.874917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.874927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.874929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.885923 LLDP, length 82 [|LLDP] 17:48:54.885931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.885932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.885935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.885935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.885936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.885938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.885939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.885951 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.885953 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.885955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.885965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.885967 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.885968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.885969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.894178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.894179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.894187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.894189 LLDP, length 82 [|LLDP] 17:48:54.894199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.894200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed4 0a5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.894201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.894203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.894204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.894205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.894207 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.894208 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.894209 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.894210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.894211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.905190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.905192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.905202 LLDP, length 82 [|LLDP] 17:48:54.905212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.905213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edc 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.905214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.905216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.905217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.905218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.905225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.905227 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.905228 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.905229 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.905230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.905232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.916190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.916192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.916206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.916207 LLDP, length 82 [|LLDP] 17:48:54.916217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.916219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.916220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.916221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.916222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.916224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.916226 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.916227 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.916228 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.916229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.916230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.924443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.924445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.924464 LLDP, length 82 [|LLDP] 17:48:54.924473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.924475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eeb 23ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.924476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.924478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.924479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.924480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.924486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.924488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.924490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.924491 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.924492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.924493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.935452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.935454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.935468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.935469 LLDP, length 82 [|LLDP] 17:48:54.935480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.935481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef3 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.935482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.935483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.935485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.935486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.935488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.935489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.935490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.935491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.935492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.946478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.946479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.946489 LLDP, length 82 [|LLDP] 17:48:54.946500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.946502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.946503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.946505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.946506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.946508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.946514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.946517 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.946517 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.946519 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.954721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.954722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.954730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.954731 LLDP, length 82 [|LLDP] 17:48:54.954739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.954740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f02 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.954742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.954743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.954745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.965726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.965728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.965741 LLDP, length 82 [|LLDP] 17:48:54.965749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.965750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.965752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.965753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.965755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.965759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.973987 LLDP, length 82 [|LLDP] 17:48:54.973995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.973996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.973998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.973999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.974000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.974002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.974012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.974013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.985005 LLDP, length 82 [|LLDP] 17:48:54.985013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.985014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f19 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.985017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.985018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.985019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.985020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.985021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.985032 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.985034 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.985035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.985042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.985043 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.985045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.985046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.996005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.996007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.996021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.996022 LLDP, length 82 [|LLDP] 17:48:54.996031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.996032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.996034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.996035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.996036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.996038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.996039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.996040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.996041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.996043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.996044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.004262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.004264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.004277 LLDP, length 82 [|LLDP] 17:48:55.004285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.004286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f28 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.004287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.004288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.004289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.004290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.004297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.004298 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.004299 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.004300 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.004301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.004302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.015274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.015276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.015289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.015290 LLDP, length 82 [|LLDP] 17:48:55.015299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.015300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f30 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.015310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.015327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.015329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.015330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.015332 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.015333 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.015334 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.015336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.015337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.026320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.026328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.026340 LLDP, length 82 [|LLDP] 17:48:55.026357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.026357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.026359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.026360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.026361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.026362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.026371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.026372 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.026374 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.026375 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.026376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.026377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.034556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.034564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.034574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.034575 LLDP, length 82 [|LLDP] 17:48:55.034587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.034588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3f 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.034589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.034591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.034592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.034594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.034595 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.034596 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.034597 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.034598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.034599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.045563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.045564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.045573 LLDP, length 82 [|LLDP] 17:48:55.045583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.045583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.045585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.045586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.045587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.045589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.045595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.045597 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.045598 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.045599 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.053804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.053805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.053812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.053813 LLDP, length 82 [|LLDP] 17:48:55.053824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.053825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.053827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.053828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.053830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.064814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.064816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.064823 LLDP, length 82 [|LLDP] 17:48:55.064831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.064832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f56 3db0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.064834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.064836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.064837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.064840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.075818 LLDP, length 82 [|LLDP] 17:48:55.075826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.075827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.075829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.075830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.075831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.075833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.075842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.075844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.084089 LLDP, length 82 [|LLDP] 17:48:55.084101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.084102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.084105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.084106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.084107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.084108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.084110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.084120 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.084122 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.084123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.084129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.084131 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.084132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.084133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.095108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.095109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.095125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.095126 LLDP, length 82 [|LLDP] 17:48:55.095138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.095139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6d 5743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.095141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.095143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.095144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.095145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.095147 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.095148 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.095149 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.095149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.095151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.106139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.106148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.106162 LLDP, length 82 [|LLDP] 17:48:55.106177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.106179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.106180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.106182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.106183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.106184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.106192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.106194 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.106195 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.106197 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.106198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.106200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.114429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.114433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.114455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.114456 LLDP, length 82 [|LLDP] 17:48:55.114477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.114479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7c 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.114480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.114482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.114483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.114485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.114487 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.114488 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.114489 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.114490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.114491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.125431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.125434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.125454 LLDP, length 82 [|LLDP] 17:48:55.125471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.125472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f84 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.125473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.125474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.125476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.125477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.125485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.125488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.125489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.125490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.125491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.125492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.136390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.136391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.136406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.136407 LLDP, length 82 [|LLDP] 17:48:55.136418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.136419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c d742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.136421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.136422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.136423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.136425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.136426 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.136427 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.136428 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.136429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.136430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.144654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.144656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.144663 LLDP, length 82 [|LLDP] 17:48:55.144673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.144674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f93 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.144676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.144677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.144678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.144679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.144685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.144687 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.144688 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.144689 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.155646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.155647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.155655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.155656 LLDP, length 82 [|LLDP] 17:48:55.155665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.155667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.155668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.155670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.155671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.163908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.163910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.163917 LLDP, length 82 [|LLDP] 17:48:55.163926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.163927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.163929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.163930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.163931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.163935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.174914 LLDP, length 82 [|LLDP] 17:48:55.174921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.174922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faa 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.174925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.174926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.174927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.174928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.174937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.174938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.185933 LLDP, length 82 [|LLDP] 17:48:55.185944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.185945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.185948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.185949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.185950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.185951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.185952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.185963 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.185965 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.185966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.185972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.185975 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.185975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.185977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.194184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.194186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.194199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.194200 LLDP, length 82 [|LLDP] 17:48:55.194209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.194210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.194212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.194213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.194214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.194216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.194217 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.194219 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.194220 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.194220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.194222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.205195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.205197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.205204 LLDP, length 82 [|LLDP] 17:48:55.205212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.205213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc1 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.205214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.205215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.205216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.205217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.205223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.205225 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.205226 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.205227 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.205228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.205229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.216203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.216205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.216219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.216220 LLDP, length 82 [|LLDP] 17:48:55.216229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.216230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.216232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.216233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.216235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.216236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.216238 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.216239 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.216240 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.216241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.216242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.224464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.224466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.224480 LLDP, length 82 [|LLDP] 17:48:55.224489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.224490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd0 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.224492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.224493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.224494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.224495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.224502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.224503 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.224505 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.224506 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.224507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.224508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.235470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.235472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.235485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.235486 LLDP, length 82 [|LLDP] 17:48:55.235496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.235496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd8 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.235498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.235499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.235500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.235502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.235503 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.235504 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.235505 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.235507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.235508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.246490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.246492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.246498 LLDP, length 82 [|LLDP] 17:48:55.246506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.246507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 d742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.246509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.246510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.246511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.246512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.246518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.246520 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.246521 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.246522 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.254734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.254735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.254742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.254744 LLDP, length 82 [|LLDP] 17:48:55.254753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.254754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe7 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.254756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.254757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.254759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.265747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.265749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.265756 LLDP, length 82 [|LLDP] 17:48:55.265765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.265766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.265768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.265769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.265770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.265773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.274003 LLDP, length 82 [|LLDP] 17:48:55.274011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.274012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.274014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.274016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.274017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.274018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.274027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.274028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.285019 LLDP, length 82 [|LLDP] 17:48:55.285031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.285032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffe 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.285035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.285037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.285038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.285039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.285041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.285051 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.285053 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.285054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.285060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.285062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.285064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.285065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.296023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.296025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.296038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.296039 LLDP, length 82 [|LLDP] 17:48:55.296048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.296049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.296050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.296051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.296052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.296054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.296055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.296056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.296057 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.296058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.296059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.304284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.304286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.304299 LLDP, length 82 [|LLDP] 17:48:55.304308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.304309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.304311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.304312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.304313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.304315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.304320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.304322 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.304323 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.304324 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.304325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.304327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.315292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.315294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.315315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.315316 LLDP, length 82 [|LLDP] 17:48:55.315328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.315329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1015 5749 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.315331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.315332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.315333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.315335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.315337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.315338 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.315339 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.315340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.315341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.326317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.326320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.326330 LLDP, length 82 [|LLDP] 17:48:55.326341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.326342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.326344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.326345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.326346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.326347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.326354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.326356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.326357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.326358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.326359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.326360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.334568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.334570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.334579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.334580 LLDP, length 82 [|LLDP] 17:48:55.334592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.334593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1024 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.334594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.334595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.334596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.334599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.334600 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.334601 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.334602 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.334603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.334604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.345582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.345585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.345592 LLDP, length 82 [|LLDP] 17:48:55.345604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.345605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.345606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.345608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.345609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.345610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.345616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.345618 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.345619 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.345620 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.353828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.353830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.353838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.353839 LLDP, length 82 [|LLDP] 17:48:55.353850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.353851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 bdad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.353853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.353854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.353856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.364835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.364837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.364844 LLDP, length 82 [|LLDP] 17:48:55.364854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.364855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103b 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.364856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.364857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.364859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.364863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.375846 LLDP, length 82 [|LLDP] 17:48:55.375856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.375857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.375859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.375860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.375861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.375862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.375871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.375873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.384111 LLDP, length 82 [|LLDP] 17:48:55.384120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.384121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.384123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.384124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.384125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.384126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.384127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.384138 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.384140 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.384141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.384148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.384150 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.384151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.384152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.395128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.395130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.395147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.395148 LLDP, length 82 [|LLDP] 17:48:55.395161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.395162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1052 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.395164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.395165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.395167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.395168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.395170 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.395170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.395171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.395173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.395174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.406135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.406137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.406152 LLDP, length 82 [|LLDP] 17:48:55.406163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.406164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.406165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.406167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.406168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.406169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.406175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.406178 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.406179 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.406180 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.406181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.406182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.414394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.414403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.414411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.414413 LLDP, length 82 [|LLDP] 17:48:55.414424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.414425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.414427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.414428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.414429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.414431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.414432 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.414433 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.414435 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.414436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.414437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.425400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.425403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.425418 LLDP, length 82 [|LLDP] 17:48:55.425429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.425430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1069 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.425431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.425432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.425434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.425434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.425441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.425443 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.425444 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.425445 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.425446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.425447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.436406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.436407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.436421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.436422 LLDP, length 82 [|LLDP] 17:48:55.436434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.436435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.436437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.436438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.436439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.436440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.436442 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.436443 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.436444 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.436445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.436446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.444672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.444674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.444682 LLDP, length 82 [|LLDP] 17:48:55.444691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.444692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1078 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.444694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.444695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.444696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.444697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.444703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.444705 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.444706 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.444707 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.455669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.455671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.455678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.455679 LLDP, length 82 [|LLDP] 17:48:55.455690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.455692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.455693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.455694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.455696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.463923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.463925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.463931 LLDP, length 82 [|LLDP] 17:48:55.463940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.463941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.463943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.463944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.463946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.463949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.474934 LLDP, length 82 [|LLDP] 17:48:55.474944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.474944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108f 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.474947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.474948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.474949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.474950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.474959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.474960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.485951 LLDP, length 82 [|LLDP] 17:48:55.485965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.485965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.485968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.485969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.485970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.485971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.485973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.485983 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.485985 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.485986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.485991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.485993 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.485994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.485995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.494205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.494207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.494221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.494222 LLDP, length 82 [|LLDP] 17:48:55.494233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.494233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.494235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.494236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.494237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.494238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.494239 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.494240 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.494241 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.494242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.494243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.505216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.505218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.505233 LLDP, length 82 [|LLDP] 17:48:55.505242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.505243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a6 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.505245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.505246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.505247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.505248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.505254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.505256 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.505257 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.505258 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.505259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.505260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.516238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.516240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.516248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.516249 LLDP, length 82 [|LLDP] 17:48:55.516258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.516259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.516261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.516262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.516263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.516265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.516266 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.516267 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.516268 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.516269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.516270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.524486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.524488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.524502 LLDP, length 82 [|LLDP] 17:48:55.524512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.524513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.524515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.524516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.524517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.524518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.524525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.524527 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.524528 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.524529 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.524530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.524530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.535492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.535494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.535509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.535511 LLDP, length 82 [|LLDP] 17:48:55.535521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.535522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.535524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.535525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.535526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.535527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.535528 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.535530 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.535531 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.535532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.535533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.543762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.543764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.543771 LLDP, length 82 [|LLDP] 17:48:55.543780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.543781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.543783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.543784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.543785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.543786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.543792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.543794 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.543795 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.543796 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.554756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.554758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.554765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.554766 LLDP, length 82 [|LLDP] 17:48:55.554777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.554778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cc 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.554779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.554781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.554782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.565771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.565773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.565780 LLDP, length 82 [|LLDP] 17:48:55.565790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.565791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 70e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.565792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.565793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.565795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.565798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.574024 LLDP, length 82 [|LLDP] 17:48:55.574032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.574033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.574036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.574036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.574037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.574039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.574047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.574048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.585038 LLDP, length 82 [|LLDP] 17:48:55.585051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.585052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e3 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.585054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.585055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.585057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.585058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.585059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.585069 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.585071 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.585073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.585078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.585080 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.585081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.585082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.596046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.596047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.596061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.596062 LLDP, length 82 [|LLDP] 17:48:55.596072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.596073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.596075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.596076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.596077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.596079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.596080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.596080 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.596081 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.596083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.596084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.604306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.604307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.604322 LLDP, length 82 [|LLDP] 17:48:55.604331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.604332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 d744 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.604334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.604335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.604336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.604337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.604343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.604345 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.604346 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.604347 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.604348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.604349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.615322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.615324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.615338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.615339 LLDP, length 82 [|LLDP] 17:48:55.615350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.615352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fa 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.615353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.615355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.615356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.615357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.615359 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.615360 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.615361 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.615362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.615363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.626326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.626328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.626341 LLDP, length 82 [|LLDP] 17:48:55.626351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.626351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.626353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.626354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.626355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.626357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.626363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.626365 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.626366 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.626367 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.626368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.626369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.634583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.634585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.634598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.634599 LLDP, length 82 [|LLDP] 17:48:55.634611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.634612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.634613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.634614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.634616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.634617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.634618 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.634619 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.634620 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.634621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.634622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.645604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.645605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.645613 LLDP, length 82 [|LLDP] 17:48:55.645621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.645622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.645624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.645625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.645626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.645627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.645633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.645634 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.645635 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.645636 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.653851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.653853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.653860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.653861 LLDP, length 82 [|LLDP] 17:48:55.653870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.653871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.653873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.653874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.653876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.664854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.664855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.664862 LLDP, length 82 [|LLDP] 17:48:55.664872 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.664873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1120 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.664875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.664876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.664877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.664881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.675872 LLDP, length 82 [|LLDP] 17:48:55.675881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.675882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.675885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.675886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.675887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.675888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.675898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.675899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.684134 LLDP, length 82 [|LLDP] 17:48:55.684142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.684143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e bdb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.684145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.684146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.684147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.684148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.684150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.684160 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.684162 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.684163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.684169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.684171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.684172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.684173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.695142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.695143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.695150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.695151 LLDP, length 82 [|LLDP] 17:48:55.695161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.695162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1137 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.695163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.695164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.695165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.695167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.695168 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.695169 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.695170 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.695171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.695172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.706149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.706151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.706165 LLDP, length 82 [|LLDP] 17:48:55.706175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.706176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.706177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.706179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.706180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.706181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.706187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.706189 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.706190 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.706191 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.706192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.706193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.714403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.714405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.714418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.714419 LLDP, length 82 [|LLDP] 17:48:55.714428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.714429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.714431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.714432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.714433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.714435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.714436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.714437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.714438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.714439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.714440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.725417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.725419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.725431 LLDP, length 82 [|LLDP] 17:48:55.725441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.725442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114e 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.725444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.725445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.725446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.725447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.725453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.725455 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.725456 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.725457 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.725458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.725459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.736424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.736426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.736440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.736441 LLDP, length 82 [|LLDP] 17:48:55.736451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.736452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.736453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.736455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.736456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.736457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.736459 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.736459 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.736460 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.736462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.736462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.744685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.744687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.744694 LLDP, length 82 [|LLDP] 17:48:55.744702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.744703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.744705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.744706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.744707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.744708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.744724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.744726 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.744727 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.744728 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.755692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.755693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.755699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.755701 LLDP, length 82 [|LLDP] 17:48:55.755711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.755712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.755713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.755715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.755716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.763950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.763951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.763958 LLDP, length 82 [|LLDP] 17:48:55.763967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.763967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.763969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.763970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.763971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.763975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.774958 LLDP, length 82 [|LLDP] 17:48:55.774967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.774968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1174 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.774971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.774971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.774972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.774973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.774982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.774983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.785969 LLDP, length 82 [|LLDP] 17:48:55.785983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.785984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.785986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.785988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.785989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.785990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.785991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.786000 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.786002 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.786004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.786009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.786011 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.786012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.786013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.794226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.794227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.794241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.794243 LLDP, length 82 [|LLDP] 17:48:55.794252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.794253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.794254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.794256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.794257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.794258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.794260 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.794260 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.794262 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.794263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.794264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.805238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.805240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.805248 LLDP, length 82 [|LLDP] 17:48:55.805257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.805258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118b 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.805259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.805260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.805261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.805262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.805268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.805271 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.805271 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.805272 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.805274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.805275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.816249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.816250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.816258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.816259 LLDP, length 82 [|LLDP] 17:48:55.816269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.816270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 8a7b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.816272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.816273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.816274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.816276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.816277 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.816278 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.816279 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.816280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.816281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.824514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.824516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.824522 LLDP, length 82 [|LLDP] 17:48:55.824532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.824533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.824534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.824535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.824536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.824537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.824543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.824545 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.824546 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.824547 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.824548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.824549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.835515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.835516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.835530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.835531 LLDP, length 82 [|LLDP] 17:48:55.835542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.835543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.835544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.835546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.835547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.835549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.835550 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.835551 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.835552 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.835553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.835554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.843796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.843798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.843808 LLDP, length 82 [|LLDP] 17:48:55.843820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.843821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a8 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.843823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.843824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.843825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.843826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.843833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.843835 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.843836 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.843837 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.854789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.854791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.854798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.854799 LLDP, length 82 [|LLDP] 17:48:55.854810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.854811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b0 f0dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.854813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.854814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.854816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.865788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.865791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.865799 LLDP, length 82 [|LLDP] 17:48:55.865810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.865810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.865812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.865813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.865814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.865819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.874050 LLDP, length 82 [|LLDP] 17:48:55.874060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.874061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.874063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.874064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.874065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.874067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.874076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.874077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.885065 LLDP, length 82 [|LLDP] 17:48:55.885079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.885080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c8 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.885082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.885083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.885084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.885085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.885087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.885099 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.885100 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.885101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.885108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.885110 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.885111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.885112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.896070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.896072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.896087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.896088 LLDP, length 82 [|LLDP] 17:48:55.896099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.896099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.896101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.896102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.896103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.896104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.896106 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.896106 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.896107 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.896108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.896109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.904329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.904331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.904345 LLDP, length 82 [|LLDP] 17:48:55.904354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.904355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.904357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.904358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.904359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.904361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.904367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.904369 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.904370 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.904371 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.904371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.904373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.915362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.915364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.915373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.915374 LLDP, length 82 [|LLDP] 17:48:55.915386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.915387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11df 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.915389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.915390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.915391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.915393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.915394 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.915395 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.915396 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.915398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.915399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.926355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.926357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.926366 LLDP, length 82 [|LLDP] 17:48:55.926376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.926377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.926379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.926380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.926381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.926382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.926389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.926392 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.926393 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.926393 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.926395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.926396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.934603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.934605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.934617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.934618 LLDP, length 82 [|LLDP] 17:48:55.934627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.934629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed d74a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.934630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.934631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.934633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.934634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.934635 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.934637 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.934637 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.934639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.934639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.945628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.945630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.945638 LLDP, length 82 [|LLDP] 17:48:55.945649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.945650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.945652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.945653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.945654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.945655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.945661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.945663 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.945664 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.945665 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.953878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.953880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.953890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.953891 LLDP, length 82 [|LLDP] 17:48:55.953902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.953903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fc 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.953905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.953906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.953908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.964881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.964882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.964890 LLDP, length 82 [|LLDP] 17:48:55.964899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.964900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1204 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.964902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.964903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.964904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.964909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.975895 LLDP, length 82 [|LLDP] 17:48:55.975904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.975904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.975907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.975908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.975909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.975910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.975920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.975922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.984166 LLDP, length 82 [|LLDP] 17:48:55.984182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.984183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.984186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.984187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.984188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.984189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.984191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.984203 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.984205 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.984206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.984213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.984215 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.984216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.984217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.995165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.995167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.995175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.995177 LLDP, length 82 [|LLDP] 17:48:55.995188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.995189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121c 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.995190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.995192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.995193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.995194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.995209 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.995211 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.995212 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.995214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.995215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.006207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.006215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.006229 LLDP, length 82 [|LLDP] 17:48:56.006244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.006245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.006247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.006249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.006250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.006251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.006258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.006261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.006262 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.006263 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.006264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.006265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.014446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.014454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.014465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.014466 LLDP, length 82 [|LLDP] 17:48:56.014478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.014479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.014481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.014482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.014483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.014485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.014486 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.014487 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.014488 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.014489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.014490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.025449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.025451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.025464 LLDP, length 82 [|LLDP] 17:48:56.025476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.025477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 2410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.025478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.025480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.025481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.025482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.025488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.025490 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.025491 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.025492 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.025493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.025494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.033700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.033702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.033717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.033718 LLDP, length 82 [|LLDP] 17:48:56.033730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.033731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1239 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.033733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.033734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.033735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.033737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.033738 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.033739 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.033740 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.033741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.033742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.044723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.044725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.044733 LLDP, length 82 [|LLDP] 17:48:56.044743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.044744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1241 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.044746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.044748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.044749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.044750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.044757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.044759 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.044760 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.044761 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.055709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.055711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.055718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.055719 LLDP, length 82 [|LLDP] 17:48:56.055728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.055729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.055731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.055732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.055734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.063967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.063969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.063976 LLDP, length 82 [|LLDP] 17:48:56.063984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.063985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1250 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.063986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.063988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.063989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.063993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.074977 LLDP, length 82 [|LLDP] 17:48:56.074985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.074986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1258 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.074988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.074989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.074990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.074991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.074999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.075001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.085989 LLDP, length 82 [|LLDP] 17:48:56.086001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.086002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.086004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.086005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.086006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.086008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.086017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.086019 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.086020 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.086021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.086028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.086029 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.086031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.086032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.094244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.094246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.094258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.094259 LLDP, length 82 [|LLDP] 17:48:56.094269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.094270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.094272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.094273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.094275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.094276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.094278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.094279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.094280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.094281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.094282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.105252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.105255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.105267 LLDP, length 82 [|LLDP] 17:48:56.105275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.105276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1270 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.105278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.105279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.105281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.105282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.105287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.105289 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.105290 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.105291 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.105292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.105293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.116265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.116266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.116279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.116280 LLDP, length 82 [|LLDP] 17:48:56.116289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.116291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1278 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.116292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.116293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.116295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.116296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.116297 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.116299 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.116300 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.116301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.116303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.124521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.124523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.124535 LLDP, length 82 [|LLDP] 17:48:56.124543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.124544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.124545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.124547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.124548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.124549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.124555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.124557 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.124558 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.124559 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.124560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.124561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.135529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.135530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.135543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.135544 LLDP, length 82 [|LLDP] 17:48:56.135553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.135554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 2410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.135555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.135556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.135558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.135559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.135561 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.135562 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.135563 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.135563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.135565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.143801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.143803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.143809 LLDP, length 82 [|LLDP] 17:48:56.143817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.143818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128d 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.143820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.143821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.143822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.143823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.143829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.143831 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.143832 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.143833 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7860 packets captured 7860 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 17:48:47.467768 LLDP, length 230: dentlab-infra2 17:48:50.126935 LLDP, length 82 [|LLDP] 17:48:50.126952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.126953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.126957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.126958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.126959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.126960 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.126962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.126992 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.126995 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.126996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.127006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.127009 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.127010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.127011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.135112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.135114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.135131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.135132 LLDP, length 82 [|LLDP] 17:48:50.135147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.135149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a5 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.135151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.135153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.135154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.135155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.135156 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.135157 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.135158 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.135159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.135160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.146110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.146112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.146126 LLDP, length 82 [|LLDP] 17:48:50.146139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.146140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.146142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.146143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.146144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.146146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.146152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.146154 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.146155 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.146157 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.146158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.146159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.154372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.154374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.154382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.154383 LLDP, length 82 [|LLDP] 17:48:50.154395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.154396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.154398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.154400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.154401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.154402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.154403 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.154404 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.154405 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.154406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.154407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.165382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.165384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.165392 LLDP, length 82 [|LLDP] 17:48:50.165402 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.165402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00bc 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.165404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.165405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.165406 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.165407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.165413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.165415 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.165416 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.165417 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.165418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.165419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.176392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.176393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.176401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.176402 LLDP, length 82 [|LLDP] 17:48:50.176414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.176415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.176417 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.176418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.176419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.176420 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.176421 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.176423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.176424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.176425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.176426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.184658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.184660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.184667 LLDP, length 82 [|LLDP] 17:48:50.184678 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.184679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca f012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.184681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.184682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.184683 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.184684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.184690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.184692 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.184693 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.184694 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.195652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.195654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.195662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.195663 LLDP, length 82 [|LLDP] 17:48:50.195674 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.195675 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d3 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.195677 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.195678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.195679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.206670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.206671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.206672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.206688 LLDP, length 82 [|LLDP] 17:48:50.206698 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.206699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.206701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.206702 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.206703 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.206704 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.206705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.206713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.206715 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.206716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.206717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.214920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.214922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.214938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.214939 LLDP, length 82 [|LLDP] 17:48:50.214949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.214951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e2 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.214952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.214954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.214955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.214956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.214957 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.214959 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.214960 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.214961 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.214962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.225942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.225944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.225952 LLDP, length 82 [|LLDP] 17:48:50.225963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.225964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 7013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.225965 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.225967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.225968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.225969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.225976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.225978 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.225979 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.225980 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.225981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.225982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.234189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.234191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.234204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.234206 LLDP, length 82 [|LLDP] 17:48:50.234218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.234218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 bce6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.234220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.234221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.234223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.234224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.234225 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.234225 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.234226 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.234228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.234229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.245205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.245208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.245215 LLDP, length 82 [|LLDP] 17:48:50.245226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.245227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f9 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.245229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.245230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.245231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.245232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.245238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.245241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.245242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.245243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.245244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.245244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.256209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.256211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.256224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.256225 LLDP, length 82 [|LLDP] 17:48:50.256237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.256238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.256239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.256241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.256243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.256244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.256245 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.256246 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.256247 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.256248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.256249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.264478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.264479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.264487 LLDP, length 82 [|LLDP] 17:48:50.264497 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.264498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.264499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.264501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.264502 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.264503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.264509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.264511 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.264512 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.264513 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.275473 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.275475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.275482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.275483 LLDP, length 82 [|LLDP] 17:48:50.275495 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.275496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0110 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.275498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.275500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.275501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.286484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.286485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.286493 LLDP, length 82 [|LLDP] 17:48:50.286502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.286503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 a34c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.286504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.286505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.286506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.286510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.294742 LLDP, length 82 [|LLDP] 17:48:50.294753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.294754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.294757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.294757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.294766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.294767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.294770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.294771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.305757 LLDP, length 82 [|LLDP] 17:48:50.305767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.305768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0127 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.305771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.305772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.305773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.305774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.305775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.305786 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.305788 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.305790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.305795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.305797 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.305798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.305799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.316764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.316766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.316780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.316781 LLDP, length 82 [|LLDP] 17:48:50.316792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.316793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.316794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.316796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.316797 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.316798 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.316799 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.316800 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.316801 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.316802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.316804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.325021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.325023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.325037 LLDP, length 82 [|LLDP] 17:48:50.325049 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.325050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0136 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.325051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.325053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.325054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.325055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.325062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.325063 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.325064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.325065 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.325066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.325067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.336032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.336034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.336048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.336049 LLDP, length 82 [|LLDP] 17:48:50.336060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.336061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.336063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.336064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.336066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.336067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.336068 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.336069 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.336070 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.336071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.336072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.344297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.344299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.344313 LLDP, length 82 [|LLDP] 17:48:50.344324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.344324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.344326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.344327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.344328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.344329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.344336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.344338 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.344339 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.344340 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.344342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.344342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.355312 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.355314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.355323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.355324 LLDP, length 82 [|LLDP] 17:48:50.355335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.355336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014d 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.355338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.355339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.355341 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.355342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.355343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.355344 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.355345 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.355346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.355347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.366321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.366323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.366330 LLDP, length 82 [|LLDP] 17:48:50.366341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.366342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 89b0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.366344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.366345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.366346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.366347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.366354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.366355 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.366357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.366357 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.374564 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.374566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.374574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.374575 LLDP, length 82 [|LLDP] 17:48:50.374586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.374587 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.374589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.374591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.374592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.385574 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.385575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.385582 LLDP, length 82 [|LLDP] 17:48:50.385592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.385593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0164 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.385595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.385596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.385598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.385602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.396591 LLDP, length 82 [|LLDP] 17:48:50.396607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.396608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.396609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.396610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.396611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.396623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.396624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.396627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.396629 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.396630 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.396632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.396633 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.396634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.396635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.404850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.404851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.404865 LLDP, length 82 [|LLDP] 17:48:50.404876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.404876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.404878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.404879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.404880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.404882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.404889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.404891 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.404892 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.404893 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.404894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.404895 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.415856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.415858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.415872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.415873 LLDP, length 82 [|LLDP] 17:48:50.415885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.415887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.415888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.415889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.415891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.415892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.415893 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.415894 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.415895 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.415896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.415897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.424120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.424122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.424130 LLDP, length 82 [|LLDP] 17:48:50.424140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.424141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.424142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.424144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.424145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.424147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.424153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.424155 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.424156 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.424157 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.424158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.424159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.435122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.435123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.435137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.435138 LLDP, length 82 [|LLDP] 17:48:50.435150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.435151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018a 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.435153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.435154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.435155 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.435156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.435157 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.435158 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.435159 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.435160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.435161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.446133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.446136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.446150 LLDP, length 82 [|LLDP] 17:48:50.446161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.446162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.446164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.446165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.446166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.446167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.446174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.446176 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.446177 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.446178 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.446179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.446180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.454403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.454405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.454413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.454415 LLDP, length 82 [|LLDP] 17:48:50.454425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.454427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.454428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.454430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.454431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.454433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.454434 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.454436 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.454437 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.465404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.465405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.465414 LLDP, length 82 [|LLDP] 17:48:50.465425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.465426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a1 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.465428 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.465429 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.465430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.465435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.476413 LLDP, length 82 [|LLDP] 17:48:50.476422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.476423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.476426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.476427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.476435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.476436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.476439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.476441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.484674 LLDP, length 82 [|LLDP] 17:48:50.484683 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.484683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af d680 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.484686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.484687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.484688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.484689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.484701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.484703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.495682 LLDP, length 82 [|LLDP] 17:48:50.495703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.495704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b8 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.495706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.495707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.495708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.495716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.495718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.495720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.495721 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.495722 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.495724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.495726 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.495727 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.495728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.506703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.506704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.506713 LLDP, length 82 [|LLDP] 17:48:50.506723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.506724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 a346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.506725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.506726 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.506727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.506729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.506735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.506737 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.506738 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.506739 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.506740 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.506741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.514951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.514953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.514961 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.514962 LLDP, length 82 [|LLDP] 17:48:50.514978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.514979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.514980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.514982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.514983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.514984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.514986 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.514986 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.514988 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.514990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.514991 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.525963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.525966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.525981 LLDP, length 82 [|LLDP] 17:48:50.525990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.525991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.525993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.525994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.525995 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.525996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.526003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.526006 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.526007 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.526008 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.526009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.526010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.534217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.534218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.534234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.534235 LLDP, length 82 [|LLDP] 17:48:50.534248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.534249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.534251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.534252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.534254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.534255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.534256 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.534257 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.534258 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.534259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.534261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.545228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.545230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.545245 LLDP, length 82 [|LLDP] 17:48:50.545253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.545254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01de 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.545256 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.545257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.545258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.545259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.545266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.545267 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.545268 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.545270 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.545271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.545272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.556243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.556245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.556254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.556256 LLDP, length 82 [|LLDP] 17:48:50.556269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.556270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.556272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.556273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.556274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.556275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.556276 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.556277 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.556278 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.564487 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.564489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.564497 LLDP, length 82 [|LLDP] 17:48:50.564506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.564506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.564508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.564509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.564510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.564515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.575496 LLDP, length 82 [|LLDP] 17:48:50.575504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.575505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f5 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.575507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.575508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.575518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.575519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.575522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.575523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.586512 LLDP, length 82 [|LLDP] 17:48:50.586520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.586521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.586523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.586524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.586525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.586526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.586538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.586540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.594746 LLDP, length 82 [|LLDP] 17:48:50.594753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.594754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.594756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.594760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.605780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.605782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.605783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.605801 LLDP, length 82 [|LLDP] 17:48:50.605810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.605811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020c 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.605813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.605814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.605815 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.605817 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.605818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.605827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.605830 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.605831 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.605832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.616788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.616790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.616809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.616810 LLDP, length 82 [|LLDP] 17:48:50.616819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.616820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 a34b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.616821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.616823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.616824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.616826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.616827 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.616828 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.616829 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.616830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.616831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.625051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.625053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.625077 LLDP, length 82 [|LLDP] 17:48:50.625085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.625090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.625092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.625093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.625094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.625096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.625102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.625104 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.625105 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.625106 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.625107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.625108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.636064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.636066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.636075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.636076 LLDP, length 82 [|LLDP] 17:48:50.636085 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.636086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.636088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.636089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.636091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.636092 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.636093 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.636094 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.636095 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.636096 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.636097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.644317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.644318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.644327 LLDP, length 82 [|LLDP] 17:48:50.644335 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.644337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.644338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.644340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.644341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.644342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.644349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.644351 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.644352 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.644353 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.644354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.644355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.655335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.655337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.655355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.655356 LLDP, length 82 [|LLDP] 17:48:50.655365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.655366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0232 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.655368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.655369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.655370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.655372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.655373 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.655374 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.655375 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.655376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.655377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.666344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.666345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.666354 LLDP, length 82 [|LLDP] 17:48:50.666363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.666365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.666366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.666367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.666369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.666370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.666377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.666379 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.666380 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.666381 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.674586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.674588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.674597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.674598 LLDP, length 82 [|LLDP] 17:48:50.674607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.674609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.674610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.674612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.674613 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.685600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.685602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.685611 LLDP, length 82 [|LLDP] 17:48:50.685621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.685622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0249 2346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.685623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.685625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.685626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.685630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.696618 LLDP, length 82 [|LLDP] 17:48:50.696627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.696627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.696630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.696631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.696633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.696634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.696646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.696647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.696650 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.696651 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.696653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.696655 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.696656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.696657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.704883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.704885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.704900 LLDP, length 82 [|LLDP] 17:48:50.704911 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.704912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.704913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.704915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.704916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.704917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.704924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.704926 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.704928 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.704929 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.704930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.704931 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.715880 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.715881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.715888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.715890 LLDP, length 82 [|LLDP] 17:48:50.715900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.715901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.715902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.715903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.715905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.715906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.715907 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.715908 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.715910 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.715911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.715911 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.724132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.724134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.724147 LLDP, length 82 [|LLDP] 17:48:50.724156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.724157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0266 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.724158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.724159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.724161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.724161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.724167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.724169 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.724170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.724171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.724172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.724173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.735142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.735144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.735158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.735159 LLDP, length 82 [|LLDP] 17:48:50.735167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.735168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026e f019 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.735170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.735171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.735173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.735174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.735175 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.735176 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.735177 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.735178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.735179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.746152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.746154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.746168 LLDP, length 82 [|LLDP] 17:48:50.746178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.746179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.746181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.746182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.746183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.746184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.746191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.746192 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.746194 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.746194 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.746196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.746197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.754420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.754421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.754429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.754430 LLDP, length 82 [|LLDP] 17:48:50.754439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.754440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d a346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.754442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.754443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.754445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.754446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.754447 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.754448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.754449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.765410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.765412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.765419 LLDP, length 82 [|LLDP] 17:48:50.765428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.765429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0286 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.765431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.765432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.765433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.765437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.776429 LLDP, length 82 [|LLDP] 17:48:50.776437 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.776438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 7012 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.776440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.776442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.776443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.776452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.776453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.776456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.784686 LLDP, length 82 [|LLDP] 17:48:50.784695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.784696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 bcdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.784698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.784699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.784700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.784702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.784711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.784712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.795699 LLDP, length 82 [|LLDP] 17:48:50.795711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.795712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029d 2345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.795714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.795716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.795717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.795718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.795728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.795729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.795732 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.795733 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.795735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.795736 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.795737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.795738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.806707 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.806709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.806723 LLDP, length 82 [|LLDP] 17:48:50.806731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.806732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.806734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.806735 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.806737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.806738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.806744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.806746 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.806747 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.806748 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.806749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.806750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.814969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.814971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.814984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.814986 LLDP, length 82 [|LLDP] 17:48:50.814996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.814996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab d679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.814998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.814999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.815001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.815002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.815003 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.815005 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.815006 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.815007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.815008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.825980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.825982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.825990 LLDP, length 82 [|LLDP] 17:48:50.825998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.825999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 3cdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.826000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.826002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.826003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.826004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.826010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.826012 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.826013 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.826014 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.826015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.826016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.834233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.834235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.834249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.834250 LLDP, length 82 [|LLDP] 17:48:50.834260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.834261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ba 89ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.834263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.834264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.834266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.834267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.834268 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.834269 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.834270 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.834271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.834272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.845240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.845242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.845255 LLDP, length 82 [|LLDP] 17:48:50.845264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.845265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c2 f013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.845266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.845267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.845269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.845270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.845276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.845278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.845279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.845280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.845281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.845282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.856263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.856264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.856272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.856273 LLDP, length 82 [|LLDP] 17:48:50.856282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.856283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 5679 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.856285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.856286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.856288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.856289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.856290 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.856291 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.856293 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.864507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.864509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.864517 LLDP, length 82 [|LLDP] 17:48:50.864525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.864526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 a345 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.864528 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.864529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.864530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.864534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.875517 LLDP, length 82 [|LLDP] 17:48:50.875525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.875526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02da 09ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.875529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.875530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.875531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.875541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.875542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.875545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.886520 LLDP, length 82 [|LLDP] 17:48:50.886529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.886530 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.886532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.886533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.886534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.886535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.886545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.886547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.894812 LLDP, length 82 [|LLDP] 17:48:50.894820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.894821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.894823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.894824 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.894826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.894827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.894837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.894838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.894841 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.894842 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.894844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.894845 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.894846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.894847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.905798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.905799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.905814 LLDP, length 82 [|LLDP] 17:48:50.905822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.905823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.905825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.905826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.905827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.905829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.905835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.905837 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.905838 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.905840 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.905841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.905842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.914054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.914055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.914069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.914070 LLDP, length 82 [|LLDP] 17:48:50.914078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.914079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f7 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.914080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.914081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.914083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.914084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.914085 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.914086 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.914087 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.914088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.914089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.925065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.925067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.925081 LLDP, length 82 [|LLDP] 17:48:50.925089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.925090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ff d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.925092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.925093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.925095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.925095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.925102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.925104 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.925105 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.925106 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.925107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.925108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.936073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.936074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.936087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.936088 LLDP, length 82 [|LLDP] 17:48:50.936097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.936098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.936100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.936101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.936103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.936104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.936105 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.936106 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.936108 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.936109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.936110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.944346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.944347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.944356 LLDP, length 82 [|LLDP] 17:48:50.944365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.944366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030e 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.944368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.944369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.944370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.944371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.944378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.944380 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.944380 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.944381 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.944382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.944384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:50.955372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.955375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.955387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.955388 LLDP, length 82 [|LLDP] 17:48:50.955398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.955399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0316 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.955401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.955402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.955403 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.955405 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.955406 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.955407 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.955408 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.966372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.966374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.966385 LLDP, length 82 [|LLDP] 17:48:50.966398 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.966399 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.966401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.966402 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.966403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.966408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.974613 LLDP, length 82 [|LLDP] 17:48:50.974622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.974623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.974626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.974627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.974628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.974637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.974638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.974641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.985615 LLDP, length 82 [|LLDP] 17:48:50.985623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.985624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032e 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.985627 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.985628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.985629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.985630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.985639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.985641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.996635 LLDP, length 82 [|LLDP] 17:48:50.996647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:50.996648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:50.996651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:50.996652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:50.996653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:50.996654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.996664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:50.996665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:50.996668 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:50.996669 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.996671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:50.996672 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:50.996673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:50.996674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.004902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.004903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.004919 LLDP, length 82 [|LLDP] 17:48:51.004929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.004930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.004932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.004933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.004934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.004935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.004942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.004944 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.004945 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.004946 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.004947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.004948 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.015900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.015902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.015916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.015917 LLDP, length 82 [|LLDP] 17:48:51.015926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.015927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.015929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.015931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.015932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.015934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.015935 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.015936 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.015937 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.015938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.015940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.024156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.024158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.024178 LLDP, length 82 [|LLDP] 17:48:51.024186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.024187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034b 703b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.024188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.024189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.024191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.024192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.024198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.024200 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.024201 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.024202 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.024203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.024204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.035168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.035169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.035182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.035184 LLDP, length 82 [|LLDP] 17:48:51.035193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.035194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0353 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.035195 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.035197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.035198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.035200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.035201 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.035202 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.035203 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.035204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.035205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.046172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.046174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.046188 LLDP, length 82 [|LLDP] 17:48:51.046196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.046197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.046198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.046199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.046201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.046202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.046208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.046210 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.046211 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.046212 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.046213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.046214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.054440 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.054441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.054449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.054450 LLDP, length 82 [|LLDP] 17:48:51.054459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.054461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0362 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.054462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.054463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.054465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.054466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.054467 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.054469 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.054470 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.065435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.065437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.065445 LLDP, length 82 [|LLDP] 17:48:51.065452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.065453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036a f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.065455 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.065456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.065457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.065461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.076447 LLDP, length 82 [|LLDP] 17:48:51.076455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.076456 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 56a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.076459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.076460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.076461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.076469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.076470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.076473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.084706 LLDP, length 82 [|LLDP] 17:48:51.084714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.084715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.084718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.084718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.084719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.084720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.084729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.084731 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.095724 LLDP, length 82 [|LLDP] 17:48:51.095737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.095737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0382 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.095741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.095742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.095743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.095744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.095753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.095770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.095773 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.095774 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.095776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.095778 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.095779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.095780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.106763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.106772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.106782 LLDP, length 82 [|LLDP] 17:48:51.106797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.106798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.106800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.106801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.106803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.106804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.106812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.106814 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.106815 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.106817 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.106819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.106819 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.114997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.114999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.115013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.115014 LLDP, length 82 [|LLDP] 17:48:51.115024 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.115025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.115027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.115028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.115030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.115031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.115033 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.115034 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.115035 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.115036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.115037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.126015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.126017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.126028 LLDP, length 82 [|LLDP] 17:48:51.126040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.126041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.126043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.126043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.126045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.126046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.126053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.126055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.126056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.126058 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.126059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.126059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.134262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.134264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.134272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.134273 LLDP, length 82 [|LLDP] 17:48:51.134283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.134284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.134286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.134287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.134289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.134291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.134292 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.134292 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.134294 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.134295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.134296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.145263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.145264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.145279 LLDP, length 82 [|LLDP] 17:48:51.145287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.145289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a7 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.145290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.145292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.145293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.145294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.145300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.145302 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.145303 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.145304 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.145305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.145306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.156283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.156284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.156292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.156293 LLDP, length 82 [|LLDP] 17:48:51.156302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.156303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 3d00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.156305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.156306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.156308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.156309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.156310 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.156311 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.156312 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.164529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.164531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.164538 LLDP, length 82 [|LLDP] 17:48:51.164547 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.164548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b6 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.164549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.164551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.164552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.164556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.175536 LLDP, length 82 [|LLDP] 17:48:51.175543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.175544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03be f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.175546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.175547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.175549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.175557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.175558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.175561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.186540 LLDP, length 82 [|LLDP] 17:48:51.186548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.186548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.186551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.186552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.186553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.186554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.186563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.186564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.194813 LLDP, length 82 [|LLDP] 17:48:51.194825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.194826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.194828 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.194830 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.194831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.194832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.194842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.194843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.194845 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.194847 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.194848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.194850 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.194850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.194851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.205818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.205820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.205828 LLDP, length 82 [|LLDP] 17:48:51.205837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.205837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.205839 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.205840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.205841 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.205842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.205848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.205850 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.205851 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.205852 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.205853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.205854 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.214078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.214079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.214093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.214094 LLDP, length 82 [|LLDP] 17:48:51.214103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.214104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03dc 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.214106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.214107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.214108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.214110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.214111 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.214112 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.214113 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.214114 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.214115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.225086 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.225088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.225101 LLDP, length 82 [|LLDP] 17:48:51.225109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.225110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e4 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.225111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.225112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.225113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.225114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.225120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.225123 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.225123 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.225125 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.225126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.225127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.236096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.236097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.236111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.236112 LLDP, length 82 [|LLDP] 17:48:51.236120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.236121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.236123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.236124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.236126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.236127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.236128 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.236129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.236130 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.236131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.236132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.244353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.244354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.244368 LLDP, length 82 [|LLDP] 17:48:51.244375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.244376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f3 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.244378 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.244379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.244380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.244382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.244387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.244389 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.244390 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.244391 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.244392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.244393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.255371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.255373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.255380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.255381 LLDP, length 82 [|LLDP] 17:48:51.255390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.255391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fb d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.255392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.255394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.255395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.255397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.255398 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.255399 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.255400 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.266371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.266373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.266380 LLDP, length 82 [|LLDP] 17:48:51.266389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.266390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.266391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.266392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.266393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.266397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.274626 LLDP, length 82 [|LLDP] 17:48:51.274634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.274635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040a 89d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.274637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.274638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.274639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.274647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.274648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.274650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.285639 LLDP, length 82 [|LLDP] 17:48:51.285648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.285648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0412 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.285651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.285652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.285653 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.285655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.285663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.285665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.296655 LLDP, length 82 [|LLDP] 17:48:51.296666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.296667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.296669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.296670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.296671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.296673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.296682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.296683 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.296686 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.296687 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.296688 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.296690 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.296691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.296692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.304907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.304909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.304922 LLDP, length 82 [|LLDP] 17:48:51.304930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.304931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.304933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.304934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.304935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.304936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.304943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.304944 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.304945 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.304947 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.304948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.304949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.315916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.315918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.315931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.315933 LLDP, length 82 [|LLDP] 17:48:51.315941 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.315942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.315944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.315946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.315947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.315948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.315949 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.315950 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.315951 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.315953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.315954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.324186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.324188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.324196 LLDP, length 82 [|LLDP] 17:48:51.324203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.324204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0430 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.324206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.324207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.324208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.324209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.324215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.324218 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.324219 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.324220 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.324221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.324222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.335184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.335186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.335201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.335202 LLDP, length 82 [|LLDP] 17:48:51.335211 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.335212 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0438 bd00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.335213 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.335215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.335216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.335218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.335219 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.335220 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.335221 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.335222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.335223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.346209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.346210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.346226 LLDP, length 82 [|LLDP] 17:48:51.346237 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.346238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.346240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.346241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.346242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.346243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.346250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.346251 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.346252 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.346254 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.346255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.346256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.354463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.354464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.354473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.354475 LLDP, length 82 [|LLDP] 17:48:51.354485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.354486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0447 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.354487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.354489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.354491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.354492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.354493 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.354494 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.354495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.365461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.365463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.365470 LLDP, length 82 [|LLDP] 17:48:51.365479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.365480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044f d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.365481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.365483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.365484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.365489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.376473 LLDP, length 82 [|LLDP] 17:48:51.376482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.376482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.376485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.376486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.376487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.376495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.376496 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.376499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.384727 LLDP, length 82 [|LLDP] 17:48:51.384735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.384735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045e 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.384738 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.384739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.384740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.384741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.384750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.384751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.395744 LLDP, length 82 [|LLDP] 17:48:51.395757 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.395758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0466 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.395760 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.395762 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.395763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.395764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.395773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.395774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.395777 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.395778 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.395780 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.395782 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.395783 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.395783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.406751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.406753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.406766 LLDP, length 82 [|LLDP] 17:48:51.406774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.406775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.406777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.406778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.406779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.406780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.406787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.406789 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.406790 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.406791 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.406792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.406793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.415017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.415019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.415028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.415029 LLDP, length 82 [|LLDP] 17:48:51.415037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.415038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.415040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.415041 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.415042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.415044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.415045 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.415046 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.415046 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.415048 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.415048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.426019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.426021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.426035 LLDP, length 82 [|LLDP] 17:48:51.426044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.426045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.426047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.426048 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.426049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.426050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.426057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.426059 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.426060 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.426062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.426063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.426064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.434277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.434279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.434292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.434294 LLDP, length 82 [|LLDP] 17:48:51.434302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.434303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0484 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.434305 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.434306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.434307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.434309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.434310 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.434311 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.434312 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.434313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.434314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.445288 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.445289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.445306 LLDP, length 82 [|LLDP] 17:48:51.445316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.445316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048c bd07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.445318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.445319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.445321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.445322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.445328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.445330 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.445331 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.445332 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.445333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.445334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.456306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.456308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.456315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.456316 LLDP, length 82 [|LLDP] 17:48:51.456325 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.456326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.456328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.456329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.456331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.456332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.456333 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.456334 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.456335 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.464563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.464564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.464575 LLDP, length 82 [|LLDP] 17:48:51.464587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.464588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049b 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.464589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.464590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.464591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.464596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.475567 LLDP, length 82 [|LLDP] 17:48:51.475578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.475579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a3 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.475582 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.475583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.475584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.475595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.475596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.475599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.486571 LLDP, length 82 [|LLDP] 17:48:51.486580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.486581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 3d00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.486583 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.486584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.486585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.486587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.486595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.486597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.494836 LLDP, length 82 [|LLDP] 17:48:51.494850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.494850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b2 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.494853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.494854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.494855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.494857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.494866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.494868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.494870 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.494871 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.494873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.494874 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.494875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.494876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.505842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.505844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.505857 LLDP, length 82 [|LLDP] 17:48:51.505867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.505868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.505869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.505871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.505872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.505873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.505879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.505881 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.505882 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.505883 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.505884 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.505885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.514099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.514101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.514115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.514116 LLDP, length 82 [|LLDP] 17:48:51.514126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.514127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c1 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.514129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.514130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.514132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.514133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.514134 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.514135 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.514136 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.514137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.514138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.525126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.525129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.525138 LLDP, length 82 [|LLDP] 17:48:51.525149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.525150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c9 a36a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.525152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.525153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.525154 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.525155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.525162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.525164 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.525165 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.525166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.525167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.525168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.536133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.536135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.536144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.536145 LLDP, length 82 [|LLDP] 17:48:51.536155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.536156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.536158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.536159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.536161 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.536162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.536163 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.536164 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.536166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.536167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.536168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.544386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.544388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.544397 LLDP, length 82 [|LLDP] 17:48:51.544407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.544408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d8 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.544409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.544411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.544412 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.544413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.544419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.544421 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.544423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.544424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.544425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.544427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.555415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.555417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.555426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.555428 LLDP, length 82 [|LLDP] 17:48:51.555438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.555439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e0 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.555441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.555442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.555444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.555445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.555446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.555448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.555448 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.566407 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.566409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.566419 LLDP, length 82 [|LLDP] 17:48:51.566430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.566431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.566432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.566434 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.566435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.566440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.574659 LLDP, length 82 [|LLDP] 17:48:51.574668 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.574669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ef 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.574671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.574673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.574674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.574686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.574687 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.574691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.585680 LLDP, length 82 [|LLDP] 17:48:51.585688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.585689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f7 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.585692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.585692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.585693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.585695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.585705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.585706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.596682 LLDP, length 82 [|LLDP] 17:48:51.596691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.596692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.596694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.596696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.596697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.596698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.596708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.596710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.596712 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.596714 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.596715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.596716 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.596717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.596718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.604931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.604932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.604946 LLDP, length 82 [|LLDP] 17:48:51.604954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.604955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0506 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.604956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.604958 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.604959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.604960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.604966 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.604968 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.604969 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.604970 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.604971 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.604972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.615944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.615946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.615960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.615961 LLDP, length 82 [|LLDP] 17:48:51.615970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.615972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.615974 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.615975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.615976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.615977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.615978 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.615979 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.615980 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.615981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.615982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.624203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.624204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.624218 LLDP, length 82 [|LLDP] 17:48:51.624227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.624228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0515 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.624229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.624230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.624232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.624233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.624239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.624241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.624242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.624243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.624244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.624245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.635205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.635207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.635220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.635221 LLDP, length 82 [|LLDP] 17:48:51.635230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.635231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051d a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.635232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.635234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.635235 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.635236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.635237 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.635238 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.635239 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.635240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.635241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.646222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.646223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.646237 LLDP, length 82 [|LLDP] 17:48:51.646246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.646247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.646249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.646250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.646251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.646253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.646259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.646261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.646263 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.646264 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.646265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.646266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.654490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.654492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.654500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.654501 LLDP, length 82 [|LLDP] 17:48:51.654510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.654511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052c 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.654513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.654514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.654515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.654516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.654517 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.654518 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.654519 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.665486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.665488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.665497 LLDP, length 82 [|LLDP] 17:48:51.665506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.665507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0534 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.665512 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.665513 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.665514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.665518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.676499 LLDP, length 82 [|LLDP] 17:48:51.676509 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.676510 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.676513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.676514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.676515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.676527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.676528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.676531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.684752 LLDP, length 82 [|LLDP] 17:48:51.684760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.684761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0543 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.684763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.684764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.684765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.684766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.684776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.684777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.695767 LLDP, length 82 [|LLDP] 17:48:51.695779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.695780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b d6a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.695783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.695784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.695785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.695787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.695796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.695797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.695799 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.695801 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.695802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.695804 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.695805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.695806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.704018 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.704019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.704032 LLDP, length 82 [|LLDP] 17:48:51.704041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.704042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0552 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.704043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.704045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.704046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.704047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.704053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.704055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.704057 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.704058 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.704059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.704060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.715029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.715031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.715045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.715047 LLDP, length 82 [|LLDP] 17:48:51.715056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.715057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055a 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.715059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.715060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.715061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.715063 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.715064 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.715065 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.715066 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.715067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.715068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.726042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.726043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.726057 LLDP, length 82 [|LLDP] 17:48:51.726066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.726067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.726069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.726070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.726071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.726072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.726078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.726080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.726081 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.726082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.726083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.726084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.734304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.734305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.734319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.734320 LLDP, length 82 [|LLDP] 17:48:51.734329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.734329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0569 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.734331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.734332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.734334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.734336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.734337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.734337 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.734338 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.734339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.734341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.745308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.745309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.745321 LLDP, length 82 [|LLDP] 17:48:51.745329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.745330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0571 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.745332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.745333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.745334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.745335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.745341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.745343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.745345 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.745346 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.745348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.745349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.756330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.756331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.756338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.756339 LLDP, length 82 [|LLDP] 17:48:51.756347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.756348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.756350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.756352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.756353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.756354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.756356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.756356 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.756358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.764573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.764575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.764582 LLDP, length 82 [|LLDP] 17:48:51.764590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.764591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0580 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.764593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.764594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.764595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.764599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.775583 LLDP, length 82 [|LLDP] 17:48:51.775591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.775592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0588 bd05 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.775594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.775595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.775596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.775604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.775605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.775608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.786603 LLDP, length 82 [|LLDP] 17:48:51.786613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.786614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.786617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.786618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.786619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.786621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.786633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.786634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.794859 LLDP, length 82 [|LLDP] 17:48:51.794867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.794868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0597 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.794870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.794871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.794873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.794874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.794884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.794885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.794888 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.794889 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.794891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.794892 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.794893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.794894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.805866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.805868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.805875 LLDP, length 82 [|LLDP] 17:48:51.805884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.805886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.805887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.805888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.805890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.805891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.805898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.805900 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.805900 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.805902 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.805903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.805903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.814120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.814122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.814135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.814136 LLDP, length 82 [|LLDP] 17:48:51.814144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.814145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a6 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.814147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.814148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.814150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.814151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.814152 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.814153 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.814154 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.814155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.814156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.825128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.825129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.825142 LLDP, length 82 [|LLDP] 17:48:51.825152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.825153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ae 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.825154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.825156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.825157 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.825158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.825165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.825166 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.825167 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.825168 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.825169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.825170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.836142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.836144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.836158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.836159 LLDP, length 82 [|LLDP] 17:48:51.836167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.836168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.836170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.836171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.836172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.836174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.836174 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.836175 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.836176 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.836177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.836178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.844403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.844405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.844418 LLDP, length 82 [|LLDP] 17:48:51.844427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.844428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bd 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.844430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.844431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.844432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.844433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.844440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.844442 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.844443 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.844444 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.844445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.844446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.855409 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.855410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.855417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.855418 LLDP, length 82 [|LLDP] 17:48:51.855426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.855427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c5 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.855429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.855430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.855432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.855433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.855434 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.855435 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.855436 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.866417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.866418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.866425 LLDP, length 82 [|LLDP] 17:48:51.866433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.866434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.866435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.866436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.866438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.866442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.874672 LLDP, length 82 [|LLDP] 17:48:51.874680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.874680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d4 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.874683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.874684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.874686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.874694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.874695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.874698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.885683 LLDP, length 82 [|LLDP] 17:48:51.885691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.885692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05dc bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.885695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.885696 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.885697 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.885698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.885707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.885709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.896696 LLDP, length 82 [|LLDP] 17:48:51.896709 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.896710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 2367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.896713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.896714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.896715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.896717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.896726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.896728 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.896731 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.896732 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.896734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.896735 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.896736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.896737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.904952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.904955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.904968 LLDP, length 82 [|LLDP] 17:48:51.904977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.904978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05eb 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.904980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.904981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.904982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.904983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.904989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.904991 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.904992 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.904993 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.904994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.904995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.915969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.915970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.915977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.915978 LLDP, length 82 [|LLDP] 17:48:51.915988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.915989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.915991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.915992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.915993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.915995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.915996 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.915997 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.915998 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.915999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.916000 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.924227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.924229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.924236 LLDP, length 82 [|LLDP] 17:48:51.924245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.924247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fa 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.924248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.924249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.924251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.924252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.924259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.924261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.924262 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.924263 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.924264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.924265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.935229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.935231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.935244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.935245 LLDP, length 82 [|LLDP] 17:48:51.935256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.935257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0602 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.935258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.935259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.935261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.935263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.935264 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.935265 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.935265 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.935266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.935268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.946238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.946239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.946251 LLDP, length 82 [|LLDP] 17:48:51.946260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.946261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f03a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.946263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.946264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.946265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.946266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.946272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.946274 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.946275 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.946276 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.946277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.946278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:51.954510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.954512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.954519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.954520 LLDP, length 82 [|LLDP] 17:48:51.954528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.954529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0611 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.954531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.954532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.954533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.954535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.954536 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.954537 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.954538 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.965504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.965506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.965513 LLDP, length 82 [|LLDP] 17:48:51.965521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.965522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0619 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.965524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.965525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.965526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.965531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.976507 LLDP, length 82 [|LLDP] 17:48:51.976515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.976516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.976518 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.976519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.976520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.976528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.976529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.976532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.984771 LLDP, length 82 [|LLDP] 17:48:51.984779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.984780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0628 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.984783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.984784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.984785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.984786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.984795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.984797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.995785 LLDP, length 82 [|LLDP] 17:48:51.995797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:51.995798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:51.995801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:51.995802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:51.995803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:51.995804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.995814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:51.995816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:51.995818 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:51.995819 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.995821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:51.995822 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:51.995824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:51.995825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.004042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.004044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.004058 LLDP, length 82 [|LLDP] 17:48:52.004066 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.004067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0637 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.004068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.004069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.004071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.004072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.004078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.004080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.004081 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.004082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.004083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.004084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.015051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.015053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.015066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.015067 LLDP, length 82 [|LLDP] 17:48:52.015076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.015077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.015079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.015080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.015082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.015083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.015084 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.015085 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.015086 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.015087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.015088 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.026062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.026063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.026077 LLDP, length 82 [|LLDP] 17:48:52.026086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.026087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 d69c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.026089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.026090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.026091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.026093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.026099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.026101 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.026102 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.026103 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.026104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.026105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.034321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.034322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.034338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.034339 LLDP, length 82 [|LLDP] 17:48:52.034348 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.034349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064e 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.034351 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.034352 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.034353 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.034355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.034356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.034357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.034358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.034359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.034360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.045330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.045331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.045346 LLDP, length 82 [|LLDP] 17:48:52.045354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.045355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0656 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.045356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.045358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.045359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.045360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.045367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.045368 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.045369 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.045371 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.045371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.045373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.056348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.056350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.056357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.056358 LLDP, length 82 [|LLDP] 17:48:52.056367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.056368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.056370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.056371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.056372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.056374 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.056375 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.056376 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.056377 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.064594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.064595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.064604 LLDP, length 82 [|LLDP] 17:48:52.064613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.064614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0665 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.064615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.064617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.064618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.064622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.075602 LLDP, length 82 [|LLDP] 17:48:52.075623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.075625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066d a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.075628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.075629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.075631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.075639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.075641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.075645 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.086641 LLDP, length 82 [|LLDP] 17:48:52.086655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.086656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.086657 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.086659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.086660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.086661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.086680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.086683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.094893 LLDP, length 82 [|LLDP] 17:48:52.094913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.094914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067c 569a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.094917 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.094918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.094919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.094920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.094935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.094936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.094940 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.094941 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.094943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.094945 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.094946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.094947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.105888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.105889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.105903 LLDP, length 82 [|LLDP] 17:48:52.105913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.105914 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.105916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.105917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.105918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.105919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.105926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.105928 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.105929 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.105930 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.105931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.105932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.114143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.114144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.114158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.114159 LLDP, length 82 [|LLDP] 17:48:52.114167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.114169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068b 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.114170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.114171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.114174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.114175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.114176 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.114177 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.114178 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.114179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.114180 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.125151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.125152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.125166 LLDP, length 82 [|LLDP] 17:48:52.125175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.125176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0693 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.125178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.125179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.125181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.125182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.125188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.125190 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.125191 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.125192 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.125193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.125194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.136159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.136161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.136175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.136176 LLDP, length 82 [|LLDP] 17:48:52.136185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.136186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.136188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.136189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.136191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.136192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.136193 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.136194 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.136195 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.136196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.136197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.144418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.144420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.144433 LLDP, length 82 [|LLDP] 17:48:52.144442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.144443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a2 236e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.144445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.144446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.144447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.144448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.144454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.144456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.144457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.144458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.144459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.144460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.155438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.155440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.155447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.155448 LLDP, length 82 [|LLDP] 17:48:52.155457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.155458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06aa 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.155460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.155461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.155463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.155464 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.155465 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.155465 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.155466 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.166431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.166433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.166441 LLDP, length 82 [|LLDP] 17:48:52.166449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.166449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.166451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.166453 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.166454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.166458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.174693 LLDP, length 82 [|LLDP] 17:48:52.174700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.174701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b9 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.174703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.174704 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.174705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.174714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.174715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.174718 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.185705 LLDP, length 82 [|LLDP] 17:48:52.185713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.185714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.185717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.185718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.185719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.185720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.185728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.185730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.193965 LLDP, length 82 [|LLDP] 17:48:52.193977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.193977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.193980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.193981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.193983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.193984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.193994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.193995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.193998 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.193999 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.194000 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.194002 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.194003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.194004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.204973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.204975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.204988 LLDP, length 82 [|LLDP] 17:48:52.204996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.204997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d0 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.204998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.205000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.205001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.205002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.205009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.205011 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.205012 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.205012 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.205013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.205014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.215989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.215990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.215998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.215999 LLDP, length 82 [|LLDP] 17:48:52.216008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.216009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.216011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.216012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.216013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.216015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.216016 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.216017 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.216018 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.216019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.216020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.224243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.224244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.224251 LLDP, length 82 [|LLDP] 17:48:52.224260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.224261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06df 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.224262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.224263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.224265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.224266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.224272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.224274 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.224275 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.224276 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.224277 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.224278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.235256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.235258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.235265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.235267 LLDP, length 82 [|LLDP] 17:48:52.235276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.235276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e7 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.235278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.235279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.235281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.235282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.235283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.235284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.235285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.235286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.235288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.246262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.246263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.246271 LLDP, length 82 [|LLDP] 17:48:52.246280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.246281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.246282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.246283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.246285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.246286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.246292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.246294 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.246294 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.246295 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.246296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.246297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.254532 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.254534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.254541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.254542 LLDP, length 82 [|LLDP] 17:48:52.254550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.254551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f6 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.254553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.254554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.254556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.254557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.254558 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.254559 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.254560 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.265523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.265524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.265532 LLDP, length 82 [|LLDP] 17:48:52.265540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.265540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fe 89ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.265542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.265543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.265545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.265548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.276536 LLDP, length 82 [|LLDP] 17:48:52.276544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.276545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.276548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.276549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.276551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.276559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.276560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.276563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.284791 LLDP, length 82 [|LLDP] 17:48:52.284798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.284799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070d 3d01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.284802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.284802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.284804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.284805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.284814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.284815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.295810 LLDP, length 82 [|LLDP] 17:48:52.295821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.295822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.295825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.295826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.295827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.295828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.295838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.295840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.295843 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.295844 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.295845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.295847 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.295848 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.295849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.304062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.304064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.304078 LLDP, length 82 [|LLDP] 17:48:52.304086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.304087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.304089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.304090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.304092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.304093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.304099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.304101 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.304102 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.304103 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.304104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.304105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.315073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.315075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.315088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.315090 LLDP, length 82 [|LLDP] 17:48:52.315099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.315100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0724 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.315101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.315102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.315104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.315105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.315106 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.315107 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.315109 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.315110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.315110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.326083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.326085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.326099 LLDP, length 82 [|LLDP] 17:48:52.326107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.326108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.326110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.326111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.326112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.326113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.326119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.326121 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.326122 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.326123 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.326124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.326125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.334337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.334339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.334352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.334353 LLDP, length 82 [|LLDP] 17:48:52.334363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.334364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0733 09cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.334365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.334367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.334368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.334370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.334371 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.334372 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.334373 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.334374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.334375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.345351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.345352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.345359 LLDP, length 82 [|LLDP] 17:48:52.345367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.345369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073b 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.345370 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.345371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.345373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.345374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.345380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.345382 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.345383 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.345384 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.345385 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.345386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.356372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.356374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.356381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.356382 LLDP, length 82 [|LLDP] 17:48:52.356391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.356392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 d69b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.356393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.356395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.356396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.356398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.356399 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.356400 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.356401 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.364614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.364615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.364623 LLDP, length 82 [|LLDP] 17:48:52.364631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.364632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074a 2368 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.364634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.364635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.364636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.364640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.375624 LLDP, length 82 [|LLDP] 17:48:52.375631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.375632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0752 89cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.375635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.375636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.375637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.375646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.375647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.375650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.386647 LLDP, length 82 [|LLDP] 17:48:52.386656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.386657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.386660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.386662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.386663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.386664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.386676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.386678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.394906 LLDP, length 82 [|LLDP] 17:48:52.394915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.394916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0761 3d08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.394919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.394920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.394921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.394922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.394932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.394933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.394936 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.394937 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.394939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.394940 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.394941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.394942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.405909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.405910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.405917 LLDP, length 82 [|LLDP] 17:48:52.405925 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.405926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 a367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.405928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.405929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.405931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.405932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.405938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.405940 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.405942 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.405942 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.405943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.405944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.414165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.414167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.414181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.414182 LLDP, length 82 [|LLDP] 17:48:52.414191 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.414192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f f035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.414194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.414195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.414196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.414198 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.414199 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.414200 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.414201 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.414202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.414202 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.425174 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.425176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.425189 LLDP, length 82 [|LLDP] 17:48:52.425198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.425199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0778 569b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.425200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.425201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.425203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.425204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.425210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.425212 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.425213 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.425214 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.425215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.425216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.436182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.436184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.436198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.436200 LLDP, length 82 [|LLDP] 17:48:52.436209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.436209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 bd01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.436211 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.436213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.436214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.436215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.436216 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.436217 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.436219 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.436220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.436221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.444443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.444444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.444457 LLDP, length 82 [|LLDP] 17:48:52.444466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.444467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0787 09ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.444468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.444469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.444471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.444472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.444478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.444481 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.444482 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.444483 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.444484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.444485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.455460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.455461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.455469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.455470 LLDP, length 82 [|LLDP] 17:48:52.455480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.455481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078f 7034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.455483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.455484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.455486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.455487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.455488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.455489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.455490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.466452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.466453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.466461 LLDP, length 82 [|LLDP] 17:48:52.466470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.466471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 d69a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.466473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.466473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.466474 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.466478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.474719 LLDP, length 82 [|LLDP] 17:48:52.474727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.474728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079e 2389 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.474730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.474732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.474733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.474742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.474743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.474746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.485729 LLDP, length 82 [|LLDP] 17:48:52.485736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.485737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 89f7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.485740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.485741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.485742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.485744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.485753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.485755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.493990 LLDP, length 82 [|LLDP] 17:48:52.494002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.494002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac d6bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.494006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.494006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.494007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.494008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.494018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.494020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.494022 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.494023 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.494025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.494027 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.494028 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.494029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.504994 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.504995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.505009 LLDP, length 82 [|LLDP] 17:48:52.505017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.505018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b5 3d23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.505020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.505021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.505022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.505023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.505029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.505032 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.505033 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.505034 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.505035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.505036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.516007 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.516008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.516021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.516022 LLDP, length 82 [|LLDP] 17:48:52.516031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.516032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd a389 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.516034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.516035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.516037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.516038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.516039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.516040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.516041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.516043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.516044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.524265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.524267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.524274 LLDP, length 82 [|LLDP] 17:48:52.524289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.524290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 f056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.524291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.524293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.524294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.524295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.524301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.524303 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.524305 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.524306 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.524307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.524307 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.535273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.535274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.535289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.535290 LLDP, length 82 [|LLDP] 17:48:52.535300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.535301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cc 56bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.535311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.535312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.535314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.535316 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.535317 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.535318 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.535319 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.535320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.535321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.546285 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.546287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.546301 LLDP, length 82 [|LLDP] 17:48:52.546310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.546311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 bd22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.546313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.546314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.546315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.546317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.546322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.546325 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.546326 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.546326 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.546328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.546329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.554551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.554552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.554559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.554561 LLDP, length 82 [|LLDP] 17:48:52.554571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.554572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07db 09f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.554574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.554575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.554577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.554578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.554579 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.554580 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.554581 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.565549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.565550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.565558 LLDP, length 82 [|LLDP] 17:48:52.565567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.565568 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e3 7056 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.565569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.565571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.565572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.565576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.576558 LLDP, length 82 [|LLDP] 17:48:52.576566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.576566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb d6bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.576569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.576570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.576571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.576579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.576581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.576584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.584815 LLDP, length 82 [|LLDP] 17:48:52.584822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.584823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f2 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.584825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.584827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.584828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.584829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.584838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.584839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.595835 LLDP, length 82 [|LLDP] 17:48:52.595847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.595848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.595851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.595852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.595853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.595854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.595864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.595866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.595868 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.595870 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.595871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.595873 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.595874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.595875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.604092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.604094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.604108 LLDP, length 82 [|LLDP] 17:48:52.604116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.604117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.604119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.604120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.604122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.604123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.604129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.604132 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.604133 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.604134 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.604135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.604136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.615095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.615097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.615112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.615113 LLDP, length 82 [|LLDP] 17:48:52.615121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.615122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0809 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.615124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.615125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.615127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.615128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.615129 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.615130 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.615131 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.615132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.615133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.626111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.626113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.626127 LLDP, length 82 [|LLDP] 17:48:52.626136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.626136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.626138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.626151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.626152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.626153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.626160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.626162 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.626163 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.626164 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.626165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.626170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.634365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.634367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.634380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.634381 LLDP, length 82 [|LLDP] 17:48:52.634390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.634391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.634392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.634394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.634395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.634396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.634398 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.634399 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.634400 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.634402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.634403 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.648920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.648922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.648930 LLDP, length 82 [|LLDP] 17:48:52.648938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.648939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0820 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.648941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.648942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.648943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.648944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.648950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.648952 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.648953 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.648954 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.648955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.648957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.656398 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.656399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.656407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.656408 LLDP, length 82 [|LLDP] 17:48:52.656416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.656417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 bd47 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.656419 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.656420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.656421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.656423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.656424 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.656425 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.656426 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.664643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.664645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.664654 LLDP, length 82 [|LLDP] 17:48:52.664662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.664670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082f 0a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.664672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.664673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.664675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.664679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.675668 LLDP, length 82 [|LLDP] 17:48:52.675679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.675680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0837 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.675683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.675684 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.675685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.675700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.675701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.675705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.686668 LLDP, length 82 [|LLDP] 17:48:52.686676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.686677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.686679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.686680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.686682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.686683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.686695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.686697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.694942 LLDP, length 82 [|LLDP] 17:48:52.694951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.694952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0846 23aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.694955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.694956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.694957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.694958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.694979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.694980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.694983 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.694984 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.694986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.694987 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.694989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.694989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.709594 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.709596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.709605 LLDP, length 82 [|LLDP] 17:48:52.709614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.709615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.709617 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.709618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.709620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.709621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.709627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.709633 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.709634 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.709635 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.709636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.709638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.714202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.714204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.714227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.714228 LLDP, length 82 [|LLDP] 17:48:52.714239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.714240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 d6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.714242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.714243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.714245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.714246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.714248 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.714249 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.714250 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.714251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.714252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.725210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.725212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.725220 LLDP, length 82 [|LLDP] 17:48:52.725231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.725232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085d 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.725234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.725235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.725237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.725238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.725245 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.725246 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.725247 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.725249 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.725250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.725251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.736216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.736218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.736232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.736233 LLDP, length 82 [|LLDP] 17:48:52.736244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.736245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 a3aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.736246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.736247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.736249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.736250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.736251 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.736252 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.736253 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.736254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.736256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.744469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.744471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.744485 LLDP, length 82 [|LLDP] 17:48:52.744494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.744495 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b f077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.744496 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.744497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.744499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.744500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.744506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.744508 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.744509 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.744510 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.744511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.744512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.755492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.755494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.755502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.755503 LLDP, length 82 [|LLDP] 17:48:52.755515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.755516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0874 56de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.755517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.755519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.755520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.755521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.755523 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.755524 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.755525 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.770232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.770234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.770244 LLDP, length 82 [|LLDP] 17:48:52.770255 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.770256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.770257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.770259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.770260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.770265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.774741 LLDP, length 82 [|LLDP] 17:48:52.774749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.774750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0883 0a18 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.774753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.774754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.774755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.774765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.774766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.774769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.785755 LLDP, length 82 [|LLDP] 17:48:52.785764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.785764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 7078 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.785767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.785768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.785769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.785770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.785781 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.785782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.794017 LLDP, length 82 [|LLDP] 17:48:52.794025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.794026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 bd44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.794029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.794030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.794031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.794032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.794043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.794045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.794047 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.794049 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.794050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.794051 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.794053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.794054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.805020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.805021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.805036 LLDP, length 82 [|LLDP] 17:48:52.805045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.805046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089a 23ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.805048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.805049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.805050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.805051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.805058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.805060 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.805061 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.805062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.805063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.805064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.816029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.816031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.816045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.816046 LLDP, length 82 [|LLDP] 17:48:52.816055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.816056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 8a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.816058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.816059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.816060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.816062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.816063 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.816064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.816065 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.816066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.816068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.824301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.824303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.824312 LLDP, length 82 [|LLDP] 17:48:52.824323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.824324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 d6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.824326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.824327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.824329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.824330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.824337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.824339 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.824340 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.824341 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.824342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.824343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.835298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.835300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.835319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.835320 LLDP, length 82 [|LLDP] 17:48:52.835329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.835330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b1 3d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.835332 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.835333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.835335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.835336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.835337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.835338 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.835340 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.835341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.835342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.846308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.846309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.846322 LLDP, length 82 [|LLDP] 17:48:52.846332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.846333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 a3ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.846334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.846335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.846336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.846338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.846344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.846346 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.846348 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.846348 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.846349 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.846350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.854569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.854571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.854577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.854578 LLDP, length 82 [|LLDP] 17:48:52.854588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.854588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.854590 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.854592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.854593 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.854595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.854596 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.854597 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.854597 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.865572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.865573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.865581 LLDP, length 82 [|LLDP] 17:48:52.865590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.865590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c8 5706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.865592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.865594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.865595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.865599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.876582 LLDP, length 82 [|LLDP] 17:48:52.876589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.876590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.876593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.876593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.876595 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.876603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.876605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.876608 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.884839 LLDP, length 82 [|LLDP] 17:48:52.884847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.884848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d7 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.884850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.884851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.884853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.884854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.884862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.884864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.895858 LLDP, length 82 [|LLDP] 17:48:52.895866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.895867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.895869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.895870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.895871 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.895872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.895882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.895884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.895886 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.895887 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.895889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.895890 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.895891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.895893 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.904113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.904115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.904130 LLDP, length 82 [|LLDP] 17:48:52.904139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.904140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.904141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.904142 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.904144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.904145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.904151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.904153 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.904154 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.904155 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.904156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.904157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.915121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.915122 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.915137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.915139 LLDP, length 82 [|LLDP] 17:48:52.915149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.915150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ee 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.915151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.915152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.915154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.915155 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.915156 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.915157 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.915159 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.915160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.915161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.926128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.926130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.926144 LLDP, length 82 [|LLDP] 17:48:52.926153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.926154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.926156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.926157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.926158 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.926159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.926165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.926167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.926168 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.926169 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.926170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.926171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.934387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.934389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.934403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.934404 LLDP, length 82 [|LLDP] 17:48:52.934414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.934415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.934417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.934418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.934420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.934421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.934422 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.934423 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.934424 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.934425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.934426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.945397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.945398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.945412 LLDP, length 82 [|LLDP] 17:48:52.945422 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.945423 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0905 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.945424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.945425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.945427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.945428 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.945434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.945436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.945437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.945438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.945439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.945440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:52.956418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.956420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.956427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.956428 LLDP, length 82 [|LLDP] 17:48:52.956438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.956439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.956441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.956442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.956443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.956445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.956446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.956447 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.956448 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.964659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.964660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.964667 LLDP, length 82 [|LLDP] 17:48:52.964676 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.964677 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.964679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.964680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.964681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.964686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.975669 LLDP, length 82 [|LLDP] 17:48:52.975677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.975678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.975681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.975682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.975683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.975692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.975693 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.975696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.983929 LLDP, length 82 [|LLDP] 17:48:52.983937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.983938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.983941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.983942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.983943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.983944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.983953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.983955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.994944 LLDP, length 82 [|LLDP] 17:48:52.994957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:52.994957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:52.994960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:52.994961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:52.994962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:52.994963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.994973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:52.994974 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:52.994977 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:52.994978 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.994980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:52.994981 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:52.994982 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:52.994983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.005949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.005951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.005964 LLDP, length 82 [|LLDP] 17:48:53.005972 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.005973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.005975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.005976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.005977 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.005979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.005985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.005987 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.005988 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.005990 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.005991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.005992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.014210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.014212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.014219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.014220 LLDP, length 82 [|LLDP] 17:48:53.014229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.014230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.014232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.014233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.014234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.014236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.014237 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.014238 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.014239 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.014240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.014241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.025219 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.025220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.025234 LLDP, length 82 [|LLDP] 17:48:53.025242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.025243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0942 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.025245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.025246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.025247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.025249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.025255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.025257 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.025258 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.025260 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.025260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.025261 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.036231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.036232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.036246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.036247 LLDP, length 82 [|LLDP] 17:48:53.036256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.036257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 8a38 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.036258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.036259 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.036261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.036263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.036264 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.036265 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.036266 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.036267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.036268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.044493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.044494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.044501 LLDP, length 82 [|LLDP] 17:48:53.044511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.044512 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.044513 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.044514 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.044515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.044517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.044523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.044524 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.044526 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.044526 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.044541 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.044543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.055533 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.055534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.055547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.055548 LLDP, length 82 [|LLDP] 17:48:53.055564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.055565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0959 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.055566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.055567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.055569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.055571 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.055572 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.055573 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.055574 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.066514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.066516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.066523 LLDP, length 82 [|LLDP] 17:48:53.066533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.066534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.066536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.066537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.066539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.066543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.074769 LLDP, length 82 [|LLDP] 17:48:53.074779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.074780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.074782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.074783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.074784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.074794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.074795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.074798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.085778 LLDP, length 82 [|LLDP] 17:48:53.085787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.085788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.085790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.085791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.085792 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.085794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.085805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.085806 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.094039 LLDP, length 82 [|LLDP] 17:48:53.094056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.094057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.094058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.094059 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.094061 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.094062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.094073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.094074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.094077 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.094078 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.094080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.094082 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.094083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.094084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.105040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.105041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.105056 LLDP, length 82 [|LLDP] 17:48:53.105064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.105065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097f 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.105067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.105068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.105069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.105070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.105077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.105079 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.105080 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.105081 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.105082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.105083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.116057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.116059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.116066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.116067 LLDP, length 82 [|LLDP] 17:48:53.116077 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.116078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 709f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.116080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.116081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.116083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.116085 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.116085 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.116087 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.116088 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.116088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.116090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.124305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.124306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.124320 LLDP, length 82 [|LLDP] 17:48:53.124328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.124329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.124331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.124332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.124333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.124334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.124341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.124343 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.124344 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.124345 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.124346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.124347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.135330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.135331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.135339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.135340 LLDP, length 82 [|LLDP] 17:48:53.135349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.135350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0996 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.135352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.135354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.135355 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.135357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.135357 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.135358 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.135359 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.135360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.135362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.146326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.146328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.146341 LLDP, length 82 [|LLDP] 17:48:53.146351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.146352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.146354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.146355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.146356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.146357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.146363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.146365 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.146366 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.146367 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.146368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.146369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.154597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.154599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.154606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.154608 LLDP, length 82 [|LLDP] 17:48:53.154617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.154618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.154620 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.154621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.154624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.154625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.154626 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.154627 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.154628 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.165592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.165594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.165602 LLDP, length 82 [|LLDP] 17:48:53.165611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.165612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ad 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.165613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.165614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.165615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.165619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.176603 LLDP, length 82 [|LLDP] 17:48:53.176611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.176612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.176615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.176615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.176617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.176624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.176625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.176628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.184859 LLDP, length 82 [|LLDP] 17:48:53.184866 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.184867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.184870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.184871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.184872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.184873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.184883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.184884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.195882 LLDP, length 82 [|LLDP] 17:48:53.195891 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.195892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.195895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.195896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.195897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.195898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.195908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.195909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.195912 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.195913 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.195915 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.195916 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.195917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.195918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.204130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.204131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.204144 LLDP, length 82 [|LLDP] 17:48:53.204153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.204154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.204156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.204157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.204159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.204160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.204166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.204167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.204169 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.204170 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.204171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.204172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.215140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.215141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.215155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.215156 LLDP, length 82 [|LLDP] 17:48:53.215164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.215165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d3 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.215167 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.215168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.215169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.215171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.215172 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.215173 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.215174 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.215175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.215176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.226167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.226169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.226185 LLDP, length 82 [|LLDP] 17:48:53.226197 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.226198 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.226200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.226201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.226202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.226203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.226210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.226212 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.226213 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.226214 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.226215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.226216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.234410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.234412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.234426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.234427 LLDP, length 82 [|LLDP] 17:48:53.234438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.234439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.234441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.234442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.234444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.234445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.234446 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.234448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.234449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.234450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.234450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.245424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.245425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.245433 LLDP, length 82 [|LLDP] 17:48:53.245441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.245442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ea 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.245444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.245445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.245446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.245448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.245454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.245456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.245457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.245458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.245459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.245461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.256438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.256440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.256447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.256448 LLDP, length 82 [|LLDP] 17:48:53.256459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.256460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.256462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.256463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.256465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.256466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.256468 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.256469 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.256469 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.264683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.264685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.264692 LLDP, length 82 [|LLDP] 17:48:53.264701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.264702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.264703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.264704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.264706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.264710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.275689 LLDP, length 82 [|LLDP] 17:48:53.275697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.275698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.275701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.275702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.275703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.275711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.275712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.275715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.283948 LLDP, length 82 [|LLDP] 17:48:53.283957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.283957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a07 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.283960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.283961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.283963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.283964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.283972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.283974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.294964 LLDP, length 82 [|LLDP] 17:48:53.294976 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.294977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0f f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.294979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.294980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.294981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.294983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.294993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.294994 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.294996 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.294997 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.294999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.295000 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.295001 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.295002 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.305973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.305975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.305988 LLDP, length 82 [|LLDP] 17:48:53.305996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.305997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.305999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.306000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.306001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.306002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.306008 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.306011 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.306011 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.306013 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.306014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.306015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.314231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.314232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.314240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.314241 LLDP, length 82 [|LLDP] 17:48:53.314250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.314250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e a3d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.314252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.314254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.314255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.314257 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.314258 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.314259 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.314260 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.314260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.314262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.325244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.325245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.325259 LLDP, length 82 [|LLDP] 17:48:53.325269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.325269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a27 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.325271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.325272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.325273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.325274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.325281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.325283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.325284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.325285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.325286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.325287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.336264 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.336273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.336284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.336285 LLDP, length 82 [|LLDP] 17:48:53.336296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.336296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.336298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.336300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.336301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.336303 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.336304 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.336305 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.336306 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.336307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.336309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.344526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.344535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.344550 LLDP, length 82 [|LLDP] 17:48:53.344561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.344562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.344563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.344565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.344566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.344567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.344574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.344576 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.344577 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.344578 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.344579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.344580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.355537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.355539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.355548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.355549 LLDP, length 82 [|LLDP] 17:48:53.355559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.355560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3e 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.355562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.355563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.355565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.355566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.355567 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.355568 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.355569 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.366529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.366530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.366538 LLDP, length 82 [|LLDP] 17:48:53.366546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.366547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 8a39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.366549 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.366550 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.366551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.366555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.374783 LLDP, length 82 [|LLDP] 17:48:53.374790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.374791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.374793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.374794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.374795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.374804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.374806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.374808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.385800 LLDP, length 82 [|LLDP] 17:48:53.385808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.385808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.385811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.385812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.385813 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.385814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.385824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.385827 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.394074 LLDP, length 82 [|LLDP] 17:48:53.394090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.394091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5b 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.394094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.394095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.394096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.394097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.394110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.394112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.394114 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.394116 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.394118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.394119 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.394120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.394121 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.405069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.405071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.405086 LLDP, length 82 [|LLDP] 17:48:53.405096 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.405097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a63 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.405099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.405100 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.405101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.405103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.405110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.405111 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.405113 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.405114 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.405115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.405116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.416079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.416081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.416095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.416096 LLDP, length 82 [|LLDP] 17:48:53.416105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.416106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.416108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.416109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.416111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.416112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.416113 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.416114 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.416115 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.416116 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.416117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.424338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.424340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.424356 LLDP, length 82 [|LLDP] 17:48:53.424365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.424366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.424372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.424373 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.424374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.424375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.424383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.424385 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.424386 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.424387 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.424388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.424389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.435363 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.435365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.435374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.435375 LLDP, length 82 [|LLDP] 17:48:53.435385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.435386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.435387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.435389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.435390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.435392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.435393 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.435394 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.435395 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.435396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.435397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.446357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.446359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.446369 LLDP, length 82 [|LLDP] 17:48:53.446378 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.446379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.446380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.446382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.446383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.446384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.446391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.446393 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.446394 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.446396 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.446397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.446398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.454622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.454624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.454632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.454633 LLDP, length 82 [|LLDP] 17:48:53.454644 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.454646 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.454648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.454649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.454650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.454652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.454653 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.454654 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.454655 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.465615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.465617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.465625 LLDP, length 82 [|LLDP] 17:48:53.465633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.465634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.465636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.465637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.465639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.465643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.473875 LLDP, length 82 [|LLDP] 17:48:53.473883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.473884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a98 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.473887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.473888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.473889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.473898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.473899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.473901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.484887 LLDP, length 82 [|LLDP] 17:48:53.484897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.484898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa0 d706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.484901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.484902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.484903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.484904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.484915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.484916 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.495913 LLDP, length 82 [|LLDP] 17:48:53.495924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.495925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.495927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.495928 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.495929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.495930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.495943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.495944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.495947 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.495948 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.495949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.495951 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.495952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.495953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.504168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.504170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.504180 LLDP, length 82 [|LLDP] 17:48:53.504190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.504191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaf 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.504193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.504194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.504195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.504196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.504204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.504206 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.504207 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.504208 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.504209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.504210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.515167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.515169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.515186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.515187 LLDP, length 82 [|LLDP] 17:48:53.515196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.515197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.515199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.515200 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.515201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.515203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.515204 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.515205 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.515206 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.515207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.515208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.526194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.526196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.526213 LLDP, length 82 [|LLDP] 17:48:53.526223 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.526224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.526225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.526227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.526228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.526229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.526236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.526238 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.526239 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.526240 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.526241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.526243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.534442 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.534444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.534459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.534460 LLDP, length 82 [|LLDP] 17:48:53.534472 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.534473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.534475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.534476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.534477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.534479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.534480 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.534481 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.534482 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.534483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.534485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.545449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.545450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.545466 LLDP, length 82 [|LLDP] 17:48:53.545474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.545475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acf 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.545477 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.545478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.545479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.545481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.545487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.545489 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.545490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.545495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.545496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.545497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.556463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.556465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.556473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.556475 LLDP, length 82 [|LLDP] 17:48:53.556484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.556485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.556487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.556488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.556489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.556491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.556492 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.556493 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.556494 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.564710 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.564712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.564720 LLDP, length 82 [|LLDP] 17:48:53.564730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.564731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add bd69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.564733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.564734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.564735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.564740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.575727 LLDP, length 82 [|LLDP] 17:48:53.575739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.575739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.575742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.575743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.575745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.575759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.575761 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.575764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.583976 LLDP, length 82 [|LLDP] 17:48:53.583985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.583986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aec 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.583988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.583990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.583991 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.583992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.584002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.584004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.594997 LLDP, length 82 [|LLDP] 17:48:53.595013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.595014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af4 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.595017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.595018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.595019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.595021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.595032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.595033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.595036 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.595037 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.595039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.595041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.595042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.595043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.606014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.606016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.606032 LLDP, length 82 [|LLDP] 17:48:53.606042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.606043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.606045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.606046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.606048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.606049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.606056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.606057 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.606058 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.606060 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.606061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.606062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.614260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.614262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.614278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.614279 LLDP, length 82 [|LLDP] 17:48:53.614289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.614290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b03 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.614292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.614293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.614295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.614297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.614298 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.614298 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.614299 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.614300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.614301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.625271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.625273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.625281 LLDP, length 82 [|LLDP] 17:48:53.625292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.625293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0b f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.625295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.625296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.625298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.625299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.625306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.625308 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.625309 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.625310 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.625311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.625312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.636282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.636285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.636300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.636301 LLDP, length 82 [|LLDP] 17:48:53.636311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.636312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.636313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.636314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.636316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.636317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.636318 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.636319 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.636320 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.636321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.636322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.644534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.644537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.644555 LLDP, length 82 [|LLDP] 17:48:53.644565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.644566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.644568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.644569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.644570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.644572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.644578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.644580 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.644581 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.644582 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.644584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.644585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.655556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.655557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.655567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.655568 LLDP, length 82 [|LLDP] 17:48:53.655583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.655584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b23 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.655585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.655586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.655588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.655590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.655591 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.655592 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.655593 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.666555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.666557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.666566 LLDP, length 82 [|LLDP] 17:48:53.666578 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.666579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.666581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.666582 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.666583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.666588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.674807 LLDP, length 82 [|LLDP] 17:48:53.674816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.674817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.674819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.674821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.674822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.674837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.674838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.674841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.685822 LLDP, length 82 [|LLDP] 17:48:53.685831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.685832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.685835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.685836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.685838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.685839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.685849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.685850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.694082 LLDP, length 82 [|LLDP] 17:48:53.694095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.694096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b40 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.694098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.694099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.694100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.694102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.694112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.694114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.694116 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.694117 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.694119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.694120 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.694121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.694126 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.705095 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.705103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.705113 LLDP, length 82 [|LLDP] 17:48:53.705123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.705124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b48 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.705125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.705126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.705128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.705129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.705136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.705138 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.705139 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.705140 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.705142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.705143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.716107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.716108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.716116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.716118 LLDP, length 82 [|LLDP] 17:48:53.716126 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.716127 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.716129 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.716130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.716132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.716133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.716134 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.716135 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.716136 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.716137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.716139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.724352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.724353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.724366 LLDP, length 82 [|LLDP] 17:48:53.724375 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.724375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b57 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.724377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.724378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.724379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.724380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.724386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.724388 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.724389 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.724390 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.724391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.724392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.735387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.735388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.735413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.735415 LLDP, length 82 [|LLDP] 17:48:53.735423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.735424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5f f0a0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.735425 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.735427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.735429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.735431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.735432 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.735433 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.735434 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.735435 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.735437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.746389 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.746391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.746408 LLDP, length 82 [|LLDP] 17:48:53.746420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.746421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.746423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.746424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.746425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.746426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.746434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.746436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.746437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.746438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.746439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.746440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.754644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.754646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.754653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.754654 LLDP, length 82 [|LLDP] 17:48:53.754666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.754666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.754668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.754669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.754671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.754672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.754673 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.754674 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.754675 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.765637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.765639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.765648 LLDP, length 82 [|LLDP] 17:48:53.765656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.765657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.765659 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.765660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.765661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.765665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.773898 LLDP, length 82 [|LLDP] 17:48:53.773908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.773909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7d 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.773912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.773913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.773914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.773925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.773926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.773930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.784906 LLDP, length 82 [|LLDP] 17:48:53.784914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.784915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b85 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.784918 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.784919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.784920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.784922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.784930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.784932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.795931 LLDP, length 82 [|LLDP] 17:48:53.795949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.795949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.795953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.795954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.795955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.795956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.795968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.795970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.795972 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.795974 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.795975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.795978 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.795979 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.795980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.804178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.804179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.804193 LLDP, length 82 [|LLDP] 17:48:53.804205 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.804207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b94 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.804208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.804209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.804211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.804212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.804219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.804220 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.804221 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.804223 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.804224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.804225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.815191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.815193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.815207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.815208 LLDP, length 82 [|LLDP] 17:48:53.815218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.815219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9c d701 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.815221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.815222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.815223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.815225 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.815226 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.815227 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.815228 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.815229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.815230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.826200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.826202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.826217 LLDP, length 82 [|LLDP] 17:48:53.826226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.826227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.826229 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.826230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.826231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.826232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.826239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.826241 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.826242 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.826243 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.826244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.826245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.834455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.834457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.834470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.834472 LLDP, length 82 [|LLDP] 17:48:53.834481 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.834482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bab 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.834484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.834485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.834486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.834488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.834489 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.834490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.834491 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.834492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.834493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.845459 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.845461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.845475 LLDP, length 82 [|LLDP] 17:48:53.845483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.845484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb3 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.845486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.845487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.845489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.845490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.845496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.845498 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.845499 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.845500 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.845501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.845502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.856480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.856482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.856489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.856490 LLDP, length 82 [|LLDP] 17:48:53.856500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.856501 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 5700 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.856503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.856504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.856506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.856507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.856508 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.856509 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.856510 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.864726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.864728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.864735 LLDP, length 82 [|LLDP] 17:48:53.864743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.864744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.864745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.864747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.864748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.864752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.875740 LLDP, length 82 [|LLDP] 17:48:53.875748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.875749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.875752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.875753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.875754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.875763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.875765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.875768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.883994 LLDP, length 82 [|LLDP] 17:48:53.884003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.884004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd1 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.884006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.884007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.884009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.884010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.884019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.884021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.895011 LLDP, length 82 [|LLDP] 17:48:53.895023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.895024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd9 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.895027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.895028 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.895029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.895031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.895040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.895042 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.895044 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.895045 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.895047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.895048 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.895049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.895050 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.906016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.906018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.906032 LLDP, length 82 [|LLDP] 17:48:53.906041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.906042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.906044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.906045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.906046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.906047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.906053 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.906055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.906056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.906057 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.906058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.906059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.914273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.914275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.914282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.914283 LLDP, length 82 [|LLDP] 17:48:53.914294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.914295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be8 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.914296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.914298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.914299 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.914301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.914302 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.914303 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.914304 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.914305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.914306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.925286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.925288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.925296 LLDP, length 82 [|LLDP] 17:48:53.925305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.925306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf0 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.925308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.925309 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.925310 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.925311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.925317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.925319 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.925320 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.925322 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.925322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.925323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.936290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.936292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.936306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.936307 LLDP, length 82 [|LLDP] 17:48:53.936316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.936317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.936318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.936320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.936321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.936323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.936324 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.936325 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.936326 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.936327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.936329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.944551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.944553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.944567 LLDP, length 82 [|LLDP] 17:48:53.944575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.944576 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bff 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.944578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.944579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.944580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.944582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.944588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.944589 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.944590 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.944592 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.944592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.944593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:53.955571 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.955573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.955581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.955582 LLDP, length 82 [|LLDP] 17:48:53.955592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.955594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c07 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.955595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.955596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.955598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.955599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.955600 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.955601 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.955602 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.966566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.966568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.966575 LLDP, length 82 [|LLDP] 17:48:53.966582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.966583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.966585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.966586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.966587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.966591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.974825 LLDP, length 82 [|LLDP] 17:48:53.974833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.974834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.974836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.974838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.974839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.974846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.974848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.974850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.985839 LLDP, length 82 [|LLDP] 17:48:53.985847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.985848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 0a39 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.985850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.985851 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.985852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.985854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.985862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.985864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.994099 LLDP, length 82 [|LLDP] 17:48:53.994107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:53.994108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c25 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:53.994111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:53.994112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:53.994113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:53.994114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.994124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:53.994125 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:53.994127 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:53.994129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.994130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:53.994132 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:53.994133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:53.994134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.005105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.005107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.005121 LLDP, length 82 [|LLDP] 17:48:54.005129 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.005130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2d bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.005132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.005133 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.005135 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.005136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.005142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.005144 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.005145 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.005146 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.005147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.005147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.016113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.016114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.016128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.016129 LLDP, length 82 [|LLDP] 17:48:54.016138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.016139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.016141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.016142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.016144 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.016146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.016146 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.016147 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.016149 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.016150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.016151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.024371 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.024373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.024387 LLDP, length 82 [|LLDP] 17:48:54.024395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.024396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3c 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.024397 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.024398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.024400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.024401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.024407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.024409 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.024410 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.024411 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.024412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.024413 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.035460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.035463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.035485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.035506 LLDP, length 82 [|LLDP] 17:48:54.035532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.035533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c44 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.035535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.035539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.035542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.035545 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.035547 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.035549 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.035551 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.035552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.035555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.046445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.046448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.046462 LLDP, length 82 [|LLDP] 17:48:54.046479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.046480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.046482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.046483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.046483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.046484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.046492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.046493 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.046494 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.046495 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.046496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.046497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.054718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.054722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.054738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.054739 LLDP, length 82 [|LLDP] 17:48:54.054755 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.054756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c53 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.054758 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.054759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.054761 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.054762 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.054763 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.054764 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.054765 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.065699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.065701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.065717 LLDP, length 82 [|LLDP] 17:48:54.065730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.065731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.065733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.065734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.065735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.065740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.073959 LLDP, length 82 [|LLDP] 17:48:54.073974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.073975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c62 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.073977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.073978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.073980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.073998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.073999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.074002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.084965 LLDP, length 82 [|LLDP] 17:48:54.084978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.084979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6a a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.084982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.084983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.084984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.084985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.085003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.085005 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.095995 LLDP, length 82 [|LLDP] 17:48:54.096007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.096008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.096011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.096013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.096014 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.096015 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.096035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.096036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.096039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.096040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.096041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.096042 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.096043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.096044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.104263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.104267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.104291 LLDP, length 82 [|LLDP] 17:48:54.104308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.104309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c79 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.104311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.104312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.104313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.104314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.104321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.104323 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.104324 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.104325 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.104326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.104327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.115243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.115246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.115259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.115260 LLDP, length 82 [|LLDP] 17:48:54.115271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.115272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c81 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.115273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.115274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.115276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.115277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.115278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.115279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.115280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.115281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.115281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.126235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.126236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.126252 LLDP, length 82 [|LLDP] 17:48:54.126262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.126263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.126264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.126266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.126267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.126268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.126274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.126275 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.126277 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.126278 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.126279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.126279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.134478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.134480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.134495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.134496 LLDP, length 82 [|LLDP] 17:48:54.134505 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.134506 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c90 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.134508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.134509 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.134510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.134511 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.134512 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.134513 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.134514 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.134515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.134516 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.145489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.145491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.145509 LLDP, length 82 [|LLDP] 17:48:54.145517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.145518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c98 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.145519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.145521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.145522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.145523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.145529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.145532 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.145532 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.145533 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.145534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.145535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.156509 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.156510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.156518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.156519 LLDP, length 82 [|LLDP] 17:48:54.156527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.156529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.156530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.156531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.156533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.156534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.156535 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.156536 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.156537 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.164745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.164746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.164754 LLDP, length 82 [|LLDP] 17:48:54.164761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.164762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca7 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.164763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.164764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.164766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.164770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.175757 LLDP, length 82 [|LLDP] 17:48:54.175764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.175765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.175768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.175769 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.175770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.175778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.175780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.175782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.184014 LLDP, length 82 [|LLDP] 17:48:54.184020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.184021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb6 3d6d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.184024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.184025 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.184026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.184027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.184036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.184037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.195031 LLDP, length 82 [|LLDP] 17:48:54.195043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.195044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbe a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.195047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.195048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.195049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.195050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.195060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.195061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.195064 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.195064 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.195066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.195067 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.195068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.195069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.206040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.206041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.206056 LLDP, length 82 [|LLDP] 17:48:54.206063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.206064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.206066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.206067 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.206068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.206069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.206076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.206077 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.206078 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.206079 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.206080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.206081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.214298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.214299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.214313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.214314 LLDP, length 82 [|LLDP] 17:48:54.214322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.214323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccd 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.214325 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.214326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.214328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.214329 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.214330 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.214331 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.214332 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.214333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.214334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.225311 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.225312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.225319 LLDP, length 82 [|LLDP] 17:48:54.225326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.225327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd5 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.225329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.225330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.225331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.225332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.225338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.225339 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.225341 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.225342 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.225342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.225343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.236319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.236320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.236335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.236336 LLDP, length 82 [|LLDP] 17:48:54.236344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.236345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 23d3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.236346 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.236347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.236349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.236350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.236351 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.236352 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.236353 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.236354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.236355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.244572 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.244574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.244588 LLDP, length 82 [|LLDP] 17:48:54.244595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.244596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce4 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.244598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.244599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.244600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.244601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.244607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.244609 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.244610 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.244611 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.244612 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.244613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.255593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.255594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.255603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.255604 LLDP, length 82 [|LLDP] 17:48:54.255613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.255614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.255615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.255617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.255618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.255619 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.255620 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.255621 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.255622 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.263839 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.263841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.263848 LLDP, length 82 [|LLDP] 17:48:54.263855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.263856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf3 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.263857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.263858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.263860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.263863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.274849 LLDP, length 82 [|LLDP] 17:48:54.274856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.274857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfb 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.274860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.274861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.274861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.274870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.274871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.274874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.285864 LLDP, length 82 [|LLDP] 17:48:54.285870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.285871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.285874 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.285875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.285876 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.285877 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.285878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.285889 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.285891 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.285892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.285898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.285900 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.285901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.285902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.294126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.294128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.294135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.294137 LLDP, length 82 [|LLDP] 17:48:54.294145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.294146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.294147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.294148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.294150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.294151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.294152 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.294153 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.294154 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.294155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.294156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.305134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.305135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.305143 LLDP, length 82 [|LLDP] 17:48:54.305150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.305151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d12 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.305152 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.305154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.305155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.305156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.305162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.305164 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.305165 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.305166 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.305167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.305168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.316141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.316143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.316151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.316152 LLDP, length 82 [|LLDP] 17:48:54.316160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.316161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.316162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.316163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.316165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.316166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.316167 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.316168 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.316168 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.316169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.316170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.324395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.324396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.324410 LLDP, length 82 [|LLDP] 17:48:54.324417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.324418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d21 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.324420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.324421 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.324422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.324423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.324429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.324431 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.324432 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.324433 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.324434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.324435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.335405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.335406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.335420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.335421 LLDP, length 82 [|LLDP] 17:48:54.335428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.335429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d29 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.335431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.335432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.335434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.335435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.335436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.335437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.335438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.335438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.335439 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.346417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.346418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.346426 LLDP, length 82 [|LLDP] 17:48:54.346434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.346435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.346436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.346437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.346438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.346440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.346445 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.346447 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.346448 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.346449 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.354667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.354668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.354676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.354677 LLDP, length 82 [|LLDP] 17:48:54.354685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.354686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d38 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.354688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.354689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.354691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.365685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.365686 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.365694 LLDP, length 82 [|LLDP] 17:48:54.365701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.365702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.365703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.365705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.365706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.365710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.373938 LLDP, length 82 [|LLDP] 17:48:54.373944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.373945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d47 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.373947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.373949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.373950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.373958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.373959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.373962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.384926 LLDP, length 82 [|LLDP] 17:48:54.384932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.384933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4f 8a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.384935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.384936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395963 LLDP, length 82 [|LLDP] 17:48:54.395974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.395975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.395978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.395979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.395980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.395981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.395982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.395993 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.395996 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.395997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.395999 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.395999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.396001 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.407222 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.407224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.407231 LLDP, length 82 [|LLDP] 17:48:54.407239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.407240 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5e 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.407242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.407243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.407244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.407245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.407251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.407253 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.407254 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.407255 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.407256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.407257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.415231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.415233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.415247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.415248 LLDP, length 82 [|LLDP] 17:48:54.415256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.415256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d66 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.415259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.415259 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.415260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.415262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.415263 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.415264 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.415265 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.415266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.415267 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.426240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.426242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.426256 LLDP, length 82 [|LLDP] 17:48:54.426265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.426266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.426268 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.426269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.426270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.426272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.426278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.426280 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.426281 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.426282 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.426283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.426284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.434496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.434498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.434511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.434512 LLDP, length 82 [|LLDP] 17:48:54.434521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.434522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d75 5706 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.434524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.434525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.434526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.434527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.434529 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.434530 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.434531 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.434532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.434533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.445511 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.445512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.445526 LLDP, length 82 [|LLDP] 17:48:54.445535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.445536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7d bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.445537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.445539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.445540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.445541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.445547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.445549 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.445550 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.445551 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.445552 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.445554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.456541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.456544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.456556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.456557 LLDP, length 82 [|LLDP] 17:48:54.456568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.456569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.456571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.456572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.456573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.456575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.456577 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.456577 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.456578 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.467897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.467899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.467908 LLDP, length 82 [|LLDP] 17:48:54.467918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.467919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8c 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.467920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.467921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.467922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.467927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.475786 LLDP, length 82 [|LLDP] 17:48:54.475795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.475796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.475798 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.475799 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.475800 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.475801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.475812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.475814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.484042 LLDP, length 82 [|LLDP] 17:48:54.484051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.484052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9b 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.484055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.484056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.484057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.484058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.484069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.484071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.495065 LLDP, length 82 [|LLDP] 17:48:54.495075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.495075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da3 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.495078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.495079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.495080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.495081 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.495082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.495097 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.495098 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.495101 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.495103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.495104 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.495105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.495106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.506074 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.506076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.506090 LLDP, length 82 [|LLDP] 17:48:54.506100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.506100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.506102 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.506103 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.506105 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.506106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.506113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.506115 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.506116 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.506117 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.506118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.506119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.514328 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.514330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.514339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.514340 LLDP, length 82 [|LLDP] 17:48:54.514350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.514351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db2 3d65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.514352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.514354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.514355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.514356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.514357 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.514358 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.514359 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.514360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.514361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.528530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.528532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.528539 LLDP, length 82 [|LLDP] 17:48:54.528548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.528549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dba a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.528550 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.528551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.528552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.528554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.528560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.528562 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.528563 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.528564 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.528565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.528566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.536336 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.536337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.536350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.536351 LLDP, length 82 [|LLDP] 17:48:54.536360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.536361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.536363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.536364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.536365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.536367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.536368 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.536370 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.536370 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.536371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.536372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.544595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.544596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.544609 LLDP, length 82 [|LLDP] 17:48:54.544617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.544618 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc9 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.544619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.544620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.544622 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.544623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.544629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.544631 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.544632 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.544633 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.544634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.544635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.555616 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.555618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.555625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.555626 LLDP, length 82 [|LLDP] 17:48:54.555635 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.555636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.555638 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.555639 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.555640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.555642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.555643 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.555644 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.555645 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.563858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.563859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.563866 LLDP, length 82 [|LLDP] 17:48:54.563874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.563875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd8 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.563876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.563878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.563879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.563883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.574867 LLDP, length 82 [|LLDP] 17:48:54.574874 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.574875 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de0 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.574877 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.574878 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.574879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.574880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.574888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.574890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.589206 LLDP, length 82 [|LLDP] 17:48:54.589214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.589214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.589217 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.589218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.589219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.589220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.589221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.589232 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.589234 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.589235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.589240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.589242 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.589243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.589245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.594141 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.594143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.594150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.594152 LLDP, length 82 [|LLDP] 17:48:54.594161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.594161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0def 23cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.594163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.594165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.594166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.594167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.594169 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.594170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.594171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.594171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.594172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.605148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.605149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.605162 LLDP, length 82 [|LLDP] 17:48:54.605170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.605171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df7 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.605172 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.605173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.605174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.605175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.605182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.605184 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.605185 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.605186 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.605186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.605187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.616157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.616158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.616171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.616172 LLDP, length 82 [|LLDP] 17:48:54.616181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.616182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.616183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.616184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.616186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.616187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.616189 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.616190 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.616191 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.616192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.616193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.624416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.624417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.624430 LLDP, length 82 [|LLDP] 17:48:54.624438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.624439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e06 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.624441 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.624442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.624443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.624444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.624450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.624452 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.624453 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.624455 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.624456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.624457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.635423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.635425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.635437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.635439 LLDP, length 82 [|LLDP] 17:48:54.635447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.635448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0e a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.635450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.635451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.635453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.635454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.635456 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.635457 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.635458 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.635459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.635460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.649873 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.649875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.649882 LLDP, length 82 [|LLDP] 17:48:54.649889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.649890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 0a32 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.649892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.649893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.649894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.649895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.649901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.649903 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.649904 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.649905 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.654689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.654691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.654697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.654698 LLDP, length 82 [|LLDP] 17:48:54.654706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.654708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1d 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.654709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.654711 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.654712 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.665700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.665702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.665709 LLDP, length 82 [|LLDP] 17:48:54.665717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.665718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 bd65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.665719 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.665720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.665721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.665726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.673971 LLDP, length 82 [|LLDP] 17:48:54.673981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.673982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2c 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.673985 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.673985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.673987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.673988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.674001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.674003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.684986 LLDP, length 82 [|LLDP] 17:48:54.684997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.684998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e34 709e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.685000 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.685001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.685003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.685004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.685005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.685017 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.685019 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.685020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.685027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.685028 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.685030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.685031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.695983 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.695985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.695999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.696000 LLDP, length 82 [|LLDP] 17:48:54.696008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.696009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.696011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.696012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.696013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.696015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.696016 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.696017 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.696018 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.696019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.696020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.704240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.704241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.704254 LLDP, length 82 [|LLDP] 17:48:54.704262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.704263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e43 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.704265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.704266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.704267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.704269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.704275 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.704277 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.704278 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.704279 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.704280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.704281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.715251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.715252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.715265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.715266 LLDP, length 82 [|LLDP] 17:48:54.715275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.715276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4b 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.715277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.715279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.715280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.715282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.715283 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.715284 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.715285 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.715286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.715287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.726256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.726257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.726270 LLDP, length 82 [|LLDP] 17:48:54.726278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.726279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.726281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.726282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.726283 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.726285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.726292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.726293 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.726294 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.726295 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.726296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.726297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.734514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.734516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.734529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.734531 LLDP, length 82 [|LLDP] 17:48:54.734539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.734540 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5a 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.734542 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.734543 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.734544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.734546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.734547 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.734548 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.734549 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.734550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.734551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.745537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.745538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.745546 LLDP, length 82 [|LLDP] 17:48:54.745554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.745555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 a3cc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.745557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.745558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.745560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.745561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.745567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.745569 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.745570 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.745571 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.753779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.753780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.753787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.753788 LLDP, length 82 [|LLDP] 17:48:54.753796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.753797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.753799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.753800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.753801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.764788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.764790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.764797 LLDP, length 82 [|LLDP] 17:48:54.764804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.764805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e71 56ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.764806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.764807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.764809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.764813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.775815 LLDP, length 82 [|LLDP] 17:48:54.775824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.775825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 bd66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.775829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.775830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.775831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.775831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.775844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.775846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.784070 LLDP, length 82 [|LLDP] 17:48:54.784086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.784086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e80 0a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.784089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.784090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.784091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.784092 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.784093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.784105 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.784107 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.784109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.784116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.784118 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.784119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.784120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.795077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.795079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.795093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.795095 LLDP, length 82 [|LLDP] 17:48:54.795106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.795107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e88 7099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.795109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.795110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.795111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.795113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.795114 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.795115 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.795116 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.795117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.795118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.806083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.806085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.806103 LLDP, length 82 [|LLDP] 17:48:54.806113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.806114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 d6ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.806115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.806116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.806118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.806119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.806125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.806127 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.806129 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.806130 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.806131 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.806131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.814344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.814346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.814360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.814362 LLDP, length 82 [|LLDP] 17:48:54.814373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.814374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e97 23cd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.814375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.814377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.814378 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.814379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.814381 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.814382 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.814383 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.814384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.814385 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.825350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.825352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.825367 LLDP, length 82 [|LLDP] 17:48:54.825377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.825378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9f 8a33 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.825380 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.825381 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.825382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.825383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.825401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.825403 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.825404 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.825404 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.825406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.825407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.836367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.836369 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.836377 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.836378 LLDP, length 82 [|LLDP] 17:48:54.836389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.836389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 f099 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.836391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.836392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.836394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.836395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.836397 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.836398 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.836399 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.836400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.836401 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.844632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.844634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.844643 LLDP, length 82 [|LLDP] 17:48:54.844653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.844654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eae 3d66 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.844655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.844657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.844658 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.844659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.844666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.844668 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.844669 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.844670 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.855629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.855631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.855641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.855642 LLDP, length 82 [|LLDP] 17:48:54.855653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.855654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.855656 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.855657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.855659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.863886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.863888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.863897 LLDP, length 82 [|LLDP] 17:48:54.863905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.863906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc f0ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.863908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.863909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.863910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.863914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.874900 LLDP, length 82 [|LLDP] 17:48:54.874910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.874910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec5 5721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.874913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.874914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.874915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.874917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.874927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.874929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.885923 LLDP, length 82 [|LLDP] 17:48:54.885931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.885932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd bd87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.885935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.885935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.885936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.885938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.885939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.885951 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.885953 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.885955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.885965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.885967 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.885968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.885969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.894178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.894179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.894187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.894189 LLDP, length 82 [|LLDP] 17:48:54.894199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.894200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed4 0a5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.894201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.894203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.894204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.894205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.894207 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.894208 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.894209 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.894210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.894211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.905190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.905192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.905202 LLDP, length 82 [|LLDP] 17:48:54.905212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.905213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edc 70bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.905214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.905216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.905217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.905218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.905225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.905227 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.905228 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.905229 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.905230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.905232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.916190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.916192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.916206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.916207 LLDP, length 82 [|LLDP] 17:48:54.916217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.916219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 d721 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.916220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.916221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.916222 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.916224 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.916226 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.916227 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.916228 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.916229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.916230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.924443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.924445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.924464 LLDP, length 82 [|LLDP] 17:48:54.924473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.924475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eeb 23ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.924476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.924478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.924479 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.924480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.924486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.924488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.924490 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.924491 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.924492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.924493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.935452 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.935454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.935468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.935469 LLDP, length 82 [|LLDP] 17:48:54.935480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.935481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef3 8a54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.935482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.935483 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.935485 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.935486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.935488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.935489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.935490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.935491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.935492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.946478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.946479 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.946489 LLDP, length 82 [|LLDP] 17:48:54.946500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.946502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.946503 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.946505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.946506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.946508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.946514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.946517 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.946517 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.946519 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.954721 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.954722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.954730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.954731 LLDP, length 82 [|LLDP] 17:48:54.954739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.954740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f02 3d87 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.954742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.954743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.954745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.965726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.965728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.965741 LLDP, length 82 [|LLDP] 17:48:54.965749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.965750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a a3ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.965752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.965753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.965755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.965759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.973987 LLDP, length 82 [|LLDP] 17:48:54.973995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.973996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 f0bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.973998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.973999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.974000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.974002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.974012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.974013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.985005 LLDP, length 82 [|LLDP] 17:48:54.985013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.985014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f19 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.985017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.985018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.985019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.985020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.985021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.985032 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.985034 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.985035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.985042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.985043 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.985045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.985046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:54.996005 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:54.996007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.996021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:54.996022 LLDP, length 82 [|LLDP] 17:48:54.996031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:54.996032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:54.996034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:54.996035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:54.996036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:54.996038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:54.996039 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:54.996040 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.996041 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:54.996043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:54.996044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.004262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.004264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.004277 LLDP, length 82 [|LLDP] 17:48:55.004285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.004286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f28 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.004287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.004288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.004289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.004290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.004297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.004298 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.004299 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.004300 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.004301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.004302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.015274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.015276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.015289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.015290 LLDP, length 82 [|LLDP] 17:48:55.015299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.015300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f30 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.015310 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.015327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.015329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.015330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.015332 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.015333 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.015334 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.015336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.015337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.026320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.026328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.026340 LLDP, length 82 [|LLDP] 17:48:55.026357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.026357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.026359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.026360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.026361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.026362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.026371 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.026372 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.026374 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.026375 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.026376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.026377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.034556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.034564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.034574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.034575 LLDP, length 82 [|LLDP] 17:48:55.034587 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.034588 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3f 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.034589 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.034591 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.034592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.034594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.034595 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.034596 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.034597 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.034598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.034599 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.045563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.045564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.045573 LLDP, length 82 [|LLDP] 17:48:55.045583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.045583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.045585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.045586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.045587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.045589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.045595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.045597 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.045598 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.045599 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.053804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.053805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.053812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.053813 LLDP, length 82 [|LLDP] 17:48:55.053824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.053825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.053827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.053828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.053830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.064814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.064816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.064823 LLDP, length 82 [|LLDP] 17:48:55.064831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.064832 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f56 3db0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.064834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.064836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.064837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.064840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.075818 LLDP, length 82 [|LLDP] 17:48:55.075826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.075827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.075829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.075830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.075831 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.075833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.075842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.075844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.084089 LLDP, length 82 [|LLDP] 17:48:55.084101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.084102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.084105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.084106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.084107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.084108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.084110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.084120 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.084122 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.084123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.084129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.084131 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.084132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.084133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.095108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.095109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.095125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.095126 LLDP, length 82 [|LLDP] 17:48:55.095138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.095139 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6d 5743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.095141 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.095143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.095144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.095145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.095147 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.095148 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.095149 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.095149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.095151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.106139 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.106148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.106162 LLDP, length 82 [|LLDP] 17:48:55.106177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.106179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.106180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.106182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.106183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.106184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.106192 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.106194 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.106195 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.106197 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.106198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.106200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.114429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.114433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.114455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.114456 LLDP, length 82 [|LLDP] 17:48:55.114477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.114479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7c 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.114480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.114482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.114483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.114485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.114487 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.114488 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.114489 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.114490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.114491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.125431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.125434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.125454 LLDP, length 82 [|LLDP] 17:48:55.125471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.125472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f84 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.125473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.125474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.125476 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.125477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.125485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.125488 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.125489 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.125490 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.125491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.125492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.136390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.136391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.136406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.136407 LLDP, length 82 [|LLDP] 17:48:55.136418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.136419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c d742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.136421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.136422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.136423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.136425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.136426 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.136427 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.136428 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.136429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.136430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.144654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.144656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.144663 LLDP, length 82 [|LLDP] 17:48:55.144673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.144674 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f93 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.144676 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.144677 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.144678 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.144679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.144685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.144687 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.144688 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.144689 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.155646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.155647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.155655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.155656 LLDP, length 82 [|LLDP] 17:48:55.155665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.155667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.155668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.155670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.155671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.163908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.163910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.163917 LLDP, length 82 [|LLDP] 17:48:55.163926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.163927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.163929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.163930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.163931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.163935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.174914 LLDP, length 82 [|LLDP] 17:48:55.174921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.174922 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faa 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.174925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.174926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.174927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.174928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.174937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.174938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.185933 LLDP, length 82 [|LLDP] 17:48:55.185944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.185945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.185948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.185949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.185950 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.185951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.185952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.185963 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.185965 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.185966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.185972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.185975 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.185975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.185977 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.194184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.194186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.194199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.194200 LLDP, length 82 [|LLDP] 17:48:55.194209 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.194210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.194212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.194213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.194214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.194216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.194217 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.194219 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.194220 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.194220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.194222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.205195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.205197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.205204 LLDP, length 82 [|LLDP] 17:48:55.205212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.205213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc1 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.205214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.205215 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.205216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.205217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.205223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.205225 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.205226 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.205227 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.205228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.205229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.216203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.216205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.216219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.216220 LLDP, length 82 [|LLDP] 17:48:55.216229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.216230 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.216232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.216233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.216235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.216236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.216238 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.216239 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.216240 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.216241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.216242 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.224464 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.224466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.224480 LLDP, length 82 [|LLDP] 17:48:55.224489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.224490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd0 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.224492 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.224493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.224494 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.224495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.224502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.224503 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.224505 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.224506 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.224507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.224508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.235470 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.235472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.235485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.235486 LLDP, length 82 [|LLDP] 17:48:55.235496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.235496 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd8 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.235498 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.235499 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.235500 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.235502 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.235503 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.235504 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.235505 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.235507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.235508 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.246490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.246492 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.246498 LLDP, length 82 [|LLDP] 17:48:55.246506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.246507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 d742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.246509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.246510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.246511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.246512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.246518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.246520 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.246521 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.246522 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.254734 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.254735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.254742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.254744 LLDP, length 82 [|LLDP] 17:48:55.254753 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.254754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe7 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.254756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.254757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.254759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.265747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.265749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.265756 LLDP, length 82 [|LLDP] 17:48:55.265765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.265766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.265768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.265769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.265770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.265773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.274003 LLDP, length 82 [|LLDP] 17:48:55.274011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.274012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.274014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.274016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.274017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.274018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.274027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.274028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.285019 LLDP, length 82 [|LLDP] 17:48:55.285031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.285032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffe 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.285035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.285037 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.285038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.285039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.285041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.285051 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.285053 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.285054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.285060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.285062 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.285064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.285065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.296023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.296025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.296038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.296039 LLDP, length 82 [|LLDP] 17:48:55.296048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.296049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.296050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.296051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.296052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.296054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.296055 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.296056 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.296057 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.296058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.296059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.304284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.304286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.304299 LLDP, length 82 [|LLDP] 17:48:55.304308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.304309 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.304311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.304312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.304313 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.304315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.304320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.304322 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.304323 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.304324 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.304325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.304327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.315292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.315294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.315315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.315316 LLDP, length 82 [|LLDP] 17:48:55.315328 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.315329 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1015 5749 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.315331 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.315332 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.315333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.315335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.315337 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.315338 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.315339 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.315340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.315341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.326317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.326320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.326330 LLDP, length 82 [|LLDP] 17:48:55.326341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.326342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.326344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.326345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.326346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.326347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.326354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.326356 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.326357 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.326358 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.326359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.326360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.334568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.334570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.334579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.334580 LLDP, length 82 [|LLDP] 17:48:55.334592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.334593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1024 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.334594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.334595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.334596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.334599 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.334600 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.334601 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.334602 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.334603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.334604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.345582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.345585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.345592 LLDP, length 82 [|LLDP] 17:48:55.345604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.345605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.345606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.345608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.345609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.345610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.345616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.345618 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.345619 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.345620 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.353828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.353830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.353838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.353839 LLDP, length 82 [|LLDP] 17:48:55.353850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.353851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 bdad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.353853 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.353854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.353856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.364835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.364837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.364844 LLDP, length 82 [|LLDP] 17:48:55.364854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.364855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103b 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.364856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.364857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.364859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.364863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.375846 LLDP, length 82 [|LLDP] 17:48:55.375856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.375857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.375859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.375860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.375861 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.375862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.375871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.375873 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.384111 LLDP, length 82 [|LLDP] 17:48:55.384120 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.384121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.384123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.384124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.384125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.384126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.384127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.384138 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.384140 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.384141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.384148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.384150 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.384151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.384152 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.395128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.395130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.395147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.395148 LLDP, length 82 [|LLDP] 17:48:55.395161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.395162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1052 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.395164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.395165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.395167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.395168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.395170 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.395170 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.395171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.395173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.395174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.406135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.406137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.406152 LLDP, length 82 [|LLDP] 17:48:55.406163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.406164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.406165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.406167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.406168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.406169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.406175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.406178 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.406179 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.406180 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.406181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.406182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.414394 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.414403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.414411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.414413 LLDP, length 82 [|LLDP] 17:48:55.414424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.414425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.414427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.414428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.414429 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.414431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.414432 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.414433 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.414435 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.414436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.414437 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.425400 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.425403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.425418 LLDP, length 82 [|LLDP] 17:48:55.425429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.425430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1069 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.425431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.425432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.425434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.425434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.425441 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.425443 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.425444 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.425445 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.425446 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.425447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.436406 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.436407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.436421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.436422 LLDP, length 82 [|LLDP] 17:48:55.436434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.436435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.436437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.436438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.436439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.436440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.436442 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.436443 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.436444 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.436445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.436446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.444672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.444674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.444682 LLDP, length 82 [|LLDP] 17:48:55.444691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.444692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1078 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.444694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.444695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.444696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.444697 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.444703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.444705 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.444706 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.444707 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.455669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.455671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.455678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.455679 LLDP, length 82 [|LLDP] 17:48:55.455690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.455692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.455693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.455694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.455696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.463923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.463925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.463931 LLDP, length 82 [|LLDP] 17:48:55.463940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.463941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.463943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.463944 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.463946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.463949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.474934 LLDP, length 82 [|LLDP] 17:48:55.474944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.474944 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108f 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.474947 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.474948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.474949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.474950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.474959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.474960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.485951 LLDP, length 82 [|LLDP] 17:48:55.485965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.485965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.485968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.485969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.485970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.485971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.485973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.485983 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.485985 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.485986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.485991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.485993 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.485994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.485995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.494205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.494207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.494221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.494222 LLDP, length 82 [|LLDP] 17:48:55.494233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.494233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.494235 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.494236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.494237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.494238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.494239 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.494240 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.494241 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.494242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.494243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.505216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.505218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.505233 LLDP, length 82 [|LLDP] 17:48:55.505242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.505243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a6 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.505245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.505246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.505247 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.505248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.505254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.505256 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.505257 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.505258 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.505259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.505260 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.516238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.516240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.516248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.516249 LLDP, length 82 [|LLDP] 17:48:55.516258 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.516259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.516261 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.516262 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.516263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.516265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.516266 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.516267 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.516268 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.516269 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.516270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.524486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.524488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.524502 LLDP, length 82 [|LLDP] 17:48:55.524512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.524513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.524515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.524516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.524517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.524518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.524525 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.524527 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.524528 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.524529 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.524530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.524530 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.535492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.535494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.535509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.535511 LLDP, length 82 [|LLDP] 17:48:55.535521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.535522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.535524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.535525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.535526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.535527 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.535528 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.535530 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.535531 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.535532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.535533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.543762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.543764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.543771 LLDP, length 82 [|LLDP] 17:48:55.543780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.543781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.543783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.543784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.543785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.543786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.543792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.543794 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.543795 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.543796 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.554756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.554758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.554765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.554766 LLDP, length 82 [|LLDP] 17:48:55.554777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.554778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10cc 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.554779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.554781 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.554782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.565771 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.565773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.565780 LLDP, length 82 [|LLDP] 17:48:55.565790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.565791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 70e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.565792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.565793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.565795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.565798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.574024 LLDP, length 82 [|LLDP] 17:48:55.574032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.574033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.574036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.574036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.574037 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.574039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.574047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.574048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.585038 LLDP, length 82 [|LLDP] 17:48:55.585051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.585052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e3 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.585054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.585055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.585057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.585058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.585059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.585069 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.585071 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.585073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.585078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.585080 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.585081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.585082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.596046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.596047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.596061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.596062 LLDP, length 82 [|LLDP] 17:48:55.596072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.596073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.596075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.596076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.596077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.596079 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.596080 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.596080 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.596081 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.596083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.596084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.604306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.604307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.604322 LLDP, length 82 [|LLDP] 17:48:55.604331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.604332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 d744 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.604334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.604335 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.604336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.604337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.604343 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.604345 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.604346 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.604347 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.604348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.604349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.615322 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.615324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.615338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.615339 LLDP, length 82 [|LLDP] 17:48:55.615350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.615352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fa 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.615353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.615355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.615356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.615357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.615359 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.615360 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.615361 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.615362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.615363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.626326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.626328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.626341 LLDP, length 82 [|LLDP] 17:48:55.626351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.626351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.626353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.626354 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.626355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.626357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.626363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.626365 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.626366 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.626367 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.626368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.626369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.634583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.634585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.634598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.634599 LLDP, length 82 [|LLDP] 17:48:55.634611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.634612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.634613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.634614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.634616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.634617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.634618 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.634619 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.634620 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.634621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.634622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.645604 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.645605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.645613 LLDP, length 82 [|LLDP] 17:48:55.645621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.645622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.645624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.645625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.645626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.645627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.645633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.645634 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.645635 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.645636 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.653851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.653853 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.653860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.653861 LLDP, length 82 [|LLDP] 17:48:55.653870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.653871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.653873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.653874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.653876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.664854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.664855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.664862 LLDP, length 82 [|LLDP] 17:48:55.664872 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.664873 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1120 0a75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.664875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.664876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.664877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.664881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.675872 LLDP, length 82 [|LLDP] 17:48:55.675881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.675882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.675885 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.675886 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.675887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.675888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.675898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.675899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.684134 LLDP, length 82 [|LLDP] 17:48:55.684142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.684143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e bdb1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.684145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.684146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.684147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.684148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.684150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.684160 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.684162 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.684163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.684169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.684171 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.684172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.684173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.695142 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.695143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.695150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.695151 LLDP, length 82 [|LLDP] 17:48:55.695161 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.695162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1137 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.695163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.695164 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.695165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.695167 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.695168 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.695169 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.695170 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.695171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.695172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.706149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.706151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.706165 LLDP, length 82 [|LLDP] 17:48:55.706175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.706176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.706177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.706179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.706180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.706181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.706187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.706189 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.706190 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.706191 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.706192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.706193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.714403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.714405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.714418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.714419 LLDP, length 82 [|LLDP] 17:48:55.714428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.714429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.714431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.714432 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.714433 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.714435 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.714436 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.714437 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.714438 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.714439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.714440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.725417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.725419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.725431 LLDP, length 82 [|LLDP] 17:48:55.725441 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.725442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114e 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.725444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.725445 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.725446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.725447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.725453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.725455 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.725456 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.725457 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.725458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.725459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.736424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.736426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.736440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.736441 LLDP, length 82 [|LLDP] 17:48:55.736451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.736452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.736453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.736455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.736456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.736457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.736459 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.736459 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.736460 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.736462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.736462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.744685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.744687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.744694 LLDP, length 82 [|LLDP] 17:48:55.744702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.744703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.744705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.744706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.744707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.744708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.744724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.744726 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.744727 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.744728 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.755692 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.755693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.755699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.755701 LLDP, length 82 [|LLDP] 17:48:55.755711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.755712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.755713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.755715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.755716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.763950 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.763951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.763958 LLDP, length 82 [|LLDP] 17:48:55.763967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.763967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.763969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.763970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.763971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.763975 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.774958 LLDP, length 82 [|LLDP] 17:48:55.774967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.774968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1174 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.774971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.774971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.774972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.774973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.774982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.774983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.785969 LLDP, length 82 [|LLDP] 17:48:55.785983 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.785984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.785986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.785988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.785989 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.785990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.785991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.786000 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.786002 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.786004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.786009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.786011 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.786012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.786013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.794226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.794227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.794241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.794243 LLDP, length 82 [|LLDP] 17:48:55.794252 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.794253 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.794254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.794256 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.794257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.794258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.794260 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.794260 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.794262 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.794263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.794264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.805238 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.805240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.805248 LLDP, length 82 [|LLDP] 17:48:55.805257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.805258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118b 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.805259 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.805260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.805261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.805262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.805268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.805271 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.805271 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.805272 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.805274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.805275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.816249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.816250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.816258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.816259 LLDP, length 82 [|LLDP] 17:48:55.816269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.816270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 8a7b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.816272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.816273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.816274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.816276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.816277 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.816278 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.816279 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.816280 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.816281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.824514 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.824516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.824522 LLDP, length 82 [|LLDP] 17:48:55.824532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.824533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.824534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.824535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.824536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.824537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.824543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.824545 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.824546 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.824547 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.824548 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.824549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.835515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.835516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.835530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.835531 LLDP, length 82 [|LLDP] 17:48:55.835542 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.835543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.835544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.835546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.835547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.835549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.835550 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.835551 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.835552 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.835553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.835554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.843796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.843798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.843808 LLDP, length 82 [|LLDP] 17:48:55.843820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.843821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a8 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.843823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.843824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.843825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.843826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.843833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.843835 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.843836 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.843837 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.854789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.854791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.854798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.854799 LLDP, length 82 [|LLDP] 17:48:55.854810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.854811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b0 f0dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.854813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.854814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.854816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.865788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.865791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.865799 LLDP, length 82 [|LLDP] 17:48:55.865810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.865810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.865812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.865813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.865814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.865819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.874050 LLDP, length 82 [|LLDP] 17:48:55.874060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.874061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf a40f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.874063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.874064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.874065 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.874067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.874076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.874077 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.885065 LLDP, length 82 [|LLDP] 17:48:55.885079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.885080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c8 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.885082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.885083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.885084 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.885085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.885087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.885099 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.885100 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.885101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.885108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.885110 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.885111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.885112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.896070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.896072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.896087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.896088 LLDP, length 82 [|LLDP] 17:48:55.896099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.896099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.896101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.896102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.896103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.896104 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.896106 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.896106 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.896107 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.896108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.896109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.904329 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.904331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.904345 LLDP, length 82 [|LLDP] 17:48:55.904354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.904355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.904357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.904358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.904359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.904361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.904367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.904369 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.904370 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.904371 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.904371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.904373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.915362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.915364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.915373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.915374 LLDP, length 82 [|LLDP] 17:48:55.915386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.915387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11df 240f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.915389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.915390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.915391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.915393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.915394 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.915395 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.915396 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.915398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.915399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.926355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.926357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.926366 LLDP, length 82 [|LLDP] 17:48:55.926376 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.926377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.926379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.926380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.926381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.926382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.926389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.926392 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.926393 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.926393 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.926395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.926396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.934603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.934605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.934617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.934618 LLDP, length 82 [|LLDP] 17:48:55.934627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.934629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed d74a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.934630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.934631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.934633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.934634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.934635 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.934637 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.934637 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.934639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.934639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.945628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.945630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.945638 LLDP, length 82 [|LLDP] 17:48:55.945649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.945650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.945652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.945653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.945654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.945655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.945661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.945663 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.945664 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.945665 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.953878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.953880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.953890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.953891 LLDP, length 82 [|LLDP] 17:48:55.953902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.953903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fc 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.953905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.953906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.953908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.964881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.964882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.964890 LLDP, length 82 [|LLDP] 17:48:55.964899 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.964900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1204 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.964902 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.964903 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.964904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.964909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.975895 LLDP, length 82 [|LLDP] 17:48:55.975904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.975904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.975907 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.975908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.975909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.975910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.975920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.975922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.984166 LLDP, length 82 [|LLDP] 17:48:55.984182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.984183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.984186 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.984187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.984188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.984189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.984191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.984203 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.984205 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.984206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.984213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.984215 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.984216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.984217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:55.995165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:55.995167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.995175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:55.995177 LLDP, length 82 [|LLDP] 17:48:55.995188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:55.995189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121c 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:55.995190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:55.995192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:55.995193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:55.995194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:55.995209 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:55.995211 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.995212 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:55.995214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:55.995215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.006207 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.006215 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.006229 LLDP, length 82 [|LLDP] 17:48:56.006244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.006245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.006247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.006249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.006250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.006251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.006258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.006261 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.006262 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.006263 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.006264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.006265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.014446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.014454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.014465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.014466 LLDP, length 82 [|LLDP] 17:48:56.014478 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.014479 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.014481 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.014482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.014483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.014485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.014486 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.014487 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.014488 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.014489 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.014490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.025449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.025451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.025464 LLDP, length 82 [|LLDP] 17:48:56.025476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.025477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 2410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.025478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.025480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.025481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.025482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.025488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.025490 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.025491 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.025492 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.025493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.025494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.033700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.033702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.033717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.033718 LLDP, length 82 [|LLDP] 17:48:56.033730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.033731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1239 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.033733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.033734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.033735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.033737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.033738 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.033739 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.033740 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.033741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.033742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.044723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.044725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.044733 LLDP, length 82 [|LLDP] 17:48:56.044743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.044744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1241 d743 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.044746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.044748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.044749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.044750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.044757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.044759 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.044760 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.044761 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.055709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.055711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.055718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.055719 LLDP, length 82 [|LLDP] 17:48:56.055728 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.055729 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 3da9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.055731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.055732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.055734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.063967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.063969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.063976 LLDP, length 82 [|LLDP] 17:48:56.063984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.063985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1250 8a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.063986 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.063988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.063989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.063993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.074977 LLDP, length 82 [|LLDP] 17:48:56.074985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.074986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1258 f0dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.074988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.074989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.074990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.074991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.074999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.075001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.085989 LLDP, length 82 [|LLDP] 17:48:56.086001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.086002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 5742 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.086004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.086005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.086006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.086008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.086017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.086019 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.086020 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.086021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.086028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.086029 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.086031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.086032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.094244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.094246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.094258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.094259 LLDP, length 82 [|LLDP] 17:48:56.094269 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.094270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 a410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.094272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.094273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.094275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.094276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.094278 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.094279 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.094280 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.094281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.094282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.105252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.105255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.105267 LLDP, length 82 [|LLDP] 17:48:56.105275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.105276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1270 0a76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.105278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.105279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.105281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.105282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.105287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.105289 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.105290 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.105291 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.105292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.105293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.116265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.116266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.116279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.116280 LLDP, length 82 [|LLDP] 17:48:56.116289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.116291 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1278 70dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.116292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.116293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.116295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.116296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.116297 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.116299 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.116300 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.116301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.116303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.124521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.124523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.124535 LLDP, length 82 [|LLDP] 17:48:56.124543 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.124544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 127e bda9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.124545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.124547 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.124548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.124549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.124555 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.124557 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.124558 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.124559 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.124560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.124561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.135529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.135530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.135543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.135544 LLDP, length 82 [|LLDP] 17:48:56.135553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.135554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1287 2410 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.135555 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.135556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.135558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.135559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.135561 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.135562 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.135563 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.135563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 17:48:56.135565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 17:48:56.143801 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 17:48:56.143803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.143809 LLDP, length 82 [|LLDP] 17:48:56.143817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 17:48:56.143818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 128d 70dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 17:48:56.143820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 17:48:56.143821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 17:48:56.143822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 17:48:56.143823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 17:48:56.143829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 17:48:56.143831 IP 1.1.1.2.30178 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 17:48:56.143832 IP 1.1.1.2.49329 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 17:48:56.143833 IP 192.168.1.1.56130 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7860 packets captured 7860 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:49:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:49:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:49:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding | 156.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2586' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.3, port 36968 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:49:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7cec50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI streamA SIP-DIP N/A Tx 221 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI streamB SIP-DIP N/A Tx 221 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:c5:33:b7","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:51:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:51:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets | 188.64 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2614' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.3, port 47536 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:51:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb651870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 603 Rx 603 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:54:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:54:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down | 125.71 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2638' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.3, port 41406 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:54:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7e1e40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 205 Rx 205 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:6d:88:7a","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:6d:88:7a","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:56:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:56:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster | 190.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2670' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.3, port 58118 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 17:56:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb651270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:00:06 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:00:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic | 221.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2700' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.3, port 41908 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:00:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb780520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 5299 Rx 5299 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 5299 Rx 5299 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 5299 Rx 5299 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb783340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 8954 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 8954 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 8954 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7815d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 8963 Rx 8963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 8963 Rx 8963 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 8963 Rx 8963 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:03:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:03:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs | 150.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2728' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.3, port 57524 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:03:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7803d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridge SIP-DIP N/A Tx 152 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:39:b9:7e","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:06:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:06:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic | 218.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2756' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.3, port 60692 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:06:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c5ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 90417 Rx 90417 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG infra2:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c6200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 91187 Rx 91187 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG infra2:Logger.py:156 16002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:09:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:09:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[1510] | 202.23 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2784' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[1510]">Starting testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.3, port 59920 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:09:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:09:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp33 mtu 1510 && ip link set dev swp34 mtu 1510 && ip link set dev swp35 mtu 1510 && ip link set dev swp36 mtu 1510 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb782fb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 875 Rx 875 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 875 Rx 875 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 875 Rx 875 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 875 Rx 875 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[1510] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:13:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:13:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[8998] | 207.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2818' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[8998]">Starting testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.3, port 47874 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:13:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:13:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp33 mtu 8998 && ip link set dev swp34 mtu 8998 && ip link set dev swp35 mtu 8998 && ip link set dev swp36 mtu 8998 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c7700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 865 Rx 865 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 865 Rx 865 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 865 Rx 865 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 865 Rx 865 Loss 0.000 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[8998] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:16:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:16:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9000] | 203.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2852' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9000]">Starting testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.3, port 36096 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:16:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:16:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp33 mtu 9000 && ip link set dev swp34 mtu 9000 && ip link set dev swp35 mtu 9000 && ip link set dev swp36 mtu 9000 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c65f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 829 Rx 829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 829 Rx 829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 829 Rx 829 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 829 Rx 829 Loss 0.000 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9000] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:20:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:20:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_size[9002] | 203.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2886' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_size[9002]">Starting testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.3, port 58026 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:20:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:20:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: ip link set dev swp33 mtu 9002 && ip link set dev swp34 mtu 9002 && ip link set dev swp35 mtu 9002 && ip link set dev swp36 mtu 9002 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG infra2:Logger.py:156 Error: mtu greater than device maximum. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c4a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 875 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 875 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 875 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 875 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_size[9002] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:23:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:23:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address | 192.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2920' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.3, port 34482 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:23:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c4670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 313 Rx 312 Frames Delta 1 Loss 0.319 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 313 Rx 312 Frames Delta 1 Loss 0.319 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 313 Rx 312 Frames Delta 1 Loss 0.319 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 313 Rx 312 Frames Delta 1 Loss 0.319 INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:37:48:13","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:26:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:26:46 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate | 168.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2948' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.3, port 51858 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:26:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7838e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 2833 Rx 2833 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI streamB SIP-DIP N/A Tx 2833 Rx 2833 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:29:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:29:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address | 198.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2972' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.3, port 47486 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:29:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c4370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI all_zeros SIP-DIP N/A Tx 312 Rx 312 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI broadcast SIP-DIP N/A Tx 312 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI multicast_1 SIP-DIP N/A Tx 312 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI multicast_2 SIP-DIP N/A Tx 312 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:04:69:70","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:32:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:32:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":110,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans | 397.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3000' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.3, port 53288 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:32:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6511e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 203 Rx 203 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 203 Rx 203 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:23:16:5c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c61d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 206 Rx 206 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 206 Rx 206 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:23:16:5c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c6d70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=60, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:23:16:5c","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=60, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=22] Command: bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:39:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:39:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":111,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize | 198.97 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3040' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.3, port 37634 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:39:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2791516536 bad_octets_received: 3897562 mac_trans_error: 0 broadcast_frames_received: 16556 multicast_frames_received: 32003 frames_64_octets: 1822 frames_65_to_127_octets: 65786 frames_128_to_255_octets: 2826 frames_256_to_511_octets: 5866366 frames_512_to_1023_octets: 4825517 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 1840 broadcast_frames_sent: 866 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26662 oversize: 1186 jabber: 0 rx_error_frame_received: 0 bad_crc: 11148 collisions: 14 late_collision: 0 unicast_frames_received: 8342113 unicast_frames_sent: 2364801 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1232161604 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 1232013048 bad_octets_received: 3820752 mac_trans_error: 0 broadcast_frames_received: 729 multicast_frames_received: 312 frames_64_octets: 1814 frames_65_to_127_octets: 31934 frames_128_to_255_octets: 414 frames_256_to_511_octets: 4977140 frames_512_to_1023_octets: 4775740 frames_1024_to_max_octets: 7010 excessive_collision: 1 multicast_frames_sent: 18080 broadcast_frames_sent: 10240 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26769 oversize: 1186 jabber: 0 rx_error_frame_received: 0 bad_crc: 11005 collisions: 17 late_collision: 0 unicast_frames_received: 2365021 unicast_frames_sent: 7388665 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2535134341 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 25071800 bad_octets_received: 1805105 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 312 frames_64_octets: 624 frames_65_to_127_octets: 21066 frames_128_to_255_octets: 385 frames_256_to_511_octets: 1226 frames_512_to_1023_octets: 252956 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17559 broadcast_frames_sent: 5144 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 1 oversize: 1186 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7968 unicast_frames_sent: 252160 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152295014 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 24865464 bad_octets_received: 1805092 mac_trans_error: 0 broadcast_frames_received: 116 multicast_frames_received: 312 frames_64_octets: 620 frames_65_to_127_octets: 21063 frames_128_to_255_octets: 392 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 252333 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17234 broadcast_frames_sent: 5151 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 1186 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7566 unicast_frames_sent: 252251 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152179400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2791516536 bad_octets_received: 24805276 mac_trans_error: 0 broadcast_frames_received: 16556 multicast_frames_received: 32003 frames_64_octets: 1822 frames_65_to_127_octets: 65786 frames_128_to_255_octets: 2827 frames_256_to_511_octets: 5866366 frames_512_to_1023_octets: 4825517 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 1841 broadcast_frames_sent: 866 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11148 collisions: 14 late_collision: 0 unicast_frames_received: 8342113 unicast_frames_sent: 2364801 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1232161852 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 1232013048 bad_octets_received: 24728466 mac_trans_error: 0 broadcast_frames_received: 729 multicast_frames_received: 312 frames_64_octets: 1814 frames_65_to_127_octets: 31934 frames_128_to_255_octets: 415 frames_256_to_511_octets: 4977140 frames_512_to_1023_octets: 4775740 frames_1024_to_max_octets: 7010 excessive_collision: 1 multicast_frames_sent: 18081 broadcast_frames_sent: 10240 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11005 collisions: 17 late_collision: 0 unicast_frames_received: 2365021 unicast_frames_sent: 7388665 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2535134589 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 25071800 bad_octets_received: 22712819 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 312 frames_64_octets: 624 frames_65_to_127_octets: 21066 frames_128_to_255_octets: 386 frames_256_to_511_octets: 1226 frames_512_to_1023_octets: 252956 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17560 broadcast_frames_sent: 5144 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7968 unicast_frames_sent: 252160 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152295262 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 24865464 bad_octets_received: 22712806 mac_trans_error: 0 broadcast_frames_received: 116 multicast_frames_received: 312 frames_64_octets: 620 frames_65_to_127_octets: 21063 frames_128_to_255_octets: 393 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 252333 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17235 broadcast_frames_sent: 5151 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7566 unicast_frames_sent: 252251 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152179648 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6cc3a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13737 Rx 0 Frames Delta 13737 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13737 Rx 0 Frames Delta 13737 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13737 Rx 0 Frames Delta 13737 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13737 Rx 0 Frames Delta 13737 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:9d:fc","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:42:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:42:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize | 201.17 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3084' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.3, port 37564 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:42:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2791517048 bad_octets_received: 24805276 mac_trans_error: 0 broadcast_frames_received: 16564 multicast_frames_received: 32003 frames_64_octets: 1855 frames_65_to_127_octets: 65804 frames_128_to_255_octets: 2834 frames_256_to_511_octets: 5866366 frames_512_to_1023_octets: 4825517 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 1867 broadcast_frames_sent: 890 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11148 collisions: 14 late_collision: 0 unicast_frames_received: 8342113 unicast_frames_sent: 2364801 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1232166896 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 1232013560 bad_octets_received: 24728466 mac_trans_error: 0 broadcast_frames_received: 737 multicast_frames_received: 312 frames_64_octets: 1847 frames_65_to_127_octets: 31950 frames_128_to_255_octets: 421 frames_256_to_511_octets: 4977140 frames_512_to_1023_octets: 4775740 frames_1024_to_max_octets: 7010 excessive_collision: 1 multicast_frames_sent: 18104 broadcast_frames_sent: 10264 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11005 collisions: 17 late_collision: 0 unicast_frames_received: 2365021 unicast_frames_sent: 7388665 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2535139157 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 25072312 bad_octets_received: 22712819 mac_trans_error: 0 broadcast_frames_received: 132 multicast_frames_received: 312 frames_64_octets: 657 frames_65_to_127_octets: 21082 frames_128_to_255_octets: 392 frames_256_to_511_octets: 1226 frames_512_to_1023_octets: 252956 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17583 broadcast_frames_sent: 5168 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7968 unicast_frames_sent: 252160 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152299870 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 24865976 bad_octets_received: 22712806 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 312 frames_64_octets: 653 frames_65_to_127_octets: 21080 frames_128_to_255_octets: 399 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 252333 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17259 broadcast_frames_sent: 5175 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7566 unicast_frames_sent: 252251 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152184330 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2791517048 bad_octets_received: 25634038 mac_trans_error: 0 broadcast_frames_received: 16564 multicast_frames_received: 32003 frames_64_octets: 1855 frames_65_to_127_octets: 65804 frames_128_to_255_octets: 2835 frames_256_to_511_octets: 5866366 frames_512_to_1023_octets: 4825517 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 1868 broadcast_frames_sent: 890 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11148 collisions: 14 late_collision: 0 unicast_frames_received: 8342113 unicast_frames_sent: 2364801 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1232167144 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 1232013560 bad_octets_received: 25557228 mac_trans_error: 0 broadcast_frames_received: 737 multicast_frames_received: 312 frames_64_octets: 1847 frames_65_to_127_octets: 31950 frames_128_to_255_octets: 422 frames_256_to_511_octets: 4977140 frames_512_to_1023_octets: 4775740 frames_1024_to_max_octets: 7010 excessive_collision: 1 multicast_frames_sent: 18105 broadcast_frames_sent: 10264 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11005 collisions: 17 late_collision: 0 unicast_frames_received: 2365021 unicast_frames_sent: 7388665 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 2535139405 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 25072312 bad_octets_received: 23541581 mac_trans_error: 0 broadcast_frames_received: 132 multicast_frames_received: 312 frames_64_octets: 657 frames_65_to_127_octets: 21082 frames_128_to_255_octets: 393 frames_256_to_511_octets: 1226 frames_512_to_1023_octets: 252956 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17584 broadcast_frames_sent: 5168 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7968 unicast_frames_sent: 252160 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152300118 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 24865976 bad_octets_received: 23541568 mac_trans_error: 0 broadcast_frames_received: 124 multicast_frames_received: 312 frames_64_octets: 653 frames_65_to_127_octets: 21080 frames_128_to_255_octets: 400 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 252333 frames_1024_to_max_octets: 7010 excessive_collision: 0 multicast_frames_sent: 17260 broadcast_frames_sent: 5175 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 7566 unicast_frames_sent: 252251 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 152184578 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6ce290>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 14289 Rx 0 Frames Delta 14289 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 14289 Rx 0 Frames Delta 14289 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 14289 Rx 0 Frames Delta 14289 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 14289 Rx 0 Frames Delta 14289 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:36:45:63","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:46:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:46:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":113,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan | 166.25 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3128' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.3, port 39760 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:46:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:cb:54:65","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6cda80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 205 Rx 205 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:48:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:48:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs | 783.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3164' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.3, port 33944 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 18:48:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c68f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90930 Rx 90930 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c5390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90675 Rx 90675 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 90675 Rx 90675 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c5ff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 91033 Rx 91033 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 91033 Rx 91033 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 91033 Rx 91033 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c4160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 91070 Rx 91070 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 91070 Rx 91070 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 91070 Rx 91070 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 91070 Rx 91070 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c5240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90869 Rx 90869 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 90869 Rx 90869 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 90869 Rx 90869 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 90869 Rx 90869 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 90869 Rx 90869 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6ccd90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 88019 Rx 88019 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb781e10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 87818 Rx 87818 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG infra2:Logger.py:156 16004 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:01:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:01:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":115,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries | 191.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3202' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.3, port 58560 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:02:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb7809d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 312 Rx 312 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 312 Rx 312 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 312 Rx 312 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 312 Rx 312 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:05:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:05:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":116,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 | 185.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3230' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.3, port 46808 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:05:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6cce20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 160690 Rx 160690 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 160690 Rx 160690 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 160690 Rx 160690 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb651210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 268899 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 268899 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 268899 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6ccd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 231510 Rx 231510 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 231510 Rx 231510 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 231510 Rx 231510 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:08:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:08:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":117,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps | 212.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3256' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.3, port 42964 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:08:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:08:17 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 3683Kbps, traffic frame size: 495, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 8966 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 && tc filter add dev swp33 ingress protocol 0x0800 pref 17932 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 8966 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 && tc filter add dev swp33 ingress protocol 0x0800 pref 17932 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:1d:01:77:2e:12","src_mac":"02:10:b1:d0:ee:84","eth_type":"ipv4","ip_proto":"udp","dst_ip":"120.134.208.219","src_ip":"22.219.26.202","dst_port":4235,"src_port":31212},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:1d:01:77:2e:12_src_mac_02:10:b1:d0:ee:84_eth_type_ipv4_ip_proto_udp_dst_ip_120.134.208.219_src_ip_22.219.26.202_dst_port_4235_src_port_31212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG infra2:Logger.py:156 4040 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG infra2:Logger.py:156 4057 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb650580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:1d:01:77:2e:12_src_mac_02:10:b1:d0:ee:84_eth_type_ipv4_ip_proto_udp_dst_ip_120.134.208.219_src_ip_22.219.26.202_dst_port_4235_src_port_31212 Tx 5334030 Rx 88160 Frames Delta 5245870 Loss 98.347 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 8966 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 8966 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG infra2:Logger.py:156 4038 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG infra2:Logger.py:156 4056 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c4f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:1d:01:77:2e:12_src_mac_02:10:b1:d0:ee:84_eth_type_ipv4_ip_proto_udp_dst_ip_120.134.208.219_src_ip_22.219.26.202_dst_port_4235_src_port_31212 Tx 6304881 Rx 104229 Frames Delta 6200652 Loss 98.347 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp33 ingress pref 8966 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 26898 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 26898 flower skip_sw src_mac 02:10:b1:d0:ee:84 dst_mac 02:1d:01:77:2e:12 src_ip 22.219.26.202 dst_ip 120.134.208.219 ip_proto udp src_port 31212 dst_port 4235 action trap action police rate 3683911bps burst 3684911 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG infra2:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb555510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:1d:01:77:2e:12_src_mac_02:10:b1:d0:ee:84_eth_type_ipv4_ip_proto_udp_dst_ip_120.134.208.219_src_ip_22.219.26.202_dst_port_4235_src_port_31212 Tx 6791480 Rx 0 Frames Delta 6791480 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:11:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:11:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":118,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:11:49 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag | 253.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3360' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.3, port 47036 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:11:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:11:50 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 1426Kbps, traffic frame size: 1003, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp34 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp35 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp36 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp34 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp35 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 && tc filter add dev swp36 ingress protocol ipv4 flower skip_sw src_mac 02:d4:1e:0e:df:5d dst_mac 02:6f:25:f4:76:e3 src_ip 104.208.23.101 dst_ip 96.198.151.44 ip_proto tcp src_port 59796 dst_port 6140 action trap action police rate 1426588bps burst 1427588 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:6f:25:f4:76:e3","src_mac":"02:d4:1e:0e:df:5d","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"96.198.151.44","src_ip":"104.208.23.101","dst_port":6140,"src_port":59796},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:6f:25:f4:76:e3_src_mac_02:d4:1e:0e:df:5d_eth_type_ipv4_ip_proto_tcp_dst_ip_96.198.151.44_src_ip_104.208.23.101_dst_port_6140_src_port_59796 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_dst_mac_02:6f:25:f4:76:e3_src_mac_02:d4:1e:0e:df:5d_eth_type_ipv4_ip_proto_tcp_dst_ip_96.198.151.44_src_ip_104.208.23.101_dst_port_6140_src_port_59796 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_dst_mac_02:6f:25:f4:76:e3_src_mac_02:d4:1e:0e:df:5d_eth_type_ipv4_ip_proto_tcp_dst_ip_96.198.151.44_src_ip_104.208.23.101_dst_port_6140_src_port_59796 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_dst_mac_02:6f:25:f4:76:e3_src_mac_02:d4:1e:0e:df:5d_eth_type_ipv4_ip_proto_tcp_dst_ip_96.198.151.44_src_ip_104.208.23.101_dst_port_6140_src_port_59796 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG infra2:Logger.py:156 4038 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG infra2:Logger.py:156 4046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:15:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:03 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:05:e5:33:1f:6d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a6","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a7","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":119,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled | 152.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3459' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.3, port 55356 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG infra2:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG infra2:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:16:04 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 744Kbps, traffic frame size: 117, expected trap rate: 6364pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:ea:8e:c3:73:55 dst_mac 02:e2:ab:4a:33:14 src_ip 50.253.59.178 dst_ip 125.28.57.103 ip_proto tcp src_port 63628 dst_port 19689 action trap action police rate 744588bps burst 745588 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:ea:8e:c3:73:55 dst_mac 02:e2:ab:4a:33:14 src_ip 50.253.59.178 dst_ip 125.28.57.103 ip_proto tcp src_port 63628 dst_port 19689 action trap action police rate 744588bps burst 745588 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:e2:ab:4a:33:14","src_mac":"02:ea:8e:c3:73:55","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"125.28.57.103","src_ip":"50.253.59.178","dst_port":19689,"src_port":63628},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:e2:ab:4a:33:14_src_mac_02:ea:8e:c3:73:55_eth_type_ipv4_ip_proto_tcp_dst_ip_125.28.57.103_src_ip_50.253.59.178_dst_port_19689_src_port_63628 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG infra2:Logger.py:156 6347 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG infra2:Logger.py:156 6367 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:18:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:18:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:18:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG infra2:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag | 312.79 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3550' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.3, port 60964 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:18:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:18:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 28 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG infra2:Logger.py:156 306 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 306 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 206 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG infra2:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1006 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed DEBUG infra2:Logger.py:156 10101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10101 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG infra2:Logger.py:156 1014 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1014 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed DEBUG infra2:Logger.py:156 305 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 305 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG infra2:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1010 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed DEBUG infra2:Logger.py:156 10211 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10211 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG infra2:Logger.py:156 1032 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1032 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:5a:7c:a1:90:91 vlan_id 2874 vlan_ethtype ip src_ip 50.217.80.166 ip_proto tcp dst_port 60099 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:5a:7c:a1:90:91 vlan_id 2874 vlan_ethtype ip src_ip 50.217.80.166 ip_proto tcp dst_port 60099 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG infra2:Logger.py:156 4037 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG infra2:Logger.py:156 4056 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:48 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:48 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] | 307.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3749' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.3, port 56266 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:23:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 28 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close DEBUG infra2:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG infra2:Logger.py:156 1004 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1004 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG infra2:Logger.py:156 1005 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1005 expected 1000 for stat_code 206 DEBUG infra2:Logger.py:156 10182 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10182 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg dhcp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG infra2:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 104 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close DEBUG infra2:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 104 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed DEBUG infra2:Logger.py:156 310 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 310 expected 300 for trap_code arp_response DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG infra2:Logger.py:156 1002 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1002 expected 1000 for trap_code ssh DEBUG infra2:Logger.py:156 1012 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1012 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed DEBUG infra2:Logger.py:156 10223 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10223 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:24:23:98:5f:c8 vlan_id 320 vlan_ethtype ipv4 src_ip 61.233.146.159 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:24:23:98:5f:c8 vlan_id 320 vlan_ethtype ipv4 src_ip 61.233.146.159 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG infra2:Logger.py:156 4040 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4040 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG infra2:Logger.py:156 4055 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4055 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:28:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:28:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] | 365.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3922' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.3, port 48764 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:28:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:28:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed DEBUG infra2:Logger.py:156 304 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 304 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 206 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed DEBUG infra2:Logger.py:156 1008 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1008 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG infra2:Logger.py:156 10119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10119 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG infra2:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1020 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg dhcp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG infra2:Logger.py:156 312 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 312 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed DEBUG infra2:Logger.py:156 10106 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10106 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG infra2:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1006 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed DEBUG infra2:Logger.py:156 1013 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1013 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:a6:5a:77:c5:e3 dst_mac 02:b4:e3:15:42:68 vlan_id 699 vlan_ethtype 0x0800 src_ip 52.186.132.238 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:a6:5a:77:c5:e3 dst_mac 02:b4:e3:15:42:68 vlan_id 699 vlan_ethtype 0x0800 src_ip 52.186.132.238 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw src_mac 02:e6:5f:cb:40:68 vlan_id 2896 vlan_ethtype ip src_ip 50.30.223.135 dst_ip 89.208.94.54 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw src_mac 02:e6:5f:cb:40:68 vlan_id 2896 vlan_ethtype ip src_ip 50.30.223.135 dst_ip 89.208.94.54 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG infra2:Logger.py:156 4035 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4035 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG infra2:Logger.py:156 4055 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4055 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:35:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:35:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] | 537.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4107' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.3, port 55958 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:35:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:35:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG infra2:Logger.py:156 323 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 323 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 206 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed DEBUG infra2:Logger.py:156 1016 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1016 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG infra2:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1009 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed DEBUG infra2:Logger.py:156 10109 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10109 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed DEBUG infra2:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 208 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG infra2:Logger.py:156 117 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 117 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG infra2:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 121 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg lldp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG infra2:Logger.py:156 318 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 318 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close DEBUG infra2:Logger.py:156 210 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 210 expected 200 for trap_code lldp DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code arp_bc DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg bgp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG infra2:Logger.py:156 10186 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10186 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close DEBUG infra2:Logger.py:156 1024 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1024 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed DEBUG infra2:Logger.py:156 1017 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1017 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:b3:fd:12:e1:a6 vlan_id 3323 vlan_ethtype 0x0800 dst_ip 111.104.133.177 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:b3:fd:12:e1:a6 vlan_id 3323 vlan_ethtype 0x0800 dst_ip 111.104.133.177 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw src_mac 02:ce:4c:6a:79:30 dst_mac 02:5c:11:2e:62:28 vlan_id 1160 vlan_ethtype ipv4 dst_ip 112.57.7.188 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw src_mac 02:ce:4c:6a:79:30 dst_mac 02:5c:11:2e:62:28 vlan_id 1160 vlan_ethtype ipv4 dst_ip 112.57.7.188 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 802.1q flower skip_sw dst_mac 02:d4:ce:df:62:56 vlan_id 1653 vlan_ethtype 0x0800 src_ip 106.209.188.193 dst_ip 31.231.103.22 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp35 ingress protocol 802.1q flower skip_sw dst_mac 02:d4:ce:df:62:56 vlan_id 1653 vlan_ethtype 0x0800 src_ip 106.209.188.193 dst_ip 31.231.103.22 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp36 ingress protocol 0x8100 flower skip_sw dst_mac 02:e3:32:54:13:36 vlan_id 3706 vlan_ethtype 0x0800 src_ip 56.158.168.60 dst_ip 12.195.118.10 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp36 ingress protocol 0x8100 flower skip_sw dst_mac 02:e3:32:54:13:36 vlan_id 3706 vlan_ethtype 0x0800 src_ip 56.158.168.60 dst_ip 12.195.118.10 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG infra2:Logger.py:156 4039 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4039 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG infra2:Logger.py:156 4051 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4051 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:43:59 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:43:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable | 1345.70 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4316' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.3, port 37300 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:44:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG infra2:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG infra2:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:44:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 19:44:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG infra2:Logger.py:156 66111 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66111 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG infra2:Logger.py:156 66416 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66416 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG infra2:Logger.py:156 66121 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66121 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG infra2:Logger.py:156 66397 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66397 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG infra2:Logger.py:156 66699 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66699 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG infra2:Logger.py:156 67186 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 67186 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG infra2:Logger.py:156 66159 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66159 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG infra2:Logger.py:156 66350 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66350 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG infra2:Logger.py:156 66110 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66110 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG infra2:Logger.py:156 66307 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66307 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG infra2:Logger.py:156 66125 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66125 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG infra2:Logger.py:156 66387 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66387 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG infra2:Logger.py:156 66106 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66106 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG infra2:Logger.py:156 66251 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66251 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG infra2:Logger.py:156 66111 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66111 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG infra2:Logger.py:156 66297 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66297 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG infra2:Logger.py:156 66106 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66106 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG infra2:Logger.py:156 66261 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66261 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG infra2:Logger.py:156 66106 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66106 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG infra2:Logger.py:156 66272 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66272 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG infra2:Logger.py:156 66115 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66115 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG infra2:Logger.py:156 66324 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66324 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG infra2:Logger.py:156 66110 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66110 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG infra2:Logger.py:156 66336 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66336 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG infra2:Logger.py:156 66120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66120 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG infra2:Logger.py:156 66329 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66329 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG infra2:Logger.py:156 66135 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66135 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG infra2:Logger.py:156 66329 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66329 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG infra2:Logger.py:156 66139 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66139 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG infra2:Logger.py:156 66339 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66339 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:4d:4c:95:b0:97 vlan_id 1523 vlan_ethtype ipv4 dst_ip 82.255.69.153 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:4d:4c:95:b0:97 vlan_id 1523 vlan_ethtype ipv4 dst_ip 82.255.69.153 action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG infra2:Logger.py:156 66102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66102 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG infra2:Logger.py:156 66318 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66318 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:06:25 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:06:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG infra2:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] | 225.20 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4499' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.3, port 39738 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:06:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:06:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 action trap action police rate 3725230bps burst 3726230 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 action trap action police rate 3725230bps burst 3726230 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 src_mac 02:3d:72:81:1a:b7 action trap action police rate 1862615bps burst 1863615 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 src_mac 02:3d:72:81:1a:b7 action trap action police rate 1862615bps burst 1863615 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG infra2:Logger.py:156 3803 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3803 expected 3778.1237322515212 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG infra2:Logger.py:156 3815 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3815 expected 3778.1237322515212 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 22982 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 22982 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 action trap action police rate 3725230bps burst 3726230 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 22982 flower skip_sw dst_mac 02:40:80:66:c9:cf vlan_id 3303 action trap action police rate 3725230bps burst 3726230 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG infra2:Logger.py:156 1902 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1902 expected 1889.0618661257606 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG infra2:Logger.py:156 1907 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1907 expected 1889.0618661257606 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:10:10 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] | 226.78 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4577' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.3, port 38940 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:10:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:10:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 action trap action police rate 3797119bps burst 3798119 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 action trap action police rate 3797119bps burst 3798119 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 src_mac 02:21:9e:d9:9a:62 action trap action police rate 949279bps burst 950279 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 src_mac 02:21:9e:d9:9a:62 action trap action police rate 949279bps burst 950279 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG infra2:Logger.py:156 3308 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3308 expected 3293.251517779705 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG infra2:Logger.py:156 3316 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3316 expected 3293.251517779705 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 2043 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 2043 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 action trap action police rate 3797119bps burst 3798119 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 2043 flower skip_sw dst_mac 02:d6:6c:29:81:a5 vlan_id 3146 action trap action police rate 3797119bps burst 3798119 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG infra2:Logger.py:156 818 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 818 expected 823.3122289679098 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG infra2:Logger.py:156 821 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 821 expected 823.3122289679098 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:13:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] | 262.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4655' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.3, port 45208 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:13:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:13:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 12122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp33 ingress protocol ip pref 12122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 13122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 254129bps burst 255129 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp33 ingress protocol ip pref 13122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 254129bps burst 255129 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG infra2:Logger.py:156 1064 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1064 expected 1062.191222570533 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG infra2:Logger.py:156 1068 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1068 expected 1062.191222570533 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 12122 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp33 ingress pref 12122 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 12122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp33 ingress protocol ip pref 12122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG infra2:Logger.py:156 1064 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1064 expected 1062.191222570533 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG infra2:Logger.py:156 1067 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1067 expected 1062.191222570533 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 12122 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp33 ingress pref 12122 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 14122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp33 ingress protocol ip pref 14122 flower skip_sw src_mac 02:e6:2a:35:f8:14 dst_ip 111.209.253.198 action trap action police rate 1016517bps burst 1017517 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG infra2:Logger.py:156 266 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 266 expected 265.54754440961335 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG infra2:Logger.py:156 267 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 267 expected 265.54754440961335 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:18:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] | 258.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4743' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.3, port 55736 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:18:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:18:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 22022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 22022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 23022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 929752bps burst 930752 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 23022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 929752bps burst 930752 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG infra2:Logger.py:156 3554 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3554 expected 3530.706329113924 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG infra2:Logger.py:156 3561 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3561 expected 3530.706329113924 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 22022 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp33 ingress pref 22022 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 22022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 22022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG infra2:Logger.py:156 3552 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3552 expected 3530.706329113924 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG infra2:Logger.py:156 3564 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3564 expected 3530.706329113924 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 22022 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp33 ingress pref 22022 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 pref 24022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp33 ingress protocol 0x9300 pref 24022 flower skip_sw src_mac 02:e9:0c:8b:f1:0d dst_mac 02:7a:56:e3:e5:c9 action trap action police rate 2789258bps burst 2790258 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG infra2:Logger.py:156 1178 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1178 expected 1176.9012658227848 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG infra2:Logger.py:156 1183 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1183 expected 1176.9012658227848 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:22:38 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] | 160.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4831' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.3, port 60014 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:22:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:22:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 1333 action trap action police rate 2298109bps burst 2299109 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 1333 action trap action police rate 2298109bps burst 2299109 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1333,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1333_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG infra2:Logger.py:156 2227 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2227 expected 2222.5425531914893 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG infra2:Logger.py:156 2234 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2234 expected 2222.5425531914893 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:25:18 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] | 153.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4899' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.3, port 40172 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:25:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:25:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 60.77.159.160 dst_ip 51.193.158.215 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 4376309bps burst 4377309 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 60.77.159.160 dst_ip 51.193.158.215 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 4376309bps burst 4377309 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"51.193.158.215","src_ip":"60.77.159.160"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_51.193.158.215_src_ip_60.77.159.160 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG infra2:Logger.py:156 3567 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3567 expected 3543.57004048583 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG infra2:Logger.py:156 3576 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3576 expected 3543.57004048583 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:27:52 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] | 161.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4967' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.3, port 45778 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:27:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:27:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 26691 dst_port 13186 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 5218507bps burst 5219507 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 26691 dst_port 13186 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 5218507bps burst 5219507 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":13186,"src_port":26691},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_13186_src_port_26691 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG infra2:Logger.py:156 3749 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3749 expected 3792.5196220930234 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG infra2:Logger.py:156 3763 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3763 expected 3792.5196220930234 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:30:34 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_random | 160.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5035' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.3, port 48206 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:30:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:30:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:58:85:a6:3a:ba dst_mac 02:a4:e2:f8:be:00 action trap action police rate 1931299bps burst 1932299 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:58:85:a6:3a:ba dst_mac 02:a4:e2:f8:be:00 action trap action police rate 1931299bps burst 1932299 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37120]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:a4:e2:f8:be:00","src_mac":"02:58:85:a6:3a:ba","eth_type":"9100"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:a4:e2:f8:be:00_src_mac_02:58:85:a6:3a:ba_eth_type_9100 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG infra2:Logger.py:156 3962 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3962 expected 3949.486707566462 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG infra2:Logger.py:156 3975 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3975 expected 3949.486707566462 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:33:14 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_policer_log | 159.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5103' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.3, port 52104 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:33:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:33:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:b2:94:5f:01:43 src_ip 87.14.57.61 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:b2:94:5f:01:43 src_ip 87.14.57.61 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b2:94:5f:01:43","eth_type":"ipv4","src_ip":"87.14.57.61"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower dst_mac 02:b2:94:5f:01:43 src_ip 87.14.57.61 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp33 ingress protocol ip flower dst_mac 02:b2:94:5f:01:43 src_ip 87.14.57.61 action xt limit 3/sec -j LOG INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG infra2:Logger.py:156 tablename: mangle hook: NF_IP_POST_ROUTING target: LOG level warning index 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b2:94:5f:01:43_eth_type_ipv4_src_ip_87.14.57.61 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG infra2:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG infra2:Logger.py:156 50 INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG infra2:Logger.py:156 31 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 31 expected 31 for stat_code 195 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG infra2:Logger.py:156 31 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 31 expected 31 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:35:54 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=59] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=60] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=60] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] | 160.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5175' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.3, port 46648 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:35:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:35:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:88:46:30:27:10 vlan_id 473 action trap action police rate 9756860.0bit burst 9757860.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:88:46:30:27:10 vlan_id 473 action trap action police rate 9756860.0bit burst 9757860.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":473,"src_mac":"02:88:46:30:27:10"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_473_src_mac_02:88:46:30:27:10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG infra2:Logger.py:156 2488 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2488 expected 2680.456043956044 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG infra2:Logger.py:156 2496 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2496 expected 2680.456043956044 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:38:34 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] | 159.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5243' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.3, port 38428 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:38:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:38:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:b0:47:55:15:3a dst_ip 121.66.228.180 action trap action police rate 10157.417kbit burst 11157.417 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:b0:47:55:15:3a dst_ip 121.66.228.180 action trap action police rate 10157.417kbit burst 11157.417 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:b0:47:55:15:3a","eth_type":"ipv4","dst_ip":"121.66.228.180"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:b0:47:55:15:3a_eth_type_ipv4_dst_ip_121.66.228.180 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG infra2:Logger.py:156 2817 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2817 expected 2980.462734741784 for stat_code 195 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG infra2:Logger.py:156 2823 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2823 expected 2980.462734741784 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:41:13 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] | 159.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5311' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.3, port 42538 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:41:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:41:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:31:80:93:10:e9 dst_mac 02:d3:57:51:4a:0b vlan_id 3471 vlan_ethtype ip src_ip 95.235.157.97 action trap action police rate 0.005305123gbit burst 1000.005305123 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:31:80:93:10:e9 dst_mac 02:d3:57:51:4a:0b vlan_id 3471 vlan_ethtype ip src_ip 95.235.157.97 action trap action police rate 0.005305123gbit burst 1000.005305123 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3471,"vlan_ethtype":"ip","dst_mac":"02:d3:57:51:4a:0b","src_mac":"02:31:80:93:10:e9","eth_type":"ipv4","src_ip":"95.235.157.97"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3471_vlan_ethtype_ip_dst_mac_02:d3:57:51:4a:0b_src_mac_02:31:80:93:10:e9_eth_type_ipv4_src_ip_95.235.157.97 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG infra2:Logger.py:156 1760 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1760 expected 1749.7107519788917 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG infra2:Logger.py:156 1763 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1763 expected 1749.7107519788917 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:43:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] | 164.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5379' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.3, port 44322 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:43:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:43:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:8a:43:38:a9:9d src_ip 50.2.97.161 ip_proto udp src_port 41238 dst_port 7824 action trap action police rate 1893374.0bps burst 1894374.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw dst_mac 02:8a:43:38:a9:9d src_ip 50.2.97.161 ip_proto udp src_port 41238 dst_port 7824 action trap action police rate 1893374.0bps burst 1894374.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:8a:43:38:a9:9d","eth_type":"ipv4","ip_proto":"udp","src_ip":"50.2.97.161","dst_port":7824,"src_port":41238},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:8a:43:38:a9:9d_eth_type_ipv4_ip_proto_udp_src_ip_50.2.97.161_dst_port_7824_src_port_41238 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG infra2:Logger.py:156 3855 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3855 expected 3840.5152129817443 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG infra2:Logger.py:156 3865 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3865 expected 3840.5152129817443 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:46:37 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] | 160.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5447' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.3, port 57756 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:46:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:46:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:c4:0b:64:fb:19 src_ip 39.213.14.210 dst_ip 42.171.227.118 ip_proto udp dst_port 1732 action trap action police rate 1087.3245kbps burst 2087.3244999999997 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw dst_mac 02:c4:0b:64:fb:19 src_ip 39.213.14.210 dst_ip 42.171.227.118 ip_proto udp dst_port 1732 action trap action police rate 1087.3245kbps burst 2087.3244999999997 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:c4:0b:64:fb:19","eth_type":"ipv4","ip_proto":"udp","dst_ip":"42.171.227.118","src_ip":"39.213.14.210","dst_port":1732},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:0b:64:fb:19_eth_type_ipv4_ip_proto_udp_dst_ip_42.171.227.118_src_ip_39.213.14.210_dst_port_1732 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG infra2:Logger.py:156 3427 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3427 expected 3408.540752351097 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG infra2:Logger.py:156 3438 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3438 expected 3408.540752351097 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:49:18 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] | 162.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5515' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.3, port 38624 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:49:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:49:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:d8:1c:bc:c2:c4 dst_mac 02:98:54:6d:af:a6 action trap action police rate 1.00046475mbps burst 1001.00046475 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:d8:1c:bc:c2:c4 dst_mac 02:98:54:6d:af:a6 action trap action police rate 1.00046475mbps burst 1001.00046475 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:98:54:6d:af:a6","src_mac":"02:d8:1c:bc:c2:c4","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:98:54:6d:af:a6_src_mac_02:d8:1c:bc:c2:c4_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG infra2:Logger.py:156 2408 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2408 expected 2393.4563397129186 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG infra2:Logger.py:156 2414 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2414 expected 2393.4563397129186 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:52:00 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] | 159.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5583' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.3, port 57756 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:52:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:52:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:4c:4b:39:a7:c2 vlan_id 3910 vlan_ethtype ip src_ip 70.61.206.250 dst_ip 30.38.196.194 ip_proto udp dst_port 45174 action trap action police rate 0.001077056gbps burst 1000.001077056 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:4c:4b:39:a7:c2 vlan_id 3910 vlan_ethtype ip src_ip 70.61.206.250 dst_ip 30.38.196.194 ip_proto udp dst_port 45174 action trap action police rate 0.001077056gbps burst 1000.001077056 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3910,"vlan_ethtype":"ip","dst_mac":"02:4c:4b:39:a7:c2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"30.38.196.194","src_ip":"70.61.206.250","dst_port":45174},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3910_vlan_ethtype_ip_dst_mac_02:4c:4b:39:a7:c2_eth_type_ipv4_ip_proto_udp_dst_ip_30.38.196.194_src_ip_70.61.206.250_dst_port_45174 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG infra2:Logger.py:156 2418 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2418 expected 2404.1428571428573 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG infra2:Logger.py:156 2424 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2424 expected 2404.1428571428573 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:54:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] | 159.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5651' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.3, port 45498 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:54:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:54:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:54:42:c1:3a:4c vlan_id 2212 vlan_ethtype ipv4 src_ip 102.189.248.190 dst_ip 113.68.81.244 action trap action police rate 1.963302875e-06tbps burst 1000.0000019633029 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:54:42:c1:3a:4c vlan_id 2212 vlan_ethtype ipv4 src_ip 102.189.248.190 dst_ip 113.68.81.244 action trap action police rate 1.963302875e-06tbps burst 1000.0000019633029 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2212,"vlan_ethtype":"ip","src_mac":"02:54:42:c1:3a:4c","eth_type":"ipv4","dst_ip":"113.68.81.244","src_ip":"102.189.248.190"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2212_vlan_ethtype_ip_src_mac_02:54:42:c1:3a:4c_eth_type_ipv4_dst_ip_113.68.81.244_src_ip_102.189.248.190 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG infra2:Logger.py:156 3983 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3983 expected 3958.271925403226 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG infra2:Logger.py:156 3995 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3995 expected 3958.271925403226 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:57:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[1] | 143.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5719' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[1]">Starting testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.3, port 43318 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:57:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:57:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:57:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=92, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=26] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=92, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5af6a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 6819504 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3409752 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3409754 INFO asyncssh:logging.py:92 [conn=92, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=28] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=92, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=28] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=92, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=29] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=30] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:59:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:59:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=92, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=92, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=92, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=92, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_nexthops_down[3] | 141.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5775' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_nexthops_down[3]">Starting testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.3, port 55434 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:59:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=1 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:59:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 20:59:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=93, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=26] Command: ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb591a80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 7333856 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=28] Command: ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=93, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=28] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_nexthops_down[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=93, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=29] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=30] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=30] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:02:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:02:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=93, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=93, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=93, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=93, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=42] Command: sysctl net.ipv4.conf.default.ignore_routes_with_linkdown=0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.conf.default.ignore_routes_with_linkdown = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_hash_policy | 284.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5831' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_hash_policy">Starting testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.3, port 50780 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:02:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: sysctl net.ipv4.fib_multipath_hash_policy INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: sysctl net.ipv4.fib_multipath_hash_policy=1 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:02:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:02:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=20] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=22] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=94, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=24] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_13 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_15 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_17 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_random_ports_19 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c5810>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 20000 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 9003 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 5002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_hash_policy from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=94, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=25] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=26] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=26] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:06:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:06:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=94, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=94, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=94, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=94, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=37] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=38] Command: sysctl net.ipv4.fib_multipath_hash_policy=0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=38] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.fib_multipath_hash_policy = 0 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[basic] | 151.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5885' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[basic]">Starting testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.3, port 60422 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:06:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:06:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb591180>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 6775272 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2484268 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 2032583 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 2258425 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:09:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:09:20 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=95, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=95, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=95, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[nexthop_down] | 150.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5927' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[nexthop_down]">Starting testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.3, port 41442 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:09:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:09:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: ip neigh add 11.0.0.2 lladdr 00:AD:20:B2:A7:75 dev swp34 && ip neigh add 12.0.0.2 lladdr 00:59:CD:1E:83:1B dev swp35 && ip neigh add 13.0.0.2 lladdr 00:76:69:89:E0:7B dev swp36 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=20] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=96, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb592cb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 7254207 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3627105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3627106 INFO asyncssh:logging.py:92 [conn=96, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=22] Command: ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=96, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[nexthop_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=96, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:11:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:11:51 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=96, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=96, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=96, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ecmp/test_ecmp.py::test_ecmp_traffic_distribution[dynamic] | 151.95 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5973' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ecmp_traffic_distribution[dynamic]">Starting testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.3, port 39198 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:11:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:11:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 11.0.0.1/8 dev swp34 && ip address add 12.0.0.1/16 dev swp35 && ip address add 13.0.0.1/20 dev swp36 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/8', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.2/16', 'count': 1, 'ip': '12.0.0.2', 'gw': '12.0.0.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.2/20', 'count': 1, 'ip': '13.0.0.2', 'gw': '13.0.0.1', 'plen': 20, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: ip route add 100.0.0.0/8 nexthop via 11.0.0.2 weight 1 nexthop via 12.0.0.2 weight 1 nexthop via 13.0.0.2 weight 1 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for increment_ip_dst_ INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.2/20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb591c60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 6742482 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 1 Rx 2247496 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 1 Rx 2472244 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 1 Rx 2022749 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ecmp_traffic_distribution[dynamic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ecmp/test_ecmp.py INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:14:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:14:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=97, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=97, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=97, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[1] | 673.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6070' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[1]">Starting testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.3, port 60392 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:15:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:15:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:9e:7e:fc:d8:2c dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:9e:7e:fc:d8:2c dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"0.0.0.1","prefixlen":24,"broadcast":"0.0.0.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c4790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1024108 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472288 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022794 INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG infra2:Logger.py:156 152350 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5afbb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1066283 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472291 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022797 INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG infra2:Logger.py:156 152251 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1075791 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472295 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022801 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG infra2:Logger.py:156 152253 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5dec20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1151124 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472298 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022804 INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG infra2:Logger.py:156 152200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f64d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1012051 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472301 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022808 INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=32] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=32] Channel closed DEBUG infra2:Logger.py:156 152194 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5566b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1014624 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022811 INFO asyncssh:logging.py:92 [conn=99, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=33] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=34] Channel closed DEBUG infra2:Logger.py:156 152232 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 955515 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2 Rx 2472308 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 2 Rx 2022814 INFO asyncssh:logging.py:92 [conn=99, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=35] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=36] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=36] Channel closed DEBUG infra2:Logger.py:156 152207 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:27:08 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=45] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=46] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=99, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=46] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3[3] | 767.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6126' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3[3]">Starting testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.3, port 36320 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:27:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:27:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip address add 2.2.2.1/24 broadcast 2.2.2.255 dev swp33 && ip address add 2.2.3.1/24 broadcast 2.2.3.255 dev swp34 && ip address add 2.2.4.1/24 broadcast 2.2.4.255 dev swp35 && ip address add 0.0.0.1/24 broadcast 0.0.0.255 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.3.2/24', 'count': 1, 'ip': '2.2.3.2', 'gw': '2.2.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2.2.4.2/24', 'count': 1, 'ip': '2.2.4.2', 'gw': '2.2.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_0.0.0.0/24', 'count': 1, 'ip': '0.0.0.0', 'gw': '0.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2.2.2.2 lladdr 02:4d:8d:4c:83:0d dev swp33 && ip neigh add 2.2.3.2 lladdr 02:00:96:bf:64:c1 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:78:8b:4e:a6:cf dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip neigh add 2.2.2.2 lladdr 02:4d:8d:4c:83:0d dev swp33 && ip neigh add 2.2.3.2 lladdr 02:00:96:bf:64:c1 dev swp34 && ip neigh add 2.2.4.2 lladdr 02:78:8b:4e:a6:cf dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"broadcast":"2.2.2.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.3.1","prefixlen":24,"broadcast":"2.2.3.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.4.1","prefixlen":24,"broadcast":"2.2.4.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f6bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2144054 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2143931 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2143774 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: get_drops_rate_code_avg 138 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG infra2:Logger.py:156 914872 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_uc_dip_da_mismatch_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f73d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2653244 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2653112 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2652964 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG infra2:Logger.py:156 914947 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_checksum_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c6f50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2017592 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2017473 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2017355 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: get_drops_rate_code_avg 137 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG infra2:Logger.py:156 915159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ipv4_hdr_length_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb554ca0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2432358 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2432236 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2432110 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=33] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=34] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=34] Channel closed DEBUG infra2:Logger.py:156 914613 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_dip_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5dca90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2545046 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2544923 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2544804 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=35] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=36] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=36] Channel closed DEBUG infra2:Logger.py:156 915068 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_sip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f7c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2026133 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2026018 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2025902 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=37] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=38] Command: get_drops_rate_code_avg 136 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=38] Channel closed DEBUG infra2:Logger.py:156 914626 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: illegal_ip_addr_host_dip_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2.2.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_0.0.0.0/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb410a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2310498 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2310376 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 2310257 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1 INFO asyncssh:logging.py:92 [conn=100, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=39] Channel closed DEBUG infra2:Logger.py:156 get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=40] Command: get_drops_rate_code_avg 145 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=40] Channel closed DEBUG infra2:Logger.py:156 914766 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_sip_is_zero_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3[3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=41] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=42] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:39:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=44] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=46] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=48] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=49] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=50] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=100, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=50] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/hard_drop_counters/test_hard_drop_counters.py::test_hw_drop_l3_exp_counters | 156.89 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6186' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_hw_drop_l3_exp_counters">Starting testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.3, port 33534 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:39:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:39:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG infra2:Logger.py:156 62:46897728 136:104402549 137:69606457 138:34827214 145:34740282 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip address add 3.3.3.3/24 broadcast 3.3.3.255 dev swp33 && ip address add 0.0.0.0/24 broadcast 0.0.0.255 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_3.3.3.1/24', 'count': 1, 'ip': '3.3.3.1', 'gw': '3.3.3.3', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_0.0.0.1/24', 'count': 1, 'ip': '0.0.0.1', 'gw': '0.0.0.0', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 3.3.3.1 lladdr 02:76:a0:ee:b9:8c dev swp33 && ip neigh add 0.0.0.1 lladdr 02:ad:80:07:dc:d1 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip neigh add 3.3.3.1 lladdr 02:76:a0:ee:b9:8c dev swp33 && ip neigh add 0.0.0.1 lladdr 02:ad:80:07:dc:d1 dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"3.3.3.3","prefixlen":24,"broadcast":"3.3.3.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_uc_dip_da_mismatch_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_checksum_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ipv4_hdr_length_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_dip_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_sip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for illegal_ip_addr_host_dip_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_sip_is_zero_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_3.3.3.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_stats INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG infra2:Logger.py:156 62:46897728 136:105702830 137:70473649 138:35260980 145:35175234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_hw_drop_l3_exp_counters from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/hard_drop_counters/test_hard_drop_counters.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 21:42:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=35] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=36] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=101, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_addr.py::test_ipv4_addr | 150.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6416' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.3, port 49332 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:05:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:05:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close DEBUG infra2:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.353 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.191 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.222 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.256 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.202 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.120 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.190 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.186 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.192 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.120/0.209/0.353/0.058 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 2.2.2.2 on infra2 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.353 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.191 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.222 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.256 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.202 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.120 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.190 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.186 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.192 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9200ms rtt min/avg/max/mdev = 0.120/0.209/0.353/0.058 ms INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed DEBUG infra2:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.238 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.159 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.137 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.191 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.185 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.187 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.186 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.137/0.186/0.238/0.030 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 4.4.4.2 on infra2 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.238 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.159 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.137 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.191 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.185 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.187 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.186 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.137/0.186/0.238/0.030 ms DEBUG infra2:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.267 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.231 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.192 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.201 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.207 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.187 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.144 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.141/0.193/0.267/0.038 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 1.1.1.2 on infra2 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.267 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.141 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.231 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.192 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.201 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.207 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.180 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.187 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.144 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.141/0.193/0.267/0.038 ms DEBUG infra2:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.232 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.150 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.233 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.191 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.201 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.183 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.185 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.130/0.184/0.233/0.032 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 3.3.3.2 on infra2 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.232 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.150 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.233 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.191 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.201 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.130 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.158 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.179 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.183 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.185 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9199ms rtt min/avg/max/mdev = 0.130/0.184/0.233/0.032 ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:08:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:08:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=109, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=109, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp | 143.23 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6462' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.3, port 38654 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:08:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:08:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb095f30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10152 Rx 10152 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10152 Rx 10152 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=110, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp | 1.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6506' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.3, port 44884 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=111, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=111, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:34 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=111, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=111, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=111, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp | 188.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6552' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.3, port 60372 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:10:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb095750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 8680 Rx 8680 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 8680 Rx 8680 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=28] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=30] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=112, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=112, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=40] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=42] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=112, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=112, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=45] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=46] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=48] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:13:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=50] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:13:42 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=112, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=52] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=112, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=56] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic | 134.13 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6620' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.3, port 59194 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:13:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:13:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6515d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10238 Rx 10238 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10238 Rx 10238 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:15:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:15:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp | 138.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6666' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.3, port 39378 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:15:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:15:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb094f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 21.0.0.1 Tx 4437 Rx 4437 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 20.0.0.1 Tx 4437 Rx 4437 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 8874 Rx 8874 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=114, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=114, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=114, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=114, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=36] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=114, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=38] Command: ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=114, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=114, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=44] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:18:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=46] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:18:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=114, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=114, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=52] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout | 196.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6730' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.3, port 52038 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:18:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:18:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 1000 net.ipv4.neigh.swp34.base_reachable_time_ms = 1000 net.ipv4.neigh.swp35.base_reachable_time_ms = 1000 net.ipv4.neigh.swp36.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb775b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 9318 Rx 9318 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 9318 Rx 9318 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb774190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 11876 Rx 11876 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 11876 Rx 11876 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:21:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:21:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=115, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing | 224.81 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6776' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.3, port 60510 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:21:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:21:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb096e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10202 Rx 10202 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10202 Rx 10202 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:25:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:25:17 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding | 129.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6818' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.3, port 59148 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:25:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:25:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb097bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 5969 Rx 0 Frames Delta 5969 Loss 100.000 INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb097af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 9671 Rx 9671 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:27:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:27:26 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=117, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=117, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis | 110.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6868' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.3, port 44230 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:27:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:27:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/8 to 10.36.118.199:2:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0951b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-0.0.0.2 Tx 6079 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:29:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:29:17 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis | 112.38 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6902' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.3, port 57642 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:29:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:29:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_128.1.1.2/16 to 10.36.118.199:2:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0947f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 128.1.1.2-191.255.1.2 Tx 6045 Rx 6045 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:31:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:31:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis | 111.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6936' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.3, port 50246 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:31:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:31:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_192.1.1.2/24 to 10.36.118.199:2:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0970d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 192.1.1.2-223.255.255.2 Tx 6022 Rx 6022 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis | 0.76 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6970' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.3, port 34310 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Invalid argument -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:02 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis | 112.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7002' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.3, port 34316 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:33:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_240.0.0.1/32 to 10.36.118.199:2:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb554a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 240.0.0.1-223.255.254.2 Tx 6050 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:34:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:34:54 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum | 136.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7036' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.3, port 41008 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:34:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:34:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 175311423779 bad_octets_received: 25634038 mac_trans_error: 0 broadcast_frames_received: 12738202 multicast_frames_received: 24735473 frames_64_octets: 2681 frames_65_to_127_octets: 26091166 frames_128_to_255_octets: 108174384 frames_256_to_511_octets: 172299897 frames_512_to_1023_octets: 80391363 frames_1024_to_max_octets: 16782658 excessive_collision: 0 multicast_frames_sent: 3281 broadcast_frames_sent: 1196 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11148 collisions: 14 late_collision: 0 unicast_frames_received: 363576609 unicast_frames_sent: 2676240 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1391792422 INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 40125525977 bad_octets_received: 25557228 mac_trans_error: 0 broadcast_frames_received: 3464901 multicast_frames_received: 4709228 frames_64_octets: 2677 frames_65_to_127_octets: 1209343 frames_128_to_255_octets: 26037235 frames_256_to_511_octets: 74603196 frames_512_to_1023_octets: 22168413 frames_1024_to_max_octets: 715637 excessive_collision: 1 multicast_frames_sent: 6645353 broadcast_frames_sent: 10574 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 11005 collisions: 17 late_collision: 0 unicast_frames_received: 94053073 unicast_frames_sent: 15842367 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8271604841 INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 33015828699 bad_octets_received: 23541581 mac_trans_error: 0 broadcast_frames_received: 1807330 multicast_frames_received: 2456904 frames_64_octets: 1247 frames_65_to_127_octets: 1198420 frames_128_to_255_octets: 22047082 frames_256_to_511_octets: 69384054 frames_512_to_1023_octets: 12366813 frames_1024_to_max_octets: 715637 excessive_collision: 0 multicast_frames_sent: 6445902 broadcast_frames_sent: 5477 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 79477531 unicast_frames_sent: 15520109 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7156533440 INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5678684777 bad_octets_received: 23541568 mac_trans_error: 0 broadcast_frames_received: 1807304 multicast_frames_received: 2456904 frames_64_octets: 1221 frames_65_to_127_octets: 1198420 frames_128_to_255_octets: 21824434 frames_256_to_511_octets: 1219 frames_512_to_1023_octets: 12169082 frames_1024_to_max_octets: 715637 excessive_collision: 0 multicast_frames_sent: 6248669 broadcast_frames_sent: 5491 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10094103 unicast_frames_sent: 15297542 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7011072484 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 175311423779 bad_octets_received: 28502262 mac_trans_error: 0 broadcast_frames_received: 12738202 multicast_frames_received: 24735473 frames_64_octets: 2681 frames_65_to_127_octets: 26091167 frames_128_to_255_octets: 108174385 frames_256_to_511_octets: 172299897 frames_512_to_1023_octets: 80396965 frames_1024_to_max_octets: 16782658 excessive_collision: 0 multicast_frames_sent: 3283 broadcast_frames_sent: 1196 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 16750 collisions: 14 late_collision: 0 unicast_frames_received: 363576609 unicast_frames_sent: 2676240 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1391792744 INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 40125525977 bad_octets_received: 28425452 mac_trans_error: 0 broadcast_frames_received: 3464901 multicast_frames_received: 4709228 frames_64_octets: 2677 frames_65_to_127_octets: 1209343 frames_128_to_255_octets: 26037236 frames_256_to_511_octets: 74603196 frames_512_to_1023_octets: 22174015 frames_1024_to_max_octets: 715637 excessive_collision: 1 multicast_frames_sent: 6645354 broadcast_frames_sent: 10574 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 16607 collisions: 17 late_collision: 0 unicast_frames_received: 94053073 unicast_frames_sent: 15842367 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8271605089 INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=24] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 33018696987 bad_octets_received: 23541581 mac_trans_error: 0 broadcast_frames_received: 1807330 multicast_frames_received: 2456904 frames_64_octets: 1249 frames_65_to_127_octets: 1198420 frames_128_to_255_octets: 22047083 frames_256_to_511_octets: 69384054 frames_512_to_1023_octets: 12378017 frames_1024_to_max_octets: 715637 excessive_collision: 0 multicast_frames_sent: 6445903 broadcast_frames_sent: 5477 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 79483134 unicast_frames_sent: 15525712 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7159401976 INFO asyncssh:logging.py:92 [conn=123, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=26] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=26] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5681553065 bad_octets_received: 23541568 mac_trans_error: 0 broadcast_frames_received: 1807304 multicast_frames_received: 2456904 frames_64_octets: 1223 frames_65_to_127_octets: 1198420 frames_128_to_255_octets: 21824435 frames_256_to_511_octets: 1219 frames_512_to_1023_octets: 12180286 frames_1024_to_max_octets: 715637 excessive_collision: 0 multicast_frames_sent: 6248670 broadcast_frames_sent: 5491 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10099706 unicast_frames_sent: 15303145 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7013941020 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0947f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 5602 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 5602 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 5602 Rx 5602 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 5602 Rx 5602 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=123, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:37:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:37:10 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=123, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd | 145.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7086' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.3, port 36584 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:37:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:37:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb652950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5099 Rx 5099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5099 Rx 5099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5099 Rx 5099 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5099 Rx 5099 Loss 0.000 INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6524d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 8741 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 8741 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 8741 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 8741 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:39:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:39:36 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw | 156.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7122' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.3, port 56072 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:39:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:39:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:39:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=24] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=125, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=28] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=30] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=125, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=32] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=34] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=125, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556f80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 Tx 5376 Rx 5376 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 Tx 5376 Rx 0 Frames Delta 5376 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 Tx 5376 Rx 0 Frames Delta 5376 Loss 100.000 INFO asyncssh:logging.py:92 [conn=125, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=40] Command: ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb653ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 Tx 8961 Rx 0 Frames Delta 8961 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 Tx 8961 Rx 0 Frames Delta 8961 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 Tx 8961 Rx 8961 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=125, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=125, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp35","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=125, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=43] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=44] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=46] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=48] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:12 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=125, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=125, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=125, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=58] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=125, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=60] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw | 1.00 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7198' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.3, port 42472 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:13 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled | 149.76 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7244' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.3, port 42482 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:42:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556ef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 603 Rx 603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:2:5', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:2:6', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:2:7', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:2:8', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:44:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:44:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=127, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability | 230.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7284' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.3, port 39466 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:44:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:44:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG infra2:Logger.py:156 ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close DEBUG infra2:Logger.py:156 3035 INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close DEBUG infra2:Logger.py:156 3046 DEBUG infra2:Logger.py:156 2977 INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed DEBUG infra2:Logger.py:156 2982 INFO DENT:Logger.py:84 [DENT infrastructure 2] Total run time: 120.08s, pings received: 12040 INFO DENT:Logger.py:84 [DENT infrastructure 2] Actual icmp rate: 100.27pps, expected: 100pps -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:48:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:48:33 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=128, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip | 112.77 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7388' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.3, port 44022 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:50:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:50:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:52:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:52:31 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable | 119.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7434' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.3, port 48752 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:52:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:52:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:5', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:2:6', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:2:7', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:8', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 1.1.1.2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:54:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:54:31 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu | 144.94 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7474' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.3, port 47296 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:54:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2.2.2.2/24 to 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 <-> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_4.4.4.2/24 to 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 175320189581 bad_octets_received: 28502262 mac_trans_error: 0 broadcast_frames_received: 12738227 multicast_frames_received: 24735473 frames_64_octets: 2916 frames_65_to_127_octets: 26118115 frames_128_to_255_octets: 108174438 frames_256_to_511_octets: 172299897 frames_512_to_1023_octets: 80432635 frames_1024_to_max_octets: 16782803 excessive_collision: 0 multicast_frames_sent: 3458 broadcast_frames_sent: 1197 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26662 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 16750 collisions: 14 late_collision: 0 unicast_frames_received: 363604484 unicast_frames_sent: 2711215 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1404284864 INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 40133983705 bad_octets_received: 28425452 mac_trans_error: 0 broadcast_frames_received: 3464925 multicast_frames_received: 4709228 frames_64_octets: 2903 frames_65_to_127_octets: 1236307 frames_128_to_255_octets: 26037287 frames_256_to_511_octets: 74603196 frames_512_to_1023_octets: 22193557 frames_1024_to_max_octets: 715782 excessive_collision: 1 multicast_frames_sent: 6645525 broadcast_frames_sent: 10575 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26769 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 16607 collisions: 17 late_collision: 0 unicast_frames_received: 94080351 unicast_frames_sent: 15861821 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8276148383 INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 33027150711 bad_octets_received: 23541581 mac_trans_error: 0 broadcast_frames_received: 1807354 multicast_frames_received: 2456904 frames_64_octets: 1471 frames_65_to_127_octets: 1225311 frames_128_to_255_octets: 22047133 frames_256_to_511_octets: 69384054 frames_512_to_1023_octets: 12423839 frames_1024_to_max_octets: 715782 excessive_collision: 0 multicast_frames_sent: 6446076 broadcast_frames_sent: 5478 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 1 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 79510372 unicast_frames_sent: 15571406 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7177396600 INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5712029263 bad_octets_received: 23541568 mac_trans_error: 0 broadcast_frames_received: 1807329 multicast_frames_received: 2456904 frames_64_octets: 1450 frames_65_to_127_octets: 1225324 frames_128_to_255_octets: 21824484 frames_256_to_511_octets: 1219 frames_512_to_1023_octets: 12242236 frames_1024_to_max_octets: 715782 excessive_collision: 0 multicast_frames_sent: 6248841 broadcast_frames_sent: 5492 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 0 oversize: 14923 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10169963 unicast_frames_sent: 15321966 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7018172152 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=26] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=26] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 175320189581 bad_octets_received: 33906598 mac_trans_error: 0 broadcast_frames_received: 12738227 multicast_frames_received: 24735473 frames_64_octets: 2916 frames_65_to_127_octets: 26118115 frames_128_to_255_octets: 108174438 frames_256_to_511_octets: 172299897 frames_512_to_1023_octets: 80432635 frames_1024_to_max_octets: 16782803 excessive_collision: 0 multicast_frames_sent: 3458 broadcast_frames_sent: 1197 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26662 oversize: 20211 jabber: 0 rx_error_frame_received: 0 bad_crc: 16750 collisions: 14 late_collision: 0 unicast_frames_received: 363604484 unicast_frames_sent: 2711215 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 1404284864 INFO asyncssh:logging.py:92 [conn=132, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=28] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=28] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 40133983705 bad_octets_received: 33829788 mac_trans_error: 0 broadcast_frames_received: 3464925 multicast_frames_received: 4709228 frames_64_octets: 2903 frames_65_to_127_octets: 1236307 frames_128_to_255_octets: 26037288 frames_256_to_511_octets: 74603196 frames_512_to_1023_octets: 22193557 frames_1024_to_max_octets: 715782 excessive_collision: 1 multicast_frames_sent: 6645526 broadcast_frames_sent: 10575 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 26769 oversize: 20211 jabber: 0 rx_error_frame_received: 0 bad_crc: 16607 collisions: 17 late_collision: 0 unicast_frames_received: 94080351 unicast_frames_sent: 15861821 sent_multiple: 1 sent_deferred: 0 good_octets_sent: 8276148631 INFO asyncssh:logging.py:92 [conn=132, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=30] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=30] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 33027150711 bad_octets_received: 28945917 mac_trans_error: 0 broadcast_frames_received: 1807354 multicast_frames_received: 2456904 frames_64_octets: 1471 frames_65_to_127_octets: 1225311 frames_128_to_255_octets: 22047134 frames_256_to_511_octets: 69384054 frames_512_to_1023_octets: 12423839 frames_1024_to_max_octets: 715782 excessive_collision: 0 multicast_frames_sent: 6446077 broadcast_frames_sent: 5478 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 1 oversize: 20211 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 79510372 unicast_frames_sent: 15571406 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7177396848 INFO asyncssh:logging.py:92 [conn=132, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=32] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=32] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5712029263 bad_octets_received: 28945904 mac_trans_error: 0 broadcast_frames_received: 1807329 multicast_frames_received: 2456904 frames_64_octets: 1450 frames_65_to_127_octets: 1225324 frames_128_to_255_octets: 21824485 frames_256_to_511_octets: 1219 frames_512_to_1023_octets: 12242236 frames_1024_to_max_octets: 715782 excessive_collision: 0 multicast_frames_sent: 6248842 broadcast_frames_sent: 5492 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 14289 fragments: 0 oversize: 20211 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10169963 unicast_frames_sent: 15321966 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 7018172400 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f5690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:8 SIP-DIP 1.1.1.2-4.4.4.2 Tx 5288 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2.2.2.2-3.3.3.2 Tx 5288 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:6 SIP-DIP 3.3.3.2-2.2.2.2 Tx 5288 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 <-> 10.36.118.199:2:5 SIP-DIP 4.4.4.2-1.1.1.2 Tx 5288 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=132, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:56:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:56:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=132, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=46] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=46] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing | 168.57 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7570' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.3, port 51548 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:59:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 22:59:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 76.203.168.98/22 dev swp33 && ip address add 118.166.217.103/2 dev swp34 && ip address add 104.169.80.20/12 dev swp35 && ip address add 104.188.164.186/21 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip address add 76.203.168.98/22 dev swp33 && ip address add 118.166.217.103/2 dev swp34 && ip address add 104.169.80.20/12 dev swp35 && ip address add 104.188.164.186/21 dev swp36 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_76.203.168.99/22', 'count': 1, 'ip': '76.203.168.99', 'gw': '76.203.168.98', 'plen': 22, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_118.166.217.102/2', 'count': 1, 'ip': '118.166.217.102', 'gw': '118.166.217.103', 'plen': 2, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_104.169.80.21/12', 'count': 1, 'ip': '104.169.80.21', 'gw': '104.169.80.20', 'plen': 12, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_104.188.164.187/21', 'count': 1, 'ip': '104.188.164.187', 'gw': '104.188.164.186', 'plen': 21, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_76.203.168.99/22 to 10.36.118.199:2:6_118.166.217.102/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_76.203.168.99/22 to 10.36.118.199:2:7_104.169.80.21/12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_76.203.168.99/22 to 10.36.118.199:2:8_104.188.164.187/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_118.166.217.102/2 to 10.36.118.199:2:5_76.203.168.99/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_118.166.217.102/2 to 10.36.118.199:2:7_104.169.80.21/12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_118.166.217.102/2 to 10.36.118.199:2:8_104.188.164.187/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_104.169.80.21/12 to 10.36.118.199:2:5_76.203.168.99/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_104.169.80.21/12 to 10.36.118.199:2:6_118.166.217.102/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_104.169.80.21/12 to 10.36.118.199:2:8_104.188.164.187/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_104.188.164.187/21 to 10.36.118.199:2:5_76.203.168.99/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_104.188.164.187/21 to 10.36.118.199:2:6_118.166.217.102/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_104.188.164.187/21 to 10.36.118.199:2:7_104.169.80.21/12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_76.203.168.99/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_118.166.217.102/2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_104.169.80.21/12 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_104.188.164.187/21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb523e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI ipv4 SIP-DIP 76.203.168.99-104.169.80.21 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI ipv4 SIP-DIP 76.203.168.99-104.188.164.187 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ipv4 SIP-DIP 76.203.168.99-118.166.217.102 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4 #2 SIP-DIP 104.169.80.21-76.203.168.99 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI ipv4 #2 SIP-DIP 104.169.80.21-104.188.164.187 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI ipv4 #2 SIP-DIP 104.169.80.21-118.166.217.102 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI ipv4 #3 SIP-DIP 104.188.164.187-76.203.168.99 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI ipv4 #3 SIP-DIP 104.188.164.187-104.169.80.21 Tx 5120 Rx 5120 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv4 #3 SIP-DIP 104.188.164.187-118.166.217.102 Tx 5120 Rx 5120 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:02:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:02:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route | 117.33 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7604' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.3, port 50016 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:02:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:02:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6c6230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 10.36.118.199:2:6 Tx 5762 Rx 5762 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 5762 Rx 5762 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:04:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:04:01 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs | 133.76 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7651' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.3, port 39258 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:04:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:04:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2.2.2.2/24 to 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb095420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 5848 Rx 5848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5848 Rx 5848 Loss 0.000 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f6d70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 9633 Rx 9633 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 9633 Rx 9633 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:06:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:06:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":130,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":131,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":132,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=40] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:06:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=136, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=136, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":130,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route | 133.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7709' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.3, port 60128 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:06:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:06:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","state":["FAILED"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"4.4.4.2","dev":"swp36","state":["FAILED"]},{"dst":"1.1.1.2","dev":"swp33","state":["FAILED"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","state":["FAILED"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:08:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:08:28 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net | 127.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7773' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.3, port 51380 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:08:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:08:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":[]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb593340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 10.36.118.199:2:6 Tx 9992 Rx 0 Frames Delta 9992 Loss 100.000 INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6cc310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 21536 Rx 21537 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:10:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:10:36 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_basic_config | 133.63 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7816' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.3, port 45816 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:10:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:10:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:3333:30:3::2/64 to 10.36.118.199:2:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:3333:30:3::2/64 to 10.36.118.199:2:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb522260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58416 Rx 58416 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58416 Rx 58416 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 58416 Rx 58416 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 58416 Rx 58416 Loss 0.000 INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333:30:3::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222:20:2::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111:10:1::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb520700>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 94786 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 94785 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 94786 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 94785 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:12:50 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_flags | 166.07 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7860' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.3, port 53542 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:12:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:12:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:3333::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:3333::2/64 to 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6507c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58711 Rx 58711 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58710 Rx 58710 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58711 Rx 58711 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58710 Rx 58710 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58711 Rx 58711 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58711 Rx 58711 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58710 Rx 58710 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58710 Rx 58710 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":836,"preferred_life_time":776},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":836,"preferred_life_time":776},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5231c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94224 Rx 94224 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94223 Rx 94223 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94223 Rx 94223 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb593b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94806 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94805 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94806 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94805 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94806 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94806 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94805 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94805 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:15:36 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr | 179.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7912' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.3, port 58432 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:15:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:15:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 150000 net.ipv6.neigh.swp34.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::4/64 to 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::6/64 to 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5925f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 54527 Rx 54527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 54527 Rx 54527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 54527 Rx 54527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 54527 Rx 54527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 54527 Rx 54527 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 54527 Rx 54527 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::4","dev":"swp34","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp33","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp34","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp33","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp34","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::4","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp34","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94891 Rx 94891 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94891 Rx 94891 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94891 Rx 94891 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94891 Rx 94891 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94891 Rx 94891 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94891 Rx 94891 Loss 0.000 INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0962c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94853 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94853 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94853 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94853 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94853 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94853 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=141, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=34] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=141, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5569b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94868 Rx 94868 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94868 Rx 94868 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=141, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=37] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=38] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=40] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:18:35 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=42] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=46] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=46] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge | 159.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7970' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.3, port 43042 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:18:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:18:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:5555::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:5555::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6ceda0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 55669 Rx 55669 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 55668 Rx 55668 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:21:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":133,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":134,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:21:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan | 148.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8019' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.3, port 37094 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:21:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:21:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev br0 vid 2102 self && bridge vlan add dev br0 vid 696 self && bridge vlan add dev br0 vid 1080 self && bridge vlan add dev br0 vid 1645 self && bridge vlan add dev swp34 vid 2102 && bridge vlan add dev swp35 vid 696 && bridge vlan add dev swp34 vid 1080 && bridge vlan add dev swp35 vid 1645 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: bridge vlan add dev br0 vid 2102 self && bridge vlan add dev br0 vid 696 self && bridge vlan add dev br0 vid 1080 self && bridge vlan add dev br0 vid 1645 self && bridge vlan add dev swp34 vid 2102 && bridge vlan add dev swp35 vid 696 && bridge vlan add dev swp34 vid 1080 && bridge vlan add dev swp35 vid 1645 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link add link br0 name br0.2102 type vlan id 2102 && ip link add link br0 name br0.696 type vlan id 696 && ip link add link br0 name br0.1080 type vlan id 1080 && ip link add link br0 name br0.1645 type vlan id 1645 INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: ip link add link br0 name br0.2102 type vlan id 2102 && ip link add link br0 name br0.696 type vlan id 696 && ip link add link br0 name br0.1080 type vlan id 1080 && ip link add link br0 name br0.1645 type vlan id 1645 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.2102 up && ip link set dev br0.696 up && ip link set dev br0.1080 up && ip link set dev br0.1645 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.2102 up && ip link set dev br0.696 up && ip link set dev br0.1080 up && ip link set dev br0.1645 up INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:10::1/64 dev br0.2102 && ip address add 2001:20::1/64 dev br0.696 && ip address add 2001:30::1/64 dev br0.1080 && ip address add 2001:40::1/64 dev br0.1645 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip address add 2001:10::1/64 dev br0.2102 && ip address add 2001:20::1/64 dev br0.696 && ip address add 2001:30::1/64 dev br0.1080 && ip address add 2001:40::1/64 dev br0.1645 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 2102, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 1080, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 696, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 1645, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:10::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:10::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:30::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:30::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f48b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 623275 Rx 623275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 623275 Rx 623275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 623275 Rx 623275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 623275 Rx 623275 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54849 Rx 54849 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54848 Rx 54848 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:23:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":135,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:23:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge | 241.25 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8066' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.3, port 46474 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:23:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:23:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb593250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 59199 Rx 59199 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 59199 Rx 59199 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5936d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 57881 Rx 57881 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 57881 Rx 57881 Loss 0.000 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:27:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":140,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:27:44 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=144, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=144, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig | 385.18 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8123' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.3, port 53118 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:27:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:27:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:27:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_1.3.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5555d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 40850 Rx 40850 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 40850 Rx 40850 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=36] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=38] Command: ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_2001:3::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f69e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51089 Rx 51089 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 51089 Rx 51089 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=145, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=145, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=145, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=145, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=56] Command: ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=58] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_1.3.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb591510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 51280 Rx 51280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 51280 Rx 51280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 51280 Rx 51280 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 51281 Rx 51281 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 51281 Rx 51281 Loss 0.000 INFO asyncssh:logging.py:92 [conn=145, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=145, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=68] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=145, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=145, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=145, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=145, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=76] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=76] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=145, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=77] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=78] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=145, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=79] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=80] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=81] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=82] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:34:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=145, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=84] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=145, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=88] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=145, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=88] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes | 141.07 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8223' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.3, port 48894 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:34:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:34:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:34:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp35', tg='10.36.118.199:2:7', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp36', tg='10.36.118.199:2:8', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb411570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 1.1.1.2-1.3.1.2 Tx 50804 Rx 50804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 1.3.1.2-1.1.1.2 Tx 50804 Rx 50804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 50804 Rx 50804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 50804 Rx 50804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4: addr_info(swp='swp35' tg='10.36.118.199:2:7' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 50804 Rx 50804 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv6: addr_info(swp='swp36' tg='10.36.118.199:2:8' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 50804 Rx 50804 Loss 0.000 INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=146, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:2::5","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=146, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=146, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=146, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=146, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=146, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=146, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:36:30 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=146, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=146, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=146, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing | 325.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8277' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.3, port 54170 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:36:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:36:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=24] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=23] Channel closed DEBUG infra2:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.307 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.307/0.307/0.307/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:1111::2 on infra2 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.307 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.307/0.307/0.307/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=26] Received channel close DEBUG infra2:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.230 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.230/0.230/0.230/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:2222::2 on infra2 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.230 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.230/0.230/0.230/0.000 ms DEBUG infra2:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.207 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.207/0.207/0.207/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:3333::2 on infra2 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.207 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.207/0.207/0.207/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=26] Channel closed DEBUG infra2:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.148 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.148/0.148/0.148/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:4444::2 on infra2 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.148 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.148/0.148/0.148/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=147, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=47] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=147, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=48] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=147, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=49] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=50] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=147, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=147, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=54] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=56] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=55] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=56] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=147, chan=57] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=147, chan=58] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=147, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=55] Channel closed DEBUG infra2:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.294 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.294/0.294/0.294/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:1111::2 on infra2 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.294 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.294/0.294/0.294/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=58] Channel closed DEBUG infra2:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.285 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.285/0.285/0.285/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:4444::2 on infra2 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.285 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.285/0.285/0.285/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=147, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=56] Received channel close DEBUG infra2:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.209 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.209/0.209/0.209/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:3333::2 on infra2 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.209 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.209/0.209/0.209/0.000 ms INFO asyncssh:logging.py:92 [conn=147, chan=56] Channel closed DEBUG infra2:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.213 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.213/0.213/0.213/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:2222::2 on infra2 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.213 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.213/0.213/0.213/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::20c:29ff:fe5c:5a18","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:2a4e","dev":"ma1","lladdr":"34:ef:b6:ec:2a:4e","state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=147, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 5.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=68] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=80] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=82] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 50.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=147, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=91] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=92] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=94] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=98] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=102] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=104] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=105] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=107] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=108] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=109] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=110] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=111] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=112] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=112] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=147, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=113] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=114] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=147, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=114] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 50.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=147, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=115] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=116] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=116] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=117] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=118] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=118] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:41:56 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=147, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=119] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=120] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=147, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=120] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=121] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=122] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=147, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=122] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=123] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=124] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=147, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=124] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change | 237.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8421' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.3, port 36028 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:41:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:41:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0fab00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 587 Rx 587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 587 Rx 587 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 5.0s INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=40] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=42] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=58] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 40.0s INFO asyncssh:logging.py:92 [conn=148, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2001:1111::1:b3d6 lladdr 02:00:00:00:00:69 nud permanent dev swp33 && ip neigh add 2001:2222::2:d366 lladdr 02:00:00:00:01:a1 nud permanent dev swp34 && ip neigh add 2001:1111::3:8a93 lladdr 02:00:00:00:02:ba nud stale dev swp33 && ip neigh add 2001:2222::4:b636 lladdr 02:00:00:00:03:c2 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=68] Command: ip neigh add 2001:1111::1:b3d6 lladdr 02:00:00:00:00:69 nud permanent dev swp33 && ip neigh add 2001:2222::2:d366 lladdr 02:00:00:00:01:a1 nud permanent dev swp34 && ip neigh add 2001:1111::3:8a93 lladdr 02:00:00:00:02:ba nud stale dev swp33 && ip neigh add 2001:2222::4:b636 lladdr 02:00:00:00:03:c2 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=148, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=70] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=72] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::3:8a93","dev":"swp33","lladdr":"02:00:00:00:02:ba","offload":null,"state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:b3d6","dev":"swp33","lladdr":"02:00:00:00:00:69","offload":null,"state":["PERMANENT"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"2001:2222::2:d366","dev":"swp34","lladdr":"02:00:00:00:01:a1","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::4:b636","dev":"swp34","lladdr":"02:00:00:00:03:c2","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=74] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=148, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::3:8a93","dev":"swp33","lladdr":"02:00:00:00:02:ba","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:b3d6","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"2001:2222::2:d366","dev":"swp34","lladdr":"02:00:00:00:01:a1","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=148, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2001:2222::2:d366 lladdr 02:00:00:00:01:a1 nud permanent dev swp34 && ip neigh delete 2001:1111::3:8a93 lladdr 02:00:00:00:02:ba nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=80] Command: ip neigh delete 2001:2222::2:d366 lladdr 02:00:00:00:01:a1 nud permanent dev swp34 && ip neigh delete 2001:1111::3:8a93 lladdr 02:00:00:00:02:ba nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=148, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=148, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=82] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::3:8a93","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::1:b3d6","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"2001:2222::2:d366","dev":"swp34","state":["FAILED"]}] INFO asyncssh:logging.py:92 [conn=148, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=86] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=148, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=88] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=148, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::3:8a93","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::1:b3d6","dev":"swp33","state":["FAILED"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:4781","dev":"ma1","lladdr":"34:ef:b6:ec:47:81","state":["STALE"]},{"dst":"2001:2222::2:d366","dev":"swp34","state":["FAILED"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 10.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=148, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=89] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=90] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=90] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=92] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:45:53 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=148, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=148, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=148, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=148, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=98] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload | 148.20 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8530' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.3, port 60586 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:45:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:45:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:45:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f9ba0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 57989 Rx 57989 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 57988 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5578e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 93147 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 93147 Rx 93147 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=149, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=36] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:48:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=149, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=149, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=149, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=149, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=149, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=149, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=149, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=48] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm | 174.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8591' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.3, port 38556 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:48:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:48:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c72b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 53681 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 53680 Rx 53680 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 53680 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c7e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 89626 Rx 89626 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 89626 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 89626 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb554490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 89653 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 89653 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 89652 Rx 89652 Loss 0.000 INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp36","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:51:15 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state | 159.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8641' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.3, port 46342 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:51:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:51:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0fa080>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:2::5 SIP-DIP N/A Tx 115914 Rx 115914 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:2::8 SIP-DIP N/A Tx 115914 Rx 115914 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:3::5 SIP-DIP N/A Tx 115914 Rx 115914 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:3::8 SIP-DIP N/A Tx 115914 Rx 115914 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:1::5 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:1::8 SIP-DIP N/A Tx 115914 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:53:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics | 173.08 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8681' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.3, port 49484 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:53:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:53:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c5ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 134101 Rx 134101 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 268201 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 218861 Rx 218861 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 437722 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4f63b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 219093 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 438184 Rx 438184 Loss 0.000 INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:56:48 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[rstp] | 42.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[rstp]">Starting testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8777' coro=<test_lacp_root_port() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.3, port 37550 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:58:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"13","topology-change-count":"1","topology-change":"no","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"10","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=40] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"11","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=154, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=41] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=154, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=42] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=43] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=44] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"21","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=154, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=46] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:59:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=154, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=154, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":145,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":146,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=154, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=50] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=52] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:59:36 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=154, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=54] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":141,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":142,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":143,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":144,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=154, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=56] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=154, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=58] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=154, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=60] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=154, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=62] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=154, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=63] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=64] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:59:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_blocked_port_stp_rstp.py::test_lacp_root_port[stp] | 82.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_root_port[stp]">Starting testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8854' coro=<test_lacp_root_port() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py:34> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.3, port 44116 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG infra2:Logger.py:156 Sun Jul 2 23:59:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: ip link set dev swp5 master bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: ip link set dev swp7 master bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: ip link set dev swp6 master bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: ip link set dev swp8 master bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: ip link set dev bond_1 master bridge_1 && ip link set dev bond_2 master bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: ip link set dev bond_3 master bridge_2 && ip link set dev bond_4 master bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up && ip link set dev bond_4 up INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=155, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=32] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=155, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=34] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"bond_1","last-topology-change-port":"bond_2"}] INFO asyncssh:logging.py:92 [conn=155, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=36] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"bond_3 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"1","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"bond_3"}] INFO asyncssh:logging.py:92 [conn=155, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=37] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=38] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"20","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"2","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=155, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=39] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=40] Command: mstpctl -f json showportdetail bridge_1 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_1","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"yes","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"3","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"3","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"bond_2","bridge":"bridge_1","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"20","num-rx-bpdu":"2","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=155, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=41] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=155, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=42] Command: mstpctl settreeportprio bridge_1 bond_2 0 7 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=43] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=44] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"port":"bond_3","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"yes","received-tcn":"no","send-rstp":"no"},{"port":"bond_4","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"22","num-transition-fwd":"1","num-transition-blk":"1","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_blocked_port_stp_rstp.py INFO asyncssh:logging.py:92 [conn=155, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=46] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:00:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=155, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=48] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":151,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":152,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=155, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=50] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=52] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:00:58 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=155, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=54] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=155, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":61,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"],"ad_partner_oper_port_state":61,"ad_partner_oper_port_state_str":["active","aggregating","in_sync","collecting","distributing"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":147,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8a"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":148,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8c"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":149,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:89"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":150,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":9,"partner_mac":"18:be:92:13:64:8b"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=155, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=56] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=155, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=58] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=155, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=60] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=62] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=155, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=63] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=64] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:00:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_negative_acl_over_lag.py::test_lacp_acl_negative | 1.62 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_acl_negative">Starting testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9130' coro=<test_lacp_acl_negative() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py:29> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.3, port 46528 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: ip link add name bond_33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: ip link set dev bond_33 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: tc qdisc add dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: tc filter add dev bond_33 ingress flower action drop INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: tc -j filter show dev bond_33 ingress INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49152,"kind":"flower","chain":0},{"protocol":"all","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_acl_negative from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_negative_acl_over_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:28 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":170,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"4a:e2:72:91:9a:35","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=159, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=48] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=159, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=159, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=50] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=159, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=52] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=54] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=159, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=159, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=159, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=159, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_unsupported_modes | 1.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_unsupported_modes">Starting testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9204' coro=<test_lacp_unsupported_modes() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:30> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=159, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.3, port 46538 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: ip link add bond_0 type bond mode balance-rr && ip link add bond_1 type bond mode broadcast && ip link add bond_2 type bond mode balance-tlb && ip link add bond_3 type bond mode balance-alb INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: ip link set dev bond_0 up && ip link set dev bond_1 up && ip link set dev bond_2 up && ip link set dev bond_3 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: ip -j link show bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":171,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:10:1b:a6:0b:f8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: ip -j link show bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":172,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:8e:95:4e:82:98","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: ip -j link show bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":173,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:17:65:19:4e:fd","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: ip -j link show bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":174,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:2b:2b:2f:1d:5e","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_unsupported_modes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:30 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":171,"ifname":"bond_0","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"66:10:1b:a6:0b:f8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":172,"ifname":"bond_1","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:8e:95:4e:82:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"broadcast","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":173,"ifname":"bond_2","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"32:17:65:19:4e:fd","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-tlb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":174,"ifname":"bond_3","flags":["NO-CARRIER","BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"e2:2b:2b:2f:1d:5e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-alb","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_lags | 12.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_lags">Starting testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9240' coro=<test_lacp_max_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:66> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=160, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.3, port 46554 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: ip link add bond_0 type bond mode 802.3ad && ip link add bond_1 type bond mode 802.3ad && ip link add bond_2 type bond mode 802.3ad && ip link add bond_3 type bond mode 802.3ad && ip link add bond_4 type bond mode 802.3ad && ip link add bond_5 type bond mode 802.3ad && ip link add bond_6 type bond mode 802.3ad && ip link add bond_7 type bond mode 802.3ad && ip link add bond_8 type bond mode 802.3ad && ip link add bond_9 type bond mode 802.3ad && ip link add bond_10 type bond mode 802.3ad && ip link add bond_11 type bond mode 802.3ad && ip link add bond_12 type bond mode 802.3ad && ip link add bond_13 type bond mode 802.3ad && ip link add bond_14 type bond mode 802.3ad && ip link add bond_15 type bond mode 802.3ad && ip link add bond_16 type bond mode 802.3ad && ip link add bond_17 type bond mode 802.3ad && ip link add bond_18 type bond mode 802.3ad && ip link add bond_19 type bond mode 802.3ad && ip link add bond_20 type bond mode 802.3ad && ip link add bond_21 type bond mode 802.3ad && ip link add bond_22 type bond mode 802.3ad && ip link add bond_23 type bond mode 802.3ad && ip link add bond_24 type bond mode 802.3ad && ip link add bond_25 type bond mode 802.3ad && ip link add bond_26 type bond mode 802.3ad && ip link add bond_27 type bond mode 802.3ad && ip link add bond_28 type bond mode 802.3ad && ip link add bond_29 type bond mode 802.3ad && ip link add bond_30 type bond mode 802.3ad && ip link add bond_31 type bond mode 802.3ad && ip link add bond_32 type bond mode 802.3ad && ip link add bond_33 type bond mode 802.3ad && ip link add bond_34 type bond mode 802.3ad && ip link add bond_35 type bond mode 802.3ad && ip link add bond_36 type bond mode 802.3ad && ip link add bond_37 type bond mode 802.3ad && ip link add bond_38 type bond mode 802.3ad && ip link add bond_39 type bond mode 802.3ad && ip link add bond_40 type bond mode 802.3ad && ip link add bond_41 type bond mode 802.3ad && ip link add bond_42 type bond mode 802.3ad && ip link add bond_43 type bond mode 802.3ad && ip link add bond_44 type bond mode 802.3ad && ip link add bond_45 type bond mode 802.3ad && ip link add bond_46 type bond mode 802.3ad && ip link add bond_47 type bond mode 802.3ad && ip link add bond_48 type bond mode 802.3ad && ip link add bond_49 type bond mode 802.3ad && ip link add bond_50 type bond mode 802.3ad && ip link add bond_51 type bond mode 802.3ad && ip link add bond_52 type bond mode 802.3ad && ip link add bond_53 type bond mode 802.3ad && ip link add bond_54 type bond mode 802.3ad && ip link add bond_55 type bond mode 802.3ad && ip link add bond_56 type bond mode 802.3ad && ip link add bond_57 type bond mode 802.3ad && ip link add bond_58 type bond mode 802.3ad && ip link add bond_59 type bond mode 802.3ad && ip link add bond_60 type bond mode 802.3ad && ip link add bond_61 type bond mode 802.3ad && ip link add bond_62 type bond mode 802.3ad && ip link add bond_63 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG infra2:Logger.py:156 ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: ifconfig -a | grep -Eo "swp[0-9]+" | wc -l INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG infra2:Logger.py:156 52 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down && ip link set dev swp10 down && ip link set dev swp11 down && ip link set dev swp12 down && ip link set dev swp13 down && ip link set dev swp14 down && ip link set dev swp15 down && ip link set dev swp16 down && ip link set dev swp17 down && ip link set dev swp18 down && ip link set dev swp19 down && ip link set dev swp20 down && ip link set dev swp21 down && ip link set dev swp22 down && ip link set dev swp23 down && ip link set dev swp24 down && ip link set dev swp25 down && ip link set dev swp26 down && ip link set dev swp27 down && ip link set dev swp28 down && ip link set dev swp29 down && ip link set dev swp30 down && ip link set dev swp31 down && ip link set dev swp32 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp37 down && ip link set dev swp38 down && ip link set dev swp39 down && ip link set dev swp40 down && ip link set dev swp41 down && ip link set dev swp42 down && ip link set dev swp43 down && ip link set dev swp44 down && ip link set dev swp45 down && ip link set dev swp46 down && ip link set dev swp47 down && ip link set dev swp48 down && ip link set dev swp49 down && ip link set dev swp50 down && ip link set dev swp51 down && ip link set dev swp52 down INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: ip link set dev swp1 master bond_0 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_2 && ip link set dev swp4 master bond_3 && ip link set dev swp5 master bond_4 && ip link set dev swp6 master bond_5 && ip link set dev swp7 master bond_6 && ip link set dev swp8 master bond_7 && ip link set dev swp9 master bond_8 && ip link set dev swp10 master bond_9 && ip link set dev swp11 master bond_10 && ip link set dev swp12 master bond_11 && ip link set dev swp13 master bond_12 && ip link set dev swp14 master bond_13 && ip link set dev swp15 master bond_14 && ip link set dev swp16 master bond_15 && ip link set dev swp17 master bond_16 && ip link set dev swp18 master bond_17 && ip link set dev swp19 master bond_18 && ip link set dev swp20 master bond_19 && ip link set dev swp21 master bond_20 && ip link set dev swp22 master bond_21 && ip link set dev swp23 master bond_22 && ip link set dev swp24 master bond_23 && ip link set dev swp25 master bond_24 && ip link set dev swp26 master bond_25 && ip link set dev swp27 master bond_26 && ip link set dev swp28 master bond_27 && ip link set dev swp29 master bond_28 && ip link set dev swp30 master bond_29 && ip link set dev swp31 master bond_30 && ip link set dev swp32 master bond_31 && ip link set dev swp33 master bond_32 && ip link set dev swp34 master bond_33 && ip link set dev swp35 master bond_34 && ip link set dev swp36 master bond_35 && ip link set dev swp37 master bond_36 && ip link set dev swp38 master bond_37 && ip link set dev swp39 master bond_38 && ip link set dev swp40 master bond_39 && ip link set dev swp41 master bond_40 && ip link set dev swp42 master bond_41 && ip link set dev swp43 master bond_42 && ip link set dev swp44 master bond_43 && ip link set dev swp45 master bond_44 && ip link set dev swp46 master bond_45 && ip link set dev swp47 master bond_46 && ip link set dev swp48 master bond_47 && ip link set dev swp49 master bond_48 && ip link set dev swp50 master bond_49 && ip link set dev swp51 master bond_50 && ip link set dev swp52 master bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up && ip link set dev swp10 up && ip link set dev swp11 up && ip link set dev swp12 up && ip link set dev swp13 up && ip link set dev swp14 up && ip link set dev swp15 up && ip link set dev swp16 up && ip link set dev swp17 up && ip link set dev swp18 up && ip link set dev swp19 up && ip link set dev swp20 up && ip link set dev swp21 up && ip link set dev swp22 up && ip link set dev swp23 up && ip link set dev swp24 up && ip link set dev swp25 up && ip link set dev swp26 up && ip link set dev swp27 up && ip link set dev swp28 up && ip link set dev swp29 up && ip link set dev swp30 up && ip link set dev swp31 up && ip link set dev swp32 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up && ip link set dev swp37 up && ip link set dev swp38 up && ip link set dev swp39 up && ip link set dev swp40 up && ip link set dev swp41 up && ip link set dev swp42 up && ip link set dev swp43 up && ip link set dev swp44 up && ip link set dev swp45 up && ip link set dev swp46 up && ip link set dev swp47 up && ip link set dev swp48 up && ip link set dev swp49 up && ip link set dev swp50 up && ip link set dev swp51 up && ip link set dev swp52 up INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:35 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:85","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:86","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:87","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_3","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:88","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_4","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_5","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_6","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_7","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_8","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_9","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_10","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_11","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:90","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_12","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:91","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_13","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:92","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_14","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:93","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_15","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:94","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_16","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:95","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_17","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:96","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_18","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:97","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_19","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:98","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_20","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:99","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_21","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_22","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_23","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_24","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9d","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_25","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9e","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_26","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:9f","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_27","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a0","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_28","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a1","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_29","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a2","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_30","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a3","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_31","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a4","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_32","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_33","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_34","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_35","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_36","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a9","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_37","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:aa","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_38","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:ab","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_39","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:ac","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_40","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:ad","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_41","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:ae","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_42","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:af","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_43","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b0","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_44","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b1","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_45","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b2","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_46","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b3","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_47","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b4","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_48","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b5","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_49","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b6","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_50","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b7","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_51","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:b8","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":175,"ifname":"bond_0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":176,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":177,"ifname":"bond_2","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":178,"ifname":"bond_3","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":179,"ifname":"bond_4","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":180,"ifname":"bond_5","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":181,"ifname":"bond_6","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":182,"ifname":"bond_7","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":183,"ifname":"bond_8","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":184,"ifname":"bond_9","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":185,"ifname":"bond_10","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond_11","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"bond_12","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":188,"ifname":"bond_13","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":189,"ifname":"bond_14","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":190,"ifname":"bond_15","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":191,"ifname":"bond_16","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":192,"ifname":"bond_17","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":193,"ifname":"bond_18","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":194,"ifname":"bond_19","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":195,"ifname":"bond_20","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":196,"ifname":"bond_21","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":197,"ifname":"bond_22","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":198,"ifname":"bond_23","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":199,"ifname":"bond_24","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":200,"ifname":"bond_25","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":201,"ifname":"bond_26","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":202,"ifname":"bond_27","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":203,"ifname":"bond_28","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":204,"ifname":"bond_29","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":205,"ifname":"bond_30","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":206,"ifname":"bond_31","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":207,"ifname":"bond_32","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":208,"ifname":"bond_33","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":209,"ifname":"bond_34","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":210,"ifname":"bond_35","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":211,"ifname":"bond_36","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":212,"ifname":"bond_37","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":213,"ifname":"bond_38","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":214,"ifname":"bond_39","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":215,"ifname":"bond_40","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":216,"ifname":"bond_41","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":217,"ifname":"bond_42","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":218,"ifname":"bond_43","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":219,"ifname":"bond_44","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":220,"ifname":"bond_45","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":221,"ifname":"bond_46","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":222,"ifname":"bond_47","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":223,"ifname":"bond_48","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":224,"ifname":"bond_49","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":225,"ifname":"bond_50","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":226,"ifname":"bond_51","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":227,"ifname":"bond_52","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:bb:3c:74:06:3b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":228,"ifname":"bond_53","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"9a:3e:0f:24:8d:2d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":229,"ifname":"bond_54","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"aa:f3:e9:33:be:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":230,"ifname":"bond_55","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"82:86:79:44:25:f6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":231,"ifname":"bond_56","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"9e:bd:39:f4:bc:25","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":232,"ifname":"bond_57","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"26:a7:89:75:20:6f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":233,"ifname":"bond_58","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"de:be:80:b8:a9:77","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":234,"ifname":"bond_59","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"96:3f:35:20:a2:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":235,"ifname":"bond_60","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:86:22:03:ed:d9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":236,"ifname":"bond_61","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"ae:82:7c:58:d3:42","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":237,"ifname":"bond_62","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"2a:c6:7c:80:6a:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":238,"ifname":"bond_63","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"86:14:5a:ad:c2:fc","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: ip link delete bond_0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: ip link delete bond_2 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: ip link delete bond_3 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: ip link delete bond_4 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: ip link delete bond_5 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: ip link delete bond_6 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: ip link delete bond_7 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: ip link delete bond_8 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: ip link delete bond_9 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: ip link delete bond_10 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: ip link delete bond_11 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: ip link delete bond_12 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: ip link delete bond_13 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=161, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=46] Command: ip link delete bond_14 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=161, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=48] Command: ip link delete bond_15 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=161, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=50] Command: ip link delete bond_16 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=161, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=52] Command: ip link delete bond_17 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=161, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=54] Command: ip link delete bond_18 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=161, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=56] Command: ip link delete bond_19 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=161, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=58] Command: ip link delete bond_20 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=161, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=60] Command: ip link delete bond_21 INFO asyncssh:logging.py:92 [conn=161, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=161, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=62] Command: ip link delete bond_22 INFO asyncssh:logging.py:92 [conn=161, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=161, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=64] Command: ip link delete bond_23 INFO asyncssh:logging.py:92 [conn=161, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=161, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=66] Command: ip link delete bond_24 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=161, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=68] Command: ip link delete bond_25 INFO asyncssh:logging.py:92 [conn=161, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=161, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=70] Command: ip link delete bond_26 INFO asyncssh:logging.py:92 [conn=161, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=70] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=161, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=72] Command: ip link delete bond_27 INFO asyncssh:logging.py:92 [conn=161, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=161, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=74] Command: ip link delete bond_28 INFO asyncssh:logging.py:92 [conn=161, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=161, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=76] Command: ip link delete bond_29 INFO asyncssh:logging.py:92 [conn=161, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=76] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=161, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=78] Command: ip link delete bond_30 INFO asyncssh:logging.py:92 [conn=161, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=161, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=80] Command: ip link delete bond_31 INFO asyncssh:logging.py:92 [conn=161, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=161, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=82] Command: ip link delete bond_32 INFO asyncssh:logging.py:92 [conn=161, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=82] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=161, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=84] Command: ip link delete bond_33 INFO asyncssh:logging.py:92 [conn=161, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=161, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=86] Command: ip link delete bond_34 INFO asyncssh:logging.py:92 [conn=161, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=161, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=88] Command: ip link delete bond_35 INFO asyncssh:logging.py:92 [conn=161, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=161, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=90] Command: ip link delete bond_36 INFO asyncssh:logging.py:92 [conn=161, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=91] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=161, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=92] Command: ip link delete bond_37 INFO asyncssh:logging.py:92 [conn=161, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=92] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=161, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=94] Command: ip link delete bond_38 INFO asyncssh:logging.py:92 [conn=161, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=161, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=96] Command: ip link delete bond_39 INFO asyncssh:logging.py:92 [conn=161, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=161, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=98] Command: ip link delete bond_40 INFO asyncssh:logging.py:92 [conn=161, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=161, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=100] Command: ip link delete bond_41 INFO asyncssh:logging.py:92 [conn=161, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=100] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=161, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=102] Command: ip link delete bond_42 INFO asyncssh:logging.py:92 [conn=161, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=161, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=104] Command: ip link delete bond_43 INFO asyncssh:logging.py:92 [conn=161, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=104] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=105] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=161, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=106] Command: ip link delete bond_44 INFO asyncssh:logging.py:92 [conn=161, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=106] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=107] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=161, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=108] Command: ip link delete bond_45 INFO asyncssh:logging.py:92 [conn=161, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=108] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=109] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=161, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=110] Command: ip link delete bond_46 INFO asyncssh:logging.py:92 [conn=161, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=111] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=112] Command: ip link delete bond_47 INFO asyncssh:logging.py:92 [conn=161, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=113] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=161, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=114] Command: ip link delete bond_48 INFO asyncssh:logging.py:92 [conn=161, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=115] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=161, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=116] Command: ip link delete bond_49 INFO asyncssh:logging.py:92 [conn=161, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=116] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=117] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=161, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=118] Command: ip link delete bond_50 INFO asyncssh:logging.py:92 [conn=161, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=119] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=120] Command: ip link delete bond_51 INFO asyncssh:logging.py:92 [conn=161, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=120] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=121] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=161, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=122] Command: ip link delete bond_52 INFO asyncssh:logging.py:92 [conn=161, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=122] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=123] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=161, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=124] Command: ip link delete bond_53 INFO asyncssh:logging.py:92 [conn=161, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=124] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=125] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=161, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=126] Command: ip link delete bond_54 INFO asyncssh:logging.py:92 [conn=161, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=126] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=127] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=161, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=128] Command: ip link delete bond_55 INFO asyncssh:logging.py:92 [conn=161, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=128] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=129] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=161, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=130] Command: ip link delete bond_56 INFO asyncssh:logging.py:92 [conn=161, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=130] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=131] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=161, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=132] Command: ip link delete bond_57 INFO asyncssh:logging.py:92 [conn=161, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=132] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=133] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=161, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=134] Command: ip link delete bond_58 INFO asyncssh:logging.py:92 [conn=161, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=135] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=161, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=136] Command: ip link delete bond_59 INFO asyncssh:logging.py:92 [conn=161, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=136] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=137] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=161, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=138] Command: ip link delete bond_60 INFO asyncssh:logging.py:92 [conn=161, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=138] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=139] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=161, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=140] Command: ip link delete bond_61 INFO asyncssh:logging.py:92 [conn=161, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=140] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=141] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=161, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=142] Command: ip link delete bond_62 INFO asyncssh:logging.py:92 [conn=161, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=142] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=143] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=161, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=144] Command: ip link delete bond_63 INFO asyncssh:logging.py:92 [conn=161, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=144] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=145] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=146] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=146] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lacp/test_lacp_no_traffic.py::test_lacp_max_ports_in_lags | 1.52 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lacp_max_ports_in_lags">Starting testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9396' coro=<test_lacp_max_ports_in_lags() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py:112> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=161, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.3, port 45620 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: ip link add bond_1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: ip link set dev swp1 down && ip link set dev swp2 down && ip link set dev swp3 down && ip link set dev swp4 down && ip link set dev swp5 down && ip link set dev swp6 down && ip link set dev swp7 down && ip link set dev swp8 down && ip link set dev swp9 down INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: ip link set dev swp1 master bond_1 && ip link set dev swp2 master bond_1 && ip link set dev swp3 master bond_1 && ip link set dev swp4 master bond_1 && ip link set dev swp5 master bond_1 && ip link set dev swp6 master bond_1 && ip link set dev swp7 master bond_1 && ip link set dev swp8 master bond_1 && ip link set dev swp9 master bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: No space left on device INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: ip link set dev swp1 up && ip link set dev swp2 up && ip link set dev swp3 up && ip link set dev swp4 up && ip link set dev swp5 up && ip link set dev swp6 up && ip link set dev swp7 up && ip link set dev swp8 up && ip link set dev swp9 up INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lacp_max_ports_in_lags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lacp/test_lacp_no_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:44 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:85","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:86","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:86","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:87","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:87","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:88","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:88","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:89","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:89","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:8a","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8a","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:8b","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8b","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond_1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:8c","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:8c","queue_id":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":239,"ifname":"bond_1","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: ip link delete bond_1 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 00:09:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[basic] | 116.07 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10164' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[basic]">Starting testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.3, port 47888 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:17:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:17:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1412" }, "rx": { "rx": "409629" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1412" }, "rx": { "rx": "409635" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:19:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[mandatory] | 146.79 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10193' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[mandatory]">Starting testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.3, port 47160 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:19:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:19:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1416" }, "rx": { "rx": "409635" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "1" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "10", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "00:19:2f:a7:b2:8d" } }, "port": { "id": { "type": "ifalias", "value": "Uplink to Spine 1" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:21:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_received[ttl] | 160.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10222' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_received[ttl]">Starting testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.3, port 47244 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:21:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:21:45 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1420" }, "rx": { "rx": "409641" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "2" }, "delete_cnt": { "delete_cnt": "2" } } } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "11", "age": "0 day, 00:00:03", "chassis": { "id": { "type": "mac", "value": "00:00:00:11:11:11" } }, "port": { "id": { "type": "mac", "value": "00:00:00:00:00:07" }, "ttl": "20" } } } } } INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_received[ttl] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:24:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[disable] | 146.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10253' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[disable]">Starting testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.3, port 36024 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:24:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:24:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: lldpcli configure ports swp33 lldp status disabled INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[disable] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:26:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_rx[port_down_up] | 242.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10280' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_rx[port_down_up]">Starting testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.3, port 43276 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:26:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:26:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "12", "age": "0 day, 00:00:06", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_rx[port_down_up] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:30:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_receive.py::test_lldp_max_neighbours | 147.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10313' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_max_neighbours">Starting testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.3, port 53198 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:30:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:30:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: lldpcli configure ports swp33 lldp status rx-only INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: lldpcli show neighbors | grep RID | wc -l INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG infra2:Logger.py:156 32 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_max_neighbours from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_receive.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:33:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[basic] | 78.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10342' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[basic]">Starting testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.3, port 55754 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:33:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:33:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1434" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1438" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[basic] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:34:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[mandatory] | 50.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10375' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[mandatory]">Starting testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.3, port 34786 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:34:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:34:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1441" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra2": { "id": { "type": "mac", "value": "46:15:5d:75:69:95" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::1abe:92ff:fe13:6482" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "18:be:92:13:64:a5" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG infra2:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG infra2:Logger.py:156 dentlab-infra2 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG infra2:Logger.py:156 01:35:27.842390 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:35:27.842390 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[mandatory] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:35:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_transmitted[optional] | 54.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10412' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_transmitted[optional]">Starting testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.3, port 56268 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:35:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:35:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1448" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:00:00", "chassis": { "dentlab-infra2": { "id": { "type": "mac", "value": "46:15:5d:75:69:95" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::1abe:92ff:fe13:6482" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "18:be:92:13:64:a5" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG infra2:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: uname -n INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG infra2:Logger.py:156 dentlab-infra2 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG infra2:Logger.py:156 01:36:22.314812 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:36:22.314812 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_transmitted[optional] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:36:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[disabled] | 54.52 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10449' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[disabled]">Starting testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.3, port 46502 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:36:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:36:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1454" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1454" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[disabled] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:37:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[port_down] | 63.74 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10480' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[port_down]">Starting testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.3, port 56146 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:37:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:37:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1457" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1457" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1461" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[port_down] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:38:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx[interval] | 54.26 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10517' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx[interval]">Starting testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.3, port 36524 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:38:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:38:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1465" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1468" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx[interval] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:39:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_transmit.py::test_lldp_tx_hold | 55.93 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10548' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_tx_hold">Starting testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.3, port 41052 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:39:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:39:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: lldpcli configure lldp tx-hold 500 && lldpcli configure ports swp33 lldp status tx-only && lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG infra2:Logger.py:156 01:40:10.829017 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:40:10.829017 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 1000s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_tx_hold from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_transmit.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:40:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "500", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: lldpcli configure lldp tx-hold 4 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_bridge | 154.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10580' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_bridge">Starting testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.3, port 52000 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:40:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:40:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: ip link set dev swp33 up && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1478" }, "rx": { "rx": "409690" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "36" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: lldpcli configure ports swp33 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "rid": "45", "age": "0 day, 00:00:04", "chassis": { "id": { "type": "mac", "value": "a2:2c:38:b8:9c:a6" } }, "port": { "id": { "type": "ifname", "value": "Ethernet0/13" }, "ttl": "120" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1526" }, "rx": { "rx": "409696" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "36" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: lldpcli -f json show interfaces ports swp33 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "via": "LLDP", "age": "0 day, 00:01:37", "chassis": { "dentlab-infra2": { "id": { "type": "mac", "value": "46:15:5d:75:69:95" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::1abe:92ff:fe13:6482" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": true }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": false } ] } }, "port": { "id": { "type": "mac", "value": "18:be:92:13:64:a5" }, "descr": "swp33" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG infra2:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: uname -n INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG infra2:Logger.py:156 dentlab-infra2 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG infra2:Logger.py:156 01:42:44.942714 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp33 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:42:44.942714 18:be:92:13:64:a5 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a5 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Bridge] (0x0004) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp33 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:42:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:42:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":296,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/lldp/test_lldp_tx_rx.py::test_lldp_enable_disable_ports | 226.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10633' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_lldp_enable_disable_ports">Starting testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.3, port 49030 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:42:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG infra2:Logger.py:156 systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: systemctl list-units --type=service INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG infra2:Logger.py:156 UNIT LOAD ACTIVE SUB DESCRIPTION cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus dnsmasq.service loaded active running dnsmasq - A lightweight DHCP and caching DNS server faultd.service loaded active running LSB: Start Faultd Agent frr.service loaded active running FRRouting getty@tty1.service loaded active running Getty on tty1 hddtemp.service loaded active exited LSB: disk temperature monitoring daemon hostapd.service loaded active exited LSB: Advanced IEEE 802.11 management daemon inetd.service loaded active running Internet superserver lldpd.service loaded active running LLDP daemon lm-sensors.service loaded active exited Initialize hardware monitoring sensors netplug.service loaded active running LSB: Brings up/down network automatically networking.service loaded active exited ifupdown2 networking initialization onlp-snmpd.service loaded active running LSB: Start ONLP SNMP Agent onlpd.service loaded active running LSB: Start ONLP Platform Agent poed.service loaded active running DentOS POE Agent resolvconf.service loaded active exited Nameserver information manager rpcbind.service loaded active running RPC bind portmap service rsyslog.service loaded active running System Logging Service serial-getty@ttyS0.service loaded active running Serial Getty on ttyS0 smartd.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon ssh.service loaded active running OpenBSD Secure Shell server switchdev-online@swp52.service loaded active exited Online state for switchdev device swp52 sysstat.service loaded active exited LSB: Start/stop sysstat's sadc systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions watchdog.service loaded active running watchdog daemon LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 38 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "30", "tx-delay-ms": "30000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:42:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_10.0.0.3/24', 'count': 1, 'ip': '10.0.0.3', 'gw': '10.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.3/24', 'count': 1, 'ip': '11.0.0.3', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_12.0.0.3/24', 'count': 1, 'ip': '12.0.0.3', 'gw': '12.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_13.0.0.3/24', 'count': 1, 'ip': '13.0.0.3', 'gw': '13.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: lldpcli configure lldp tx-interval 2 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: lldpcli configure ports swp33 lldp status disabled && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status disabled && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_10.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_12.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_13.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1533" }, "rx": { "rx": "409696" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: lldpcli -f json show neighbors ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: lldpcli -f json show statistics ports swp33 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp33": { "tx": { "tx": "1533" }, "rx": { "rx": "409696" }, "rx_discarded_cnt": { "rx_discarded_cnt": "409629" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "1" }, "insert_cnt": { "insert_cnt": "37" }, "delete_cnt": { "delete_cnt": "37" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "1444" }, "rx": { "rx": "16807" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16801" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "46", "age": "0 day, 00:00:08", "chassis": { "id": { "type": "mac", "value": "02:98:a3:52:ca:f7" } }, "port": { "id": { "type": "mac", "value": "02:36:cb:a3:30:f3" }, "ttl": "175" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: lldpcli -f json show neighbors ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "rid": "46", "age": "0 day, 00:00:09", "chassis": { "id": { "type": "mac", "value": "02:98:a3:52:ca:f7" } }, "port": { "id": { "type": "mac", "value": "02:36:cb:a3:30:f3" }, "ttl": "175" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: lldpcli -f json show statistics ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp34": { "tx": { "tx": "1447" }, "rx": { "rx": "16807" }, "rx_discarded_cnt": { "rx_discarded_cnt": "16801" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: lldpcli -f json show interfaces ports swp34 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp34": { "via": "LLDP", "age": "0 day, 00:02:15", "chassis": { "dentlab-infra2": { "id": { "type": "mac", "value": "46:15:5d:75:69:95" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::1abe:92ff:fe13:6482" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "18:be:92:13:64:a6" }, "descr": "swp34" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=29] Channel closed DEBUG infra2:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=187, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=30] Command: uname -n INFO asyncssh:logging.py:92 [conn=187, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=30] Channel closed DEBUG infra2:Logger.py:156 dentlab-infra2 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=31] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=32] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=32] Channel closed DEBUG infra2:Logger.py:156 01:46:16.439958 18:be:92:13:64:a6 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a6 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp34 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:46:16.439958 18:be:92:13:64:a6 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a6 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp34 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=187, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=33] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=34] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=34] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "1283" }, "rx": { "rx": "5930" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5930" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=35] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=36] Command: lldpcli -f json show neighbors ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=36] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { } } INFO asyncssh:logging.py:92 [conn=187, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=37] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=38] Command: lldpcli -f json show statistics ports swp35 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=38] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp35": { "tx": { "tx": "1283" }, "rx": { "rx": "5930" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5930" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "0" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=39] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=40] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=40] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "1330" }, "rx": { "rx": "5937" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5931" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=41] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=42] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=42] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "47", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:3a:0c:a3:82:da" } }, "port": { "id": { "type": "mac", "value": "02:6c:81:43:0c:24" }, "ttl": "187" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=43] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=44] Command: lldpcli -f json show neighbors ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=44] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "rid": "47", "age": "0 day, 00:00:24", "chassis": { "id": { "type": "mac", "value": "02:3a:0c:a3:82:da" } }, "port": { "id": { "type": "mac", "value": "02:6c:81:43:0c:24" }, "ttl": "187" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=45] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=46] Command: lldpcli -f json show statistics ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=46] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp36": { "tx": { "tx": "1334" }, "rx": { "rx": "5937" }, "rx_discarded_cnt": { "rx_discarded_cnt": "5931" }, "rx_unrecognized_cnt": { "rx_unrecognized_cnt": "0" }, "ageout_cnt": { "ageout_cnt": "0" }, "insert_cnt": { "insert_cnt": "1" }, "delete_cnt": { "delete_cnt": "0" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=47] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=48] Command: lldpcli -f json show interfaces ports swp36 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=48] Channel closed DEBUG infra2:Logger.py:156 { "lldp": { "interface": { "swp36": { "via": "LLDP", "age": "0 day, 00:02:30", "chassis": { "dentlab-infra2": { "id": { "type": "mac", "value": "46:15:5d:75:69:95" }, "descr": "Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64", "mgmt-ip": [ "20.20.0.1", "fe80::1abe:92ff:fe13:6482" ], "mgmt-iface": [ "1", "5" ], "capability": [ { "type": "Bridge", "enabled": false }, { "type": "Router", "enabled": false }, { "type": "Wlan", "enabled": false }, { "type": "Station", "enabled": true } ] } }, "port": { "id": { "type": "mac", "value": "18:be:92:13:64:a8" }, "descr": "swp36" }, "ttl": { "ttl": "8" } } } } } INFO asyncssh:logging.py:92 [conn=187, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=49] Channel closed DEBUG infra2:Logger.py:156 uname -n INFO asyncssh:logging.py:92 [conn=187, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=50] Command: uname -n INFO asyncssh:logging.py:92 [conn=187, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=50] Channel closed DEBUG infra2:Logger.py:156 dentlab-infra2 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra2... INFO asyncssh:logging.py:92 [conn=187, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=51] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=52] Command: echo onl | sudo -S timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne INFO asyncssh:logging.py:92 [conn=187, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=52] Channel closed DEBUG infra2:Logger.py:156 01:46:32.452928 18:be:92:13:64:a8 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a8 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 3 tcpdump -i swp36 ether proto 0x88cc -vnne on infra2 with rc 0 and out 01:46:32.452928 18:be:92:13:64:a8 > 01:80:c2:00:00:0e, ethertype LLDP (0x88cc), length 244: LLDP, length 230 Chassis ID TLV (1), length 7 Subtype MAC address (4): 46:15:5d:75:69:95 Port ID TLV (2), length 7 Subtype MAC address (3): 18:be:92:13:64:a8 Time to Live TLV (3), length 2: TTL 8s System Name TLV (5), length 14: dentlab-infra2 System Description TLV (6), length 113 Debian GNU/Linux 9 (stretch) Linux 5.15.11-gd75daea83a47-dirty #1 SMP PREEMPT Tue May 9 05:46:09 UTC 2023 aarch64 System Capabilities TLV (7), length 4 System Capabilities [Bridge, WLAN AP, Router, Station Only] (0x009c) Enabled Capabilities [Station Only] (0x0080) Management Address TLV (8), length 12 Management Address length 5, AFI IPv4 (1): 20.20.0.1 Interface Index Interface Numbering (2): 1 Management Address TLV (8), length 24 Management Address length 17, AFI IPv6 (2): fe80::1abe:92ff:fe13:6482 Interface Index Interface Numbering (2): 5 Port Description TLV (4), length 5: swp36 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) Link aggregation Subtype (3) aggregation status [supported], aggregation port ID 0 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) MAC/PHY configuration/status Subtype (1) autonegotiation [supported, enabled] (0x03) PMD autoneg capability [10BASE-T hdx, 10BASE-T fdx, 100BASE-TX hdx, 100BASE-TX fdx, 1000BASE-T fdx] (0x6c01) MAU type 1000BASET fdx (0x001e) End TLV (0), length 0 tcpdump: listening on swp36, link-type EN10MB (Ethernet), capture size 262144 bytes 1 packet captured 1 packet received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_lldp_enable_disable_ports from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/lldp/test_lldp_tx_rx.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=54] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:46:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=55] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=56] Command: lldpcli configure ports swp33 lldp status rx-and-tx && lldpcli configure ports swp34 lldp status rx-and-tx && lldpcli configure ports swp35 lldp status rx-and-tx && lldpcli configure ports swp36 lldp status rx-and-tx INFO asyncssh:logging.py:92 [conn=187, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=57] Channel closed DEBUG infra2:Logger.py:156 lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=58] Command: lldpcli -f json show running-configuration INFO asyncssh:logging.py:92 [conn=187, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=58] Channel closed DEBUG infra2:Logger.py:156 { "configuration": { "config": { "tx-delay": "2", "tx-delay-ms": "2000", "tx-hold": "4", "max-neighbors": "32", "rx-only": "no", "mgmt-pattern": "(none)", "iface-pattern": "(none)", "perm-iface-pattern": "(none)", "cid-pattern": "(none)", "cid-string": "(none)", "description": "(none)", "platform": "Linux", "hostname": "(none)", "advertise-version": "yes", "ifdescr-update": "no", "iface-promisc": "no", "lldpmed-no-inventory": "yes", "lldpmed-faststart": "yes", "lldpmed-faststart-interval": "1", "bond-slave-src-mac-type": "local", "lldp-portid-type": "unknown", "lldp-agent-type": "unknown" } } } INFO asyncssh:logging.py:92 [conn=187, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=59] Channel closed DEBUG infra2:Logger.py:156 lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=60] Command: lldpcli configure lldp tx-interval 30 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=60] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] | 138.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10755' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.3, port 60204 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:48:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 120.118.242.115 dst_ip 32.0.82.191 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 120.118.242.115 dst_ip 32.0.82.191 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"32.0.82.191","src_ip":"120.118.242.115"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_dst_ip_32.0.82.191_src_ip_120.118.242.115 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6cd1b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 3187602 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2207 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:50:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:50:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":298,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:50:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=189, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=189, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=189, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=189, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=189, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=189, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=189, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=189, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=189, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=189, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=189, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=189, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=189, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=189, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=189, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=189, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=189, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=189, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=189, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=189, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=189, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=189, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=189, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=189, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=189, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=189, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=189, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=189, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=189, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=189, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=189, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=189, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=189, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=189, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=189, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=189, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=189, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=189, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=189, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=189, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=189, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=189, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=189, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=189, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=189, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=189, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=189, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=189, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=189, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=189, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=189, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=189, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=189, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=189, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=189, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=189, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=189, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=189, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=189, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=189, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=189, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=189, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=189, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=189, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=189, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] | 144.95 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10918' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.3, port 57126 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:50:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:73:e3:6b:eb:54 dst_mac 02:32:f1:7a:ca:70 vlan_id 4072 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:73:e3:6b:eb:54 dst_mac 02:32:f1:7a:ca:70 vlan_id 4072 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":4072,"dst_mac":"02:32:f1:7a:ca:70","src_mac":"02:73:e3:6b:eb:54"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4072_dst_mac_02:32:f1:7a:ca:70_src_mac_02:73:e3:6b:eb:54 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafef250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1541066 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1675 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:52:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:52:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":299,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:52:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=190, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=190, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=190, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=190, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=190, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=190, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=190, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=190, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=190, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=190, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=190, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=190, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=190, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=190, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=190, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=190, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=190, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=190, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=190, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=190, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=190, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=190, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=190, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=190, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=190, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=190, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=190, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=190, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=190, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=190, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=190, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=190, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=190, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=190, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] | 143.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11081' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.3, port 40732 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:52:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 61.187.211.229 dst_ip 17.41.241.86 ip_proto udp src_port 49496 dst_port 36411 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 61.187.211.229 dst_ip 17.41.241.86 ip_proto udp src_port 49496 dst_port 36411 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"17.41.241.86","src_ip":"61.187.211.229","dst_port":36411,"src_port":49496},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_17.41.241.86_src_ip_61.187.211.229_dst_port_36411_src_port_49496 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb6ccb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2474544 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1977 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:55:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:55:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":300,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:55:08 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=191, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=191, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=191, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=191, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=191, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=191, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=191, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=191, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=191, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=191, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=191, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=191, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=191, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=191, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=191, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=191, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=191, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=191, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=191, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=191, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=191, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=191, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=191, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=191, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=191, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=191, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=191, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=191, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=191, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=191, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=191, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=191, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=191, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=191, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=191, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=191, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=191, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=191, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=191, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=191, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=191, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=191, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=191, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=191, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=191, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=191, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=191, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=191, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=191, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=191, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=191, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=191, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=191, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=191, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=191, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=191, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=191, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=191, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=191, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=191, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=191, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] | 144.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11244' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.3, port 42904 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:55:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 108.137.45.225 dst_ip 31.59.125.186 ip_proto tcp src_port 63846 dst_port 56124 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 108.137.45.225 dst_ip 31.59.125.186 ip_proto tcp src_port 63846 dst_port 56124 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"31.59.125.186","src_ip":"108.137.45.225","dst_port":56124,"src_port":63846},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_tcp_dst_ip_31.59.125.186_src_ip_108.137.45.225_dst_port_56124_src_port_63846 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0afc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2001565 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1824 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:57:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:57:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":301,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:57:32 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=192, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=192, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=192, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=192, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=192, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=192, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=192, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=192, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=192, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=192, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=192, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=192, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=192, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=192, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=192, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=192, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=192, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=192, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=192, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=192, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=192, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=192, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=192, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=192, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=192, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=192, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=192, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=192, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=192, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=192, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=192, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=192, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=192, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=192, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=192, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=192, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=192, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=192, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=192, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=192, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=192, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=192, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=192, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=192, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=192, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=192, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=192, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=192, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=192, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=192, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=192, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=192, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=192, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=192, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=192, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=192, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=192, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] | 147.99 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11407' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.3, port 53624 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:57:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 2002 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: tc qdisc add dev swp34 ingress_block 2002 ingress INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 2002 ingress protocol ipv4 flower skip_sw src_ip 103.200.236.234 dst_ip 87.39.35.144 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: tc filter add block 2002 ingress protocol ipv4 flower skip_sw src_ip 103.200.236.234 dst_ip 87.39.35.144 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 2002 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: tc -j filter show block 2002 ingress INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"87.39.35.144","src_ip":"103.200.236.234"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_dst_ip_87.39.35.144_src_ip_103.200.236.234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0c84c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2274 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 3392762 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 01:59:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:00:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":302,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:00:00 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2002,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=193, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=193, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=193, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=193, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=193, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=193, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=193, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=193, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=193, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=193, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=193, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=193, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=193, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=193, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=193, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=193, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=193, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=193, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=193, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=193, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=193, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=193, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=193, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=193, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=193, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=193, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=193, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=193, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=193, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=193, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=193, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=193, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=193, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=193, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=193, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=193, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=193, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=193, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=193, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=193, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=193, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=193, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=193, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=193, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=193, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=193, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=193, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=193, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=193, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=193, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=193, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=193, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=193, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=193, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=193, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=193, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=193, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=193, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] | 146.64 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11570' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.3, port 36998 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:00:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 2199 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: tc qdisc add dev swp34 ingress_block 2199 ingress INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 2199 ingress protocol 0x8100 flower skip_sw src_mac 02:f2:5c:44:9d:33 dst_mac 02:72:57:9d:c2:6c vlan_id 3931 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: tc filter add block 2199 ingress protocol 0x8100 flower skip_sw src_mac 02:f2:5c:44:9d:33 dst_mac 02:72:57:9d:c2:6c vlan_id 3931 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 2199 ingress INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: tc -j filter show block 2199 ingress INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3931,"dst_mac":"02:72:57:9d:c2:6c","src_mac":"02:f2:5c:44:9d:33"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_3931_dst_mac_02:72:57:9d:c2:6c_src_mac_02:f2:5c:44:9d:33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafef1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2054 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2714699 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:02:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:02:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":303,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:02:27 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2199,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=194, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=194, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=194, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=194, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=194, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=194, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=194, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=194, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=194, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=194, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=194, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=194, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=194, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=194, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=194, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=194, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=194, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=194, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=194, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=194, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=194, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=194, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=194, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=194, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=194, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=194, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=194, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=194, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=194, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=194, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=194, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=194, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=194, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=194, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=194, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=194, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=194, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=194, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=194, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=194, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=194, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=194, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=194, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=194, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=194, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=194, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=194, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=194, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=194, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=194, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=194, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=194, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=194, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=194, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=194, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=194, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=194, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=194, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] | 151.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11733' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.3, port 56856 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:02:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 660 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: tc qdisc add dev swp34 ingress_block 660 ingress INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 660 ingress protocol 0x0800 flower skip_sw src_ip 89.184.92.21 dst_ip 37.126.99.81 ip_proto udp src_port 14902 dst_port 11335 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: tc filter add block 660 ingress protocol 0x0800 flower skip_sw src_ip 89.184.92.21 dst_ip 37.126.99.81 ip_proto udp src_port 14902 dst_port 11335 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 660 ingress INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: tc -j filter show block 660 ingress INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"37.126.99.81","src_ip":"89.184.92.21","dst_port":11335,"src_port":14902},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_udp_dst_ip_37.126.99.81_src_ip_89.184.92.21_dst_port_11335_src_port_14902 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb174eb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1979 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2481031 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:04:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:04:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":304,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:04:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":660,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=195, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=195, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=195, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=195, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=195, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=195, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=195, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=195, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=195, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=195, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=195, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=195, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=195, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=195, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=195, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=195, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=195, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=195, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=195, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=195, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=195, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=195, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=195, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=195, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=195, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=195, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=195, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=195, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=195, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=195, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=195, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=195, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=195, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=195, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=195, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=195, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=195, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=195, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=195, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=195, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=195, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=195, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=195, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=195, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=195, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=195, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=195, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=195, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=195, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=195, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=195, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=195, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=195, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=195, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=195, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=195, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=195, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=195, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] | 141.19 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11896' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.3, port 48970 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:05:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 2617 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: tc qdisc add dev swp34 ingress_block 2617 ingress INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 2617 ingress protocol ipv4 flower skip_sw src_ip 85.46.36.33 dst_ip 54.170.147.169 ip_proto tcp src_port 26396 dst_port 59448 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: tc filter add block 2617 ingress protocol ipv4 flower skip_sw src_ip 85.46.36.33 dst_ip 54.170.147.169 ip_proto tcp src_port 26396 dst_port 59448 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 2617 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: tc -j filter show block 2617 ingress INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"54.170.147.169","src_ip":"85.46.36.33","dst_port":59448,"src_port":26396},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_tcp_dst_ip_54.170.147.169_src_ip_85.46.36.33_dst_port_59448_src_port_26396 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafee500>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2052 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2707460 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:07:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:07:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":305,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:07:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2617,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=196, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=196, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=196, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=196, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=196, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=196, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=196, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=196, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=196, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=196, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=196, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=196, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=196, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=196, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=196, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=196, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=196, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=196, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=196, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=196, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=196, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=196, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=196, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=196, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=196, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=196, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=196, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=196, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=196, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=196, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=196, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=196, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=196, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=196, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=196, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=196, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=196, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=196, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=196, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=196, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=196, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=196, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=196, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=196, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=196, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=196, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=196, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=196, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=196, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=196, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=196, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=196, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=196, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=196, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=196, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=196, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=196, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=196, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=196, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=196, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=196, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop | 248.23 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12059' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.3, port 56802 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:07:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb174730>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9327920 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3496 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3496 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3496 INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0cbd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12868961 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 5423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 5423 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 5423 INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb174130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 27443810 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 6199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 6199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6199 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:11:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:11:28 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=197, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=197, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=197, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=197, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=197, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=197, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=197, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=197, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=197, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=197, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=197, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=197, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=197, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=197, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=197, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=197, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=197, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=197, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=197, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=197, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=197, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=197, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=197, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=197, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=197, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=197, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=197, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=197, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=197, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=197, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=197, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=197, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=197, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=197, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=197, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=197, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=197, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=197, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=197, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=197, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=116] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=197, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=116] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=197, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=120] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=197, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=122] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=197, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=197, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=197, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=197, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=197, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=197, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=197, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=197, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=197, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=197, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=197, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=197, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=197, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=197, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=197, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=197, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=197, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=197, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=197, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=197, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=197, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=197, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=197, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=157] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=158] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:11:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=159] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=160] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":306,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=161] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=162] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span | 343.16 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12234' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.3, port 57980 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:11:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp34","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f96f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2406898 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3003657 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 596830 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 596816 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the mirred port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f9fc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2498157 Rx 2498156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2498097 Rx 3110151 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3110077 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3110002 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb17f7c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_swp33 SIP-DIP N/A Tx 1756374 Rx 2079777 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_swp33 SIP-DIP N/A Tx 1756374 Rx 431467 Loss 75.434 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_swp33 SIP-DIP N/A Tx 1756374 Rx 319035 Loss 81.836 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_swp34 SIP-DIP N/A Tx 1756374 Rx 1756374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_swp34 SIP-DIP N/A Tx 1756374 Rx 1756374 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_swp34 SIP-DIP N/A Tx 1756374 Rx 1756373 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:5 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 and stream stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=198, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=198, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=198, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=198, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=198, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=198, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=198, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=198, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=42] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=198, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=198, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=44] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=198, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=46] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=198, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=198, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=48] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=198, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=50] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=198, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=52] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=198, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=54] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=198, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=198, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=56] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=198, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=198, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=58] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=198, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=198, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=60] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=198, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=198, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=62] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=198, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=198, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=64] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=198, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=198, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=66] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=198, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=198, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=68] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=198, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=198, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=70] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=198, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=198, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=72] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=198, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=198, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=74] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=198, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=198, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=76] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=198, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=198, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=78] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=198, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=198, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=80] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=198, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=198, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=82] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=198, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=198, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=84] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=198, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=198, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=86] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=198, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=198, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=88] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=198, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=198, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=90] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=198, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=198, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=92] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=198, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=198, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=94] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=198, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=198, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=96] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=198, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=198, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=98] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=198, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=198, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=100] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=198, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=198, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=102] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=198, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=198, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=104] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=198, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=106] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=198, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=108] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=198, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=108] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=198, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=112] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=198, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=114] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=198, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=198, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=116] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=198, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=198, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=118] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=198, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=198, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=120] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=198, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=198, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=122] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=198, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=198, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=124] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=198, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=198, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=126] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=198, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=198, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=128] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=198, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=198, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=130] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=198, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=198, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=132] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=198, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=198, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=134] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=198, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=198, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=136] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=198, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=198, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=138] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=198, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=198, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=140] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=198, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=198, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=142] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=198, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=198, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=144] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=198, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=198, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=146] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=198, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=198, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=148] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=198, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=198, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=198, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=149] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=150] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=151] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=152] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":307,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=153] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=154] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=198, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=154] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded | 3.19 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12401' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.3, port 49666 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9200 flower action drop INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9200 flower action drop INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9200"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:14 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a6","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":308,"ifname":"bond33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:14 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=199, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=199, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=199, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=199, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=199, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=199, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=199, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=50] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=199, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=52] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=199, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=54] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=199, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=199, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=56] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=199, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=199, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=58] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=199, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=199, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=60] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=199, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=199, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=62] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=199, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=199, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=64] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=199, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=199, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=66] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=199, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=199, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=68] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=199, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=199, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=70] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=199, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=199, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=72] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=199, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=199, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=74] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=199, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=199, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=76] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=199, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=199, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=78] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=199, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=199, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=80] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=199, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=199, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=82] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=199, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=199, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=84] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=199, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=199, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=86] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=199, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=199, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=88] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=199, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=199, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=90] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=199, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=199, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=92] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=199, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=199, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=94] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=199, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=199, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=96] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=199, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=199, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=98] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=199, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=199, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=100] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=199, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=199, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=102] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=199, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=199, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=104] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=199, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=199, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=106] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=199, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=199, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=108] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=199, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=199, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=110] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=199, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=199, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=112] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=199, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=114] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=199, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=199, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=199, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=199, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=199, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=199, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=199, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=199, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=199, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=199, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=199, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=199, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=199, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=199, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=199, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=199, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=199, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=199, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=199, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=199, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=199, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=199, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=199, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=199, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=199, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=199, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=199, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=199, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=199, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=199, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=199, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=199, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=199, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=199, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=199, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=199, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=199, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=199, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule | 250.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12566' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.3, port 42578 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:17:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 100 flower src_mac 02:e5:4f:36:46:a3 dst_mac 02:bb:a1:af:ad:8f src_ip 126.85.126.230 dst_ip 44.49.90.4 ip_proto udp src_port 18236 dst_port 55603 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 pref 100 flower src_mac 02:e5:4f:36:46:a3 dst_mac 02:bb:a1:af:ad:8f src_ip 126.85.126.230 dst_ip 44.49.90.4 ip_proto udp src_port 18236 dst_port 55603 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 200 flower src_mac 02:31:1f:37:3d:2c dst_mac 02:74:e1:47:31:1c src_ip 12.139.114.65 dst_ip 27.96.17.161 ip_proto udp src_port 1549 dst_port 37606 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: tc filter add dev swp33 ingress protocol ipv4 pref 200 flower src_mac 02:31:1f:37:3d:2c dst_mac 02:74:e1:47:31:1c src_ip 12.139.114.65 dst_ip 27.96.17.161 ip_proto udp src_port 1549 dst_port 37606 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:ec:03:12:0f:df dst_mac 02:46:ab:05:7b:f7 src_ip 67.202.197.23 dst_ip 56.220.233.162 ip_proto udp src_port 55581 dst_port 22666 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:ec:03:12:0f:df dst_mac 02:46:ab:05:7b:f7 src_ip 67.202.197.23 dst_ip 56.220.233.162 ip_proto udp src_port 55581 dst_port 22666 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:bb:a1:af:ad:8f","src_mac":"02:e5:4f:36:46:a3","eth_type":"ipv4","ip_proto":"udp","dst_ip":"44.49.90.4","src_ip":"126.85.126.230","dst_port":55603,"src_port":18236},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:74:e1:47:31:1c","src_mac":"02:31:1f:37:3d:2c","eth_type":"ipv4","ip_proto":"udp","dst_ip":"27.96.17.161","src_ip":"12.139.114.65","dst_port":37606,"src_port":1549},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:46:ab:05:7b:f7","src_mac":"02:ec:03:12:0f:df","eth_type":"ipv4","ip_proto":"udp","dst_ip":"56.220.233.162","src_ip":"67.202.197.23","dst_port":22666,"src_port":55581},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:bb:a1:af:ad:8f_src_mac_02:e5:4f:36:46:a3_eth_type_ipv4_ip_proto_udp_dst_ip_44.49.90.4_src_ip_126.85.126.230_dst_port_55603_src_port_18236 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:74:e1:47:31:1c_src_mac_02:31:1f:37:3d:2c_eth_type_ipv4_ip_proto_udp_dst_ip_27.96.17.161_src_ip_12.139.114.65_dst_port_37606_src_port_1549 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:46:ab:05:7b:f7_src_mac_02:ec:03:12:0f:df_eth_type_ipv4_ip_proto_udp_dst_ip_56.220.233.162_src_ip_67.202.197.23_dst_port_22666_src_port_55581 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f9240>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:bb:a1:af:ad:8f_src_mac_02:e5:4f:36:46:a3_eth_type_ipv4_ip_proto_udp_dst_ip_44.49.90.4_src_ip_126.85.126.230_dst_port_55603_src_port_18236 Tx 2715563 Rx 3177 Frames Delta 2712386 Loss 99.883 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:74:e1:47:31:1c_src_mac_02:31:1f:37:3d:2c_eth_type_ipv4_ip_proto_udp_dst_ip_27.96.17.161_src_ip_12.139.114.65_dst_port_37606_src_port_1549 Tx 2715561 Rx 5080 Frames Delta 2710481 Loss 99.813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:46:ab:05:7b:f7_src_mac_02:ec:03:12:0f:df_eth_type_ipv4_ip_proto_udp_dst_ip_56.220.233.162_src_ip_67.202.197.23_dst_port_22666_src_port_55581 Tx 2715561 Rx 7618 Frames Delta 2707943 Loss 99.719 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:bb:a1:af:ad:8f_src_mac_02:e5:4f:36:46:a3_eth_type_ipv4_ip_proto_udp_dst_ip_44.49.90.4_src_ip_126.85.126.230_dst_port_55603_src_port_18236 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:74:e1:47:31:1c_src_mac_02:31:1f:37:3d:2c_eth_type_ipv4_ip_proto_udp_dst_ip_27.96.17.161_src_ip_12.139.114.65_dst_port_37606_src_port_1549 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:46:ab:05:7b:f7_src_mac_02:ec:03:12:0f:df_eth_type_ipv4_ip_proto_udp_dst_ip_56.220.233.162_src_ip_67.202.197.23_dst_port_22666_src_port_55581 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:21:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:21:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=200, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=200, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=200, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=200, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=200, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=200, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=200, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=200, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=200, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=200, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=200, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=200, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=200, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=200, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=200, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=200, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=200, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=200, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=200, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=200, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=200, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=200, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=200, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=200, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=200, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=200, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=200, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=200, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=200, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=200, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=200, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=200, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=200, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=200, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=200, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=200, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=200, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=200, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=200, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=200, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=200, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=200, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=200, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=200, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=200, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=200, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=200, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=200, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=200, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=200, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=200, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=200, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=200, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=200, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=200, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=200, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=200, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=200, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=200, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=200, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=200, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=200, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=200, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=200, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=200, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=200, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=200, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=200, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=200, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=110] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=200, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=200, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=200, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=200, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=200, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=200, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=200, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=200, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=200, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=200, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=200, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=200, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=200, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=200, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=200, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=200, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=200, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=200, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=200, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=200, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=200, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=200, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=200, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=200, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=200, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=200, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=200, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=200, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=200, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=200, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=200, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=200, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=200, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=200, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=200, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=200, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=200, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=150] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=200, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=200, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=200, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=151] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=152] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=152] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:21:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=153] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=154] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=154] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":309,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=155] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=156] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=200, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=156] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] | 239.94 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12735' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.3, port 52682 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:21:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:84:15:a7:0e:ff","src_mac":"02:75:05:b3:a6:ab","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"55.14.198.53","src_ip":"40.71.251.191","dst_port":19315,"src_port":42507},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:84:15:a7:0e:ff_src_mac_02:75:05:b3:a6:ab_eth_type_ipv4_ip_proto_tcp_dst_ip_55.14.198.53_src_ip_40.71.251.191_dst_port_19315_src_port_42507 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08e440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 4134978 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2096 INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16f1c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 14032914 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 43062 INFO asyncssh:logging.py:92 [conn=201, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=24] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08d990>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 24815397 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 82981 INFO asyncssh:logging.py:92 [conn=201, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=28] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb557f40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 34946472 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 130512 INFO asyncssh:logging.py:92 [conn=201, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=32] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:75:05:b3:a6:ab dst_mac 02:84:15:a7:0e:ff src_ip 40.71.251.191 dst_ip 55.14.198.53 ip_proto tcp src_port 42507 dst_port 19315 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=201, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f8b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 44795313 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 163813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=34] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:25:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:25:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=201, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=201, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=201, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=201, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=201, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=201, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=201, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=201, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=201, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=201, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=201, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=201, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=201, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=201, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=201, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=201, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=201, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=201, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=201, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=201, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=201, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=201, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=201, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=201, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=201, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=201, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=201, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=201, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=201, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=201, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=201, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=201, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=201, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=201, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=201, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=201, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=201, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=201, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=201, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=201, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=201, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=201, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=201, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=201, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=201, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=201, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=201, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=201, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=201, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=201, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=201, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=201, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=201, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=201, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=201, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=201, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=201, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=201, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=201, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=201, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=201, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=201, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=201, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=201, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=201, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=201, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=201, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=201, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=201, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=201, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=201, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=201, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=201, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=126] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=201, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=201, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=201, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=201, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=134] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=201, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=201, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=136] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=201, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=201, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=138] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=201, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=201, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=140] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=201, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=201, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=142] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=201, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=201, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=144] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=201, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=201, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=146] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=201, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=201, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=148] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=201, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=201, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=150] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=201, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=201, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=152] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=201, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=201, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=154] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=201, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=201, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=156] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=201, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=201, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=158] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=201, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=201, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=160] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=201, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=201, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=162] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=201, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=201, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=164] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=201, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=201, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=166] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=201, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=201, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=201, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=167] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=168] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=168] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:25:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=169] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=170] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=170] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":310,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=171] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=172] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=201, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=172] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] | 260.87 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12920' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.3, port 41862 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:25:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:6a:68:fc:5a:00","src_mac":"02:d1:06:24:88:36","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"125.190.131.101","src_ip":"37.184.244.64","dst_port":10540,"src_port":24062},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:6a:68:fc:5a:00_src_mac_02:d1:06:24:88:36_eth_type_ipv4_ip_proto_tcp_dst_ip_125.190.131.101_src_ip_37.184.244.64_dst_port_10540_src_port_24062 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb555510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 4791748 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2272 INFO asyncssh:logging.py:92 [conn=202, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb556cb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 14626690 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 44791 INFO asyncssh:logging.py:92 [conn=202, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafed360>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 24702043 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 87008 INFO asyncssh:logging.py:92 [conn=202, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16c5b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 34571336 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 125675 INFO asyncssh:logging.py:92 [conn=202, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb652740>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 44667608 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 174642 INFO asyncssh:logging.py:92 [conn=202, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=34] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=36] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:d1:06:24:88:36 dst_mac 02:6a:68:fc:5a:00 src_ip 37.184.244.64 dst_ip 125.190.131.101 ip_proto tcp src_port 24062 dst_port 10540 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=202, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb4c6110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 54523628 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 216766 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=38] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:29:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:29:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=202, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=202, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=202, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=202, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=202, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=202, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=202, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=202, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=202, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=202, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=202, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=202, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=202, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=202, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=202, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=202, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=202, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=202, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=202, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=202, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=202, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=202, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=202, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=202, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=202, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=202, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=202, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=202, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=202, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=202, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=202, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=202, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=202, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=202, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=202, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=202, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=202, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=202, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=202, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=202, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=202, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=202, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=202, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=202, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=202, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=202, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=202, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=202, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=202, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=202, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=202, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=202, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=202, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=202, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=202, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=202, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=202, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=202, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=202, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=202, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=202, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=202, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=202, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=202, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=202, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=202, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=202, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=202, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=202, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=202, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=202, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=202, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=202, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=130] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=202, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=202, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=202, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=202, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=202, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=202, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=202, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=202, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=202, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=202, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=202, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=202, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=202, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=202, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=202, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=202, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=202, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=202, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=202, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=202, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=202, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=202, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=202, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=202, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=202, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=202, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=202, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=202, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=202, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=202, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=202, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=202, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=202, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=202, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=202, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=202, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=170] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=202, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=202, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=202, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=171] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=172] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:29:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=173] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=174] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=174] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":311,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=175] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=176] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=202, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=176] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] | 228.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13109' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.3, port 40982 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:29:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb177460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9377190 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3509 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3509 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3509 INFO asyncssh:logging.py:92 [conn=203, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=18] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=20] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08d480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12903676 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 6520 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 6520 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6520 INFO asyncssh:logging.py:92 [conn=203, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=22] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=203, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb5553c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 18272278 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 8978 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 8978 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 8978 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:33:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:33:33 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=203, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=203, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=203, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=203, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=203, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=203, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=203, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=203, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=203, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=203, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=203, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=203, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=203, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=203, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=203, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=203, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=203, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=203, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=203, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=203, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=203, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=203, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=203, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=203, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=203, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=203, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=203, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=203, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=203, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=203, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=203, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=203, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=203, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=203, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=203, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=203, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=203, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=203, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=203, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=203, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=203, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=203, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=203, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=203, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=203, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=203, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=203, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=203, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=203, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=203, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=203, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=203, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=203, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=203, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=203, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=203, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=203, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=203, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=203, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=203, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=203, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=203, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=203, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=203, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=203, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=203, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=203, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=203, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=203, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=203, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=203, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=118] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=203, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=120] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=203, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=203, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=124] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=203, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=203, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=126] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=203, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=203, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=128] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=203, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=203, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=130] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=203, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=203, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=132] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=203, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=203, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=134] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=203, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=203, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=136] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=203, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=203, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=138] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=203, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=203, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=140] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=203, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=203, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=142] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=203, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=203, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=144] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=203, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=203, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=146] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=203, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=203, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=148] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=203, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=203, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=150] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=203, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=203, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=152] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=203, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=203, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=154] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=203, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=203, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=156] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=203, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=203, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=158] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=203, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=203, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=203, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=159] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=160] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=160] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:33:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=161] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=162] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=162] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":312,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=163] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=164] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=203, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=164] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] | 257.11 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13286' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.3, port 33592 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:33:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 875 ingress && tc qdisc add dev swp35 ingress_block 875 ingress && tc qdisc add dev swp36 ingress_block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: tc qdisc add dev swp34 ingress_block 875 ingress && tc qdisc add dev swp35 ingress_block 875 ingress && tc qdisc add dev swp36 ingress_block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: tc filter add block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 875 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: tc filter add block 875 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: tc -j filter show block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=16] Command: tc -j filter show block 875 ingress INFO asyncssh:logging.py:92 [conn=204, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0fa380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 3675 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 10492243 Rx 2552 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 10492054 Rx 2538 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 10491870 Rx 2531 INFO asyncssh:logging.py:92 [conn=204, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=18] Command: tc filter delete block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=20] Command: tc filter add block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16cd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 6164 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 13318220 Rx 4434 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 13318042 Rx 4420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 13317858 Rx 4413 INFO asyncssh:logging.py:92 [conn=204, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=22] Command: tc filter delete block 875 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 875 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=24] Command: tc filter add block 875 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=204, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16eef0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 8797 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 19634730 Rx 6274 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 19634552 Rx 6256 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 19634330 Rx 6247 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:37:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:37:50 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=204, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=204, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":875,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":875,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":875,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=204, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=204, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=204, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=204, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=204, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=204, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=204, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=204, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=204, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=204, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=204, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=204, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=204, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=204, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=204, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=204, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=204, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=204, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=204, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=204, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=204, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=204, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=204, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=204, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=204, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=204, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=204, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=204, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=204, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=204, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=204, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=204, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=204, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=204, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=204, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=204, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=204, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=204, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=204, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=204, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=120] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=204, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=120] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=122] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=204, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=204, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=124] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=204, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=124] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=204, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=204, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=128] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=204, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=128] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=130] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=204, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=132] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=204, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=134] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=204, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=136] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=204, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=138] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=204, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=140] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=204, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=142] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=204, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=144] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=204, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=146] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=204, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=148] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=204, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=150] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=204, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=152] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=204, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=204, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=154] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=204, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=204, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=156] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=204, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=204, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=158] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=204, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=204, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=160] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=204, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=162] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=204, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=204, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=204, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=163] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=164] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=164] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:37:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=165] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=166] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=166] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":313,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=167] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=168] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=204, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=168] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] | 213.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13467' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.3, port 33084 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:37:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb592d10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9822688 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3630 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3629 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3629 INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=205, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=16] Command: tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=205, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=205, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafefb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12648738 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 6411 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 6411 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6411 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:41:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:41:24 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=205, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=205, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=205, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=205, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=205, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=205, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=205, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=205, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=205, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=205, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=205, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=205, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=205, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=205, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=205, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=205, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=205, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=205, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=205, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=205, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=205, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=205, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=205, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=205, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=205, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=205, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=205, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=205, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=205, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=205, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=205, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=205, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=205, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=205, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=205, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=205, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=205, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=205, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=205, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=205, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=205, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=205, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=205, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=205, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=205, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=205, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=205, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=205, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=205, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=205, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=205, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=205, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=205, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=205, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=205, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=205, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=205, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=205, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=205, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=205, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=205, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=205, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=205, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=205, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=205, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=205, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=205, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=205, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=205, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=112] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=205, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=112] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=205, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=205, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=118] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=205, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=205, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=120] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=205, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=205, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=122] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=205, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=205, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=124] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=205, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=205, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=126] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=205, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=205, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=128] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=205, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=205, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=130] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=205, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=205, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=132] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=205, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=205, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=134] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=205, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=205, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=136] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=205, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=205, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=138] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=205, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=205, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=140] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=205, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=205, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=142] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=205, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=205, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=144] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=205, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=205, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=146] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=205, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=205, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=148] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=205, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=205, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=150] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=205, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=152] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=205, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=205, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=205, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=153] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=154] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=154] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:41:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=155] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=156] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=156] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":314,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=157] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=158] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=205, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=158] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] | 235.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13638' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.3, port 59850 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:41:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 1631 ingress && tc qdisc add dev swp35 ingress_block 1631 ingress && tc qdisc add dev swp36 ingress_block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: tc qdisc add dev swp34 ingress_block 1631 ingress && tc qdisc add dev swp35 ingress_block 1631 ingress && tc qdisc add dev swp36 ingress_block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: tc -j filter show block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: tc -j filter show block 1631 ingress INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb593c10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 3494 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 9807683 Rx 2507 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 9807500 Rx 2248 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 9807321 Rx 2500 INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 1631 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: tc filter delete block 1631 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: tc filter add block 1631 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb592fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 5897 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 13326024 Rx 4525 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 13325833 Rx 4184 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 13325628 Rx 4527 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:45:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:45:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=206, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1631,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":1631,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":1631,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=206, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=206, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=206, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=206, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=206, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=206, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=206, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=206, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=206, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=206, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=206, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=206, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=206, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=206, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=206, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=206, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=206, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=206, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=206, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=206, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=206, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=206, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=206, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=206, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=206, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=206, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=206, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=206, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=206, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=206, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=206, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=206, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=206, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=206, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=206, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=206, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=206, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=206, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=206, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=206, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=206, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=206, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=206, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=206, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=206, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=206, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=206, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=206, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=206, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=206, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=206, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=206, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=206, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=206, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=206, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=206, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=206, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=206, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=206, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=206, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=206, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=206, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=206, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=206, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=206, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=206, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=206, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=206, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=206, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=206, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=114] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=206, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=116] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=206, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=206, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=118] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=206, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=206, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=206, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=122] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=206, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=122] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=206, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=124] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=206, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=206, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=126] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=206, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=206, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=128] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=206, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=206, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=130] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=206, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=206, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=132] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=206, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=206, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=134] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=206, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=206, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=136] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=206, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=206, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=138] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=206, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=206, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=140] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=206, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=206, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=142] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=206, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=206, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=144] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=206, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=206, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=146] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=206, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=206, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=148] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=206, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=206, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=150] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=206, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=206, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=152] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=206, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=206, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=154] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=206, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=206, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=156] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=206, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=206, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=206, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=157] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=158] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=158] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:45:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=206, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=159] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=160] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=160] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":315,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=206, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=161] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=162] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=206, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=162] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality | 427.26 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13812' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.3, port 55606 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:45:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafee470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 10500 Rx 10500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 10500 Rx 10500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 10500 Rx 10500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 10500 Rx 10500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16d990>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 10509 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 10509 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 10509 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 10509 Rx 10509 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16fd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 10486 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 10486 Rx 10486 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:52:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:52:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":316,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic | 230.52 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13838' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.3, port 46182 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:52:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08d3f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7984 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7984 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7984 Rx 7984 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08c8b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 6912 Rx 6912 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 6912 Rx 6912 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 6912 Rx 6912 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08d5a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 6900 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 6900 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 6900 Rx 6900 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08f370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 6015 Rx 6015 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 6015 Rx 6015 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 6015 Rx 6015 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:56:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:56:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":317,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses | 438.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13870' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.3, port 39844 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 02:56:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08d570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 41905 Rx 41905 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 41905 Rx 41905 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 41905 Rx 41905 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 41905 Rx 41905 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafeec50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 41972 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 41972 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 41972 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 41972 Rx 41972 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafed390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 41895 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 41895 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 41895 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 41895 Rx 41895 Loss 0.000 INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:03:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:03:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":318,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control | 212.64 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13902' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.3, port 45786 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:03:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08fbe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1028830 Rx 954773 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 954717 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 954662 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 1106145 Rx 254715 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08ed10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 358046 Rx 89150 Loss 75.101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 364057 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 977956 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_4 SIP-DIP N/A Tx 774469 Rx 666574 Loss 13.931 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_5 SIP-DIP N/A Tx 695617 Rx 597441 Loss 14.114 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_6 SIP-DIP N/A Tx 358046 Rx 312970 Loss 12.589 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:07:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:07:11 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":319,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control | 197.95 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13946' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.3, port 49586 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:07:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0fb940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 836249 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 1009110 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 608406 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f8bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 1345921 Rx 99561 Loss 92.603 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 339694 Rx 178718 Loss 47.389 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 393042 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_4 SIP-DIP N/A Tx 891513 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=211, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:10:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:10:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":320,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag | 408.61 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-13991' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.3, port 33820 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:10:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0f8190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 10884 Rx 10884 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 10884 Rx 10884 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafecd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 10876 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 10876 Rx 10876 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafed510>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 10856 Rx 10856 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 10856 Rx 10856 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:17:17 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=212, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=212, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":321,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":322,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":323,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":201.68,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=212, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=212, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:17:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=212, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:17:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":323,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule | 171.36 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14040' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.3, port 39352 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:17:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08c040>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridgeStream SIP-DIP N/A Tx 7992 Rx 7992 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafee470>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 9992 Rx 9992 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08ded0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridgeStream SIP-DIP N/A Tx 11980 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:20:06 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=213, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=213, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=40] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=213, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=42] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=213, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=44] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=213, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=46] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=213, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=48] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=213, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=50] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=213, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=52] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=213, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=54] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=213, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=56] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=213, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=58] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=213, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=60] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=213, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=62] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=213, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=64] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=213, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=66] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=213, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=68] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=213, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=70] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=213, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=72] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=213, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=74] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=213, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=76] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=213, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=78] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=213, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=80] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=213, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=82] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=213, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=84] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=213, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=86] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=213, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=88] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=213, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=90] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=213, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=92] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=213, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=94] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=213, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=96] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=213, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=98] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=213, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=100] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=213, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=102] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=213, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=104] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=213, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=213, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=106] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=213, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=106] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=108] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=213, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=110] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=213, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=112] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=213, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=114] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=213, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=116] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=213, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=118] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=213, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=120] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=213, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=122] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=213, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=124] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=213, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=126] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=213, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=128] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=213, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=130] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=213, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=132] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=213, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=134] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=213, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=136] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=213, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=138] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=213, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=140] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=213, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=142] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=213, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=144] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=213, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=213, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=146] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=213, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=213, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=147] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=148] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=148] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:20:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=149] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=150] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=150] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:20:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=151] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=152] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=152] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":324,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=153] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=154] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=154] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control | 211.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14206' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.3, port 48628 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:20:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafefa00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1452328 Rx 805546 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 805495 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 805444 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 1005549 Rx 184706 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafed090>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 1526958 Rx 194020 Loss 87.294 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 870259 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 423650 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_4 SIP-DIP N/A Tx 620684 Rx 495129 Loss 20.228 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_5 SIP-DIP N/A Tx 667277 Rx 544587 Loss 18.387 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_6 SIP-DIP N/A Tx 665492 Rx 523923 Loss 21.273 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=214, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:23:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:23:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":325,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership | 423.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14250' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.3, port 55078 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:23:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp34","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp35","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp36","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb1765f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 5496 Rx 5495 Loss 0.018 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 5496 Rx 5496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 5496 Rx 5496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 5496 Rx 5496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08fc40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 5506 Rx 5506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 5506 Rx 5506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 5506 Rx 5506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 5506 Rx 5506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08ca00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 5469 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 5469 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 5469 Rx 5469 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 5469 Rx 5469 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:30:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:30:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":326,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge | 186.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14284' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete It took 0:00:00.040310 to verify ports presence. It took 0:00:00.059632 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.3, port 45182 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:30:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG infra2:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG infra2:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether 46:15:5d:75:69:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 5758 bytes 287900 (281.1 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5758 bytes 287900 (281.1 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.23 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::1abe:92ff:fe13:6482 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:82 txqueuelen 2048 (Ethernet) RX packets 118252 bytes 10947758 (10.4 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 102841 bytes 14021964 (13.3 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:85 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:86 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:88 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:89 txqueuelen 1000 (Ethernet) RX packets 237315365 bytes 15188194739 (14.1 GiB) RX errors 0 dropped 3 overruns 0 frame 0 TX packets 212554212 bytes 14087698181 (13.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8a txqueuelen 1000 (Ethernet) RX packets 212554213 bytes 14087698309 (13.1 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 237315378 bytes 15188196403 (14.1 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8b txqueuelen 1000 (Ethernet) RX packets 295570591 bytes 18916528800 (17.6 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 301523234 bytes 19781714762 (18.4 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8c txqueuelen 1000 (Ethernet) RX packets 301523235 bytes 19781714890 (18.4 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 295570604 bytes 18916530464 (17.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:648d prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:8d txqueuelen 1000 (Ethernet) RX packets 167045701 bytes 11175150700 (10.4 GiB) RX errors 0 dropped 31 overruns 0 frame 0 TX packets 295793842 bytes 18930812377 (17.6 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8e txqueuelen 1000 (Ethernet) RX packets 295793842 bytes 18930812377 (17.6 GiB) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 167045707 bytes 11175151468 (10.4 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1 bytes 128 (128.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:90 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 1 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:91 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:92 txqueuelen 1000 (Ethernet) RX packets 1 bytes 94 (94.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:93 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:94 txqueuelen 1000 (Ethernet) RX packets 2 bytes 188 (188.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:96 txqueuelen 1000 (Ethernet) RX packets 1 bytes 94 (94.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:97 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:98 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:99 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a5 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a5 txqueuelen 1000 (Ethernet) RX packets 635712384 bytes 240299230783 (223.7 GiB) RX errors 0 dropped 2168474 overruns 0 frame 16750 TX packets 318318887 bytes 27433385037 (25.5 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a6 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a6 txqueuelen 1000 (Ethernet) RX packets 176163845 bytes 61227512751 (57.0 GiB) RX errors 0 dropped 16800 overruns 0 frame 16607 TX packets 343807799 bytes 36885048375 (34.3 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 1 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a7 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a7 txqueuelen 1000 (Ethernet) RX packets 125947597 bytes 45275548475 (42.1 GiB) RX errors 0 dropped 5930 overruns 0 frame 0 TX packets 337289460 bytes 33721229131 (31.4 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a8 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a8 txqueuelen 1000 (Ethernet) RX packets 57811074 bytes 19942515124 (18.5 GiB) RX errors 0 dropped 5931 overruns 0 frame 0 TX packets 332609069 bytes 31085037806 (28.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a9 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:aa txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ab txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ac txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ad txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ae txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:af txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b5 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b7 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b8 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":327,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16d870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7977 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7977 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7977 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:33:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:33:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":327,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_vlan_interfaces.py::test_port_isolation_vlan_interfaces | 207.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_vlan_interfaces">Starting testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-14314' coro=<test_port_isolation_vlan_interfaces() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.3, port 59308 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:33:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: bridge vlan add dev swp33 vid 1 && bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 1 && bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0fbf70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_1_swp1->swp4 SIP-DIP N/A Tx 7973 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_1_swp1->swp3 SIP-DIP N/A Tx 7973 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1_swp1->swp2 SIP-DIP N/A Tx 7973 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2_swp3->swp4 SIP-DIP N/A Tx 7973 Rx 7973 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2_swp3->swp2 SIP-DIP N/A Tx 7973 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2_swp3->swp1 SIP-DIP N/A Tx 7973 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_vlan_interfaces from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_vlan_interfaces.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:37:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:37:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":328,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] | 307.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14342' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=218] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=218] Local address: 172.17.0.3, port 46054 INFO asyncssh:logging.py:92 [conn=218] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=218] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=218] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:37:18 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:37:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=218, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=218, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=218, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3051 && bridge vlan add dev swp34 vid 3051 && bridge vlan add dev swp35 vid 3051 INFO asyncssh:logging.py:92 [conn=218, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=10] Command: bridge vlan add dev swp33 vid 3051 && bridge vlan add dev swp34 vid 3051 && bridge vlan add dev swp35 vid 3051 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=12] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=14] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=218, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3051, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3051, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3051, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14079258,"packets":103313,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2259854,"packets":18914,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2768946,"packets":23989,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609416,"packets":22260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6441042,"packets":38150,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2354835,"packets":19429,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146501237,"packets":361603,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2675,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6274,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2130080,"packets":17573,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14084006,"packets":103339,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2263850,"packets":18934,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2769572,"packets":23992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609416,"packets":22260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6441168,"packets":38153,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2355096,"packets":19430,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146501498,"packets":361604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2936,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1873330688,"packets":3658849,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6816,"packets":40,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248685416,"packets":2438842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2130324,"packets":17574,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb16c940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219419 Rx 1219419 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219419 Rx 1219419 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2438837 Rx 1834051 Loss 24.798 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2438837 Rx 1824798 Loss 25.178 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14088470,"packets":103365,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2267462,"packets":18954,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2770298,"packets":23995,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609416,"packets":22260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6441294,"packets":38156,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2355879,"packets":19433,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146502281,"packets":361607,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3719,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1873330688,"packets":3658849,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8954,"packets":54,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248685416,"packets":2438842,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2131056,"packets":17577,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=218, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14092554,"packets":103391,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2271146,"packets":18976,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2770540,"packets":23996,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609416,"packets":22260,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6441452,"packets":38159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2356140,"packets":19434,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146502542,"packets":361608,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3980,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2498021888,"packets":4878949,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248774144,"packets":2439012,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9496,"packets":56,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2497459560,"packets":4877854,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2131300,"packets":17578,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafefa60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219506 Rx 1219506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219506 Rx 1219506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2439011 Rx 620470 Loss 74.561 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2439011 Rx 599630 Loss 75.415 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219506 Rx 1219506 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219506 Rx 1219506 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=218, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=25] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=218, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=26] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:42:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=218, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=218, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":329,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=218, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=218, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=34] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:42:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=218, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=218, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=218, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=218, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=218, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=218, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=218, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=58] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=218, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=60] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=218, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=62] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=218, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=64] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=218, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=66] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=218, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=68] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=218, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=70] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=218, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=72] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=218, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=74] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=218, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=76] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=218, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=78] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=218, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=80] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=218, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=82] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=218, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=84] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=218, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=86] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=218, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=88] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=218, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=90] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=218, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=92] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=218, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=94] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=218, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=96] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=218, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=98] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=218, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=100] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=218, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=102] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=218, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=104] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=218, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=106] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=218, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=108] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=218, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=110] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=218, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=112] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=218, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=114] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=218, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=116] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=218, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=118] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=218, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=120] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=218, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=218, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=124] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=218, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=126] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=218, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=126] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=218, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=128] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=130] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=136] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=138] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=140] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=218, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=218, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=142] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=218, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=144] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=218, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=146] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=218, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=148] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=218, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=150] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=218, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=152] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=218, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=154] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=218, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=156] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=218, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=158] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=218, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=160] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=218, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=162] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=218, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=164] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=218, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=166] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=218, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=168] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=218, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=170] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=218, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=172] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=218, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=172] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=174] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=218, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=174] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=218, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=218, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=218, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=175] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=218, chan=176] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=218, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=218, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=218, chan=176] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] | 302.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-14531' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=218, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=219] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=219] Local address: 172.17.0.3, port 59746 INFO asyncssh:logging.py:92 [conn=219] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=219] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=219] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:42:25 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=219, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:42:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=219, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=219, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 51:0 41:1 28:2 32:3 35:4 16:5 39:6 7:7&& dcb app add dev swp34 dscp-prio 51:0 41:1 28:2 32:3 35:4 16:5 39:6 7:7 INFO asyncssh:logging.py:92 [conn=219, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=8] Command: dcb app add dev swp33 dscp-prio 51:0 41:1 28:2 32:3 35:4 16:5 39:6 7:7&& dcb app add dev swp34 dscp-prio 51:0 41:1 28:2 32:3 35:4 16:5 39:6 7:7 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[7,7],[16,5],[28,2],[32,3],[35,4],[39,6],[41,1],[51,0]]} INFO asyncssh:logging.py:92 [conn=219, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=219, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[7,7],[16,5],[28,2],[32,3],[35,4],[39,6],[41,1],[51,0]]} INFO asyncssh:logging.py:92 [conn=219, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=14] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=219, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=16] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=219, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14226609,"packets":104643,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306259,"packets":19293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2828512,"packets":24544,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2615026,"packets":22309,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6476812,"packets":38497,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2359482,"packets":19460,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146505530,"packets":361632,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2596,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5836,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2132520,"packets":17583,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14230783,"packets":104668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306259,"packets":19293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2832386,"packets":24565,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2615068,"packets":22310,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6477070,"packets":38500,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2359726,"packets":19461,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146506018,"packets":361634,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2840,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1246843904,"packets":2435242,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1870569472,"packets":3653456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6344,"packets":52,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2133008,"packets":17585,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0c9270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1217621 Rx 1217621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1217621 Rx 1217621 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2435242 Rx 1789046 Loss 26.535 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2435242 Rx 1864410 Loss 23.440 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14235165,"packets":104693,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306259,"packets":19293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2836684,"packets":24588,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2615068,"packets":22310,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6477154,"packets":38502,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2360214,"packets":19463,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146506506,"packets":361636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3572,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1246843904,"packets":2435242,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1870569472,"packets":3653456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8380,"packets":66,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2133496,"packets":17587,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=219, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14239047,"packets":104716,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2306259,"packets":19293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2840308,"packets":24608,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2615068,"packets":22310,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6477412,"packets":38505,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2360528,"packets":19465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":146506820,"packets":361638,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3886,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2496082944,"packets":4875162,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2495493632,"packets":4874011,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9048,"packets":70,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":800,"packets":8,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249239040,"packets":2439920,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2133740,"packets":17588,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0c9cc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219960 Rx 1219960 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219960 Rx 1219960 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2439920 Rx 623175 Loss 74.459 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2439920 Rx 597380 Loss 75.516 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1219960 Rx 1219960 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1219960 Rx 1219960 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=219, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=27] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=219, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=28] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:47:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=219, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=219, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":330,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=219, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=219, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:47:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=219, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=219, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=219, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=219, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=219, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=219, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=219, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=60] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=219, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=62] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=219, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=64] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=219, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=66] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=219, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=68] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=219, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=70] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=219, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=72] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=219, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=74] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=219, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=76] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=219, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=78] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=219, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=80] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=219, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=82] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=219, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=84] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=219, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=86] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=219, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=88] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=219, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=90] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=219, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=92] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=219, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=94] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=219, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=96] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=219, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=98] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=219, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=100] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=219, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=102] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=219, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=104] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=219, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=106] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=219, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=108] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=219, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=110] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=219, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=112] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=219, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=114] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=219, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=116] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=219, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=118] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=219, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=120] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=219, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=122] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=219, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=219, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=219, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=219, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=128] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=219, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=130] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=132] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=134] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=136] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=136] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=138] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=138] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=140] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=140] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=142] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=142] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=144] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=219, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=219, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=144] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=219, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=146] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=219, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=148] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=219, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=150] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=219, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=152] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=219, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=154] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=219, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=156] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=219, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=158] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=219, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=160] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=219, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=162] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=219, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=164] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=219, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=166] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=219, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=168] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=219, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=170] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=219, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=219, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=172] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=219, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=172] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=219, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=174] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=219, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=174] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=175] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=219, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=176] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=219, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=176] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=219, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=219, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=219, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=177] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=219, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=219, chan=178] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=219, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=219, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=219, chan=178] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking | 305.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15029' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=220, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=221] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=221] Local address: 172.17.0.3, port 38800 INFO asyncssh:logging.py:92 [conn=221] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=221] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=221] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:58:30 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 03:58:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=221, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=221, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 52:0 47:1 27:2 30:3 57:4 12:5 8:6 38:7&& dcb app add dev swp34 dscp-prio 46:0 48:1 49:2 62:3 42:4 2:5 27:6 13:7 INFO asyncssh:logging.py:92 [conn=221, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=8] Command: dcb app add dev swp33 dscp-prio 52:0 47:1 27:2 30:3 57:4 12:5 8:6 38:7&& dcb app add dev swp34 dscp-prio 46:0 48:1 49:2 62:3 42:4 2:5 27:6 13:7 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[8,6],[12,5],[27,2],[30,3],[38,7],[47,1],[52,0],[57,4]]} INFO asyncssh:logging.py:92 [conn=221, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=221, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[2,5],[13,7],[27,6],[42,4],[46,0],[48,1],[49,2],[62,3]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [52,47,27,30,57,12,8,38] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.1/24 to 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [46,48,49,62,42,2,27,13] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.1.1.2/24 to 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade5b10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [52 47 27 30 57 12 8 38] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [46 48 49 62 42 2 27 13] SIP-DIP 1.1.1.2-1.1.1.1 Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 27 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 2 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 49 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 62 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 13 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 48 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 46 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [52 47 27 30 57 12 8 38] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 42 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 12 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 38 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 8 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 57 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 52 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 47 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 27 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [46 48 49 62 42 2 27 13] Tx 74 Rx 74 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 30 | Rx 74 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 52 | swp34 | 74 | 46 | 0 | 46 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 47 | swp34 | 74 | 48 | 1 | 48 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 27 | swp34 | 74 | 49 | 2 | 49 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 74 | 30 | swp34 | 74 | 62 | 3 | 62 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 57 | swp34 | 73 | 42 | 4 | 42 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 12 | swp34 | 73 | 2 | 5 | 2 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 8 | swp34 | 73 | 27 | 6 | 27 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 38 | swp34 | 73 | 13 | 7 | 13 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 46 | swp33 | 74 | 52 | 0 | 52 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 48 | swp33 | 74 | 47 | 1 | 47 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 49 | swp33 | 74 | 27 | 2 | 27 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 74 | 62 | swp33 | 74 | 30 | 3 | 30 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 42 | swp33 | 73 | 57 | 4 | 57 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 2 | swp33 | 73 | 12 | 5 | 12 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 27 | swp33 | 73 | 8 | 6 | 8 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 13 | swp33 | 73 | 38 | 7 | 38 | True | False -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=221, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=13] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=221, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=14] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:03:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=221, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=221, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":332,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=221, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=221, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=221, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:03:34 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=221, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=221, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=221, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=221, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=221, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=221, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=221, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=46] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=221, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=48] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=221, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=50] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=221, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=52] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=221, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=54] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=221, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=56] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=221, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=58] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=221, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=60] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=221, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=62] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=221, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=64] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=221, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=66] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=221, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=68] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=221, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=70] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=221, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=72] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=221, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=74] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=221, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=76] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=221, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=78] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=221, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=80] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=221, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=82] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=221, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=84] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=221, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=86] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=221, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=88] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=221, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=90] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=221, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=92] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=221, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=94] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=221, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=96] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=221, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=98] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=221, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=100] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=221, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=102] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=221, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=104] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=221, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=106] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=221, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=108] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=221, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=110] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=221, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=112] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=221, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=114] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=221, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=116] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=221, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=118] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=221, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=120] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=221, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=122] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=221, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=124] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=221, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=126] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=221, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=128] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=221, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=130] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=221, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=132] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=221, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=134] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=221, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=136] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=221, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=138] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=221, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=140] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=221, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=221, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=142] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=221, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=221, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=144] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=221, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=221, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=146] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=221, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=221, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=221, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=221, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=221, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=221, chan=148] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=221, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=221, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=221, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L2] | 175.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15190' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=221, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=222] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=222] Local address: 172.17.0.3, port 44760 INFO asyncssh:logging.py:92 [conn=222] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=222] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=222] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:03:36 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:03:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=222, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=222, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=222, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=222, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3926 && bridge vlan add dev swp34 vid 3926 INFO asyncssh:logging.py:92 [conn=222, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=10] Command: bridge vlan add dev swp33 vid 3926 && bridge vlan add dev swp34 vid 3926 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3926, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3926, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14750208,"packets":109306,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2483609,"packets":20988,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2952436,"packets":25517,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2757870,"packets":23591,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6556293,"packets":39210,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6571,"packets":44,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1892,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3816,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3172,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3172,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14754426,"packets":109331,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2487469,"packets":21010,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2952678,"packets":25518,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2757912,"packets":23592,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6556367,"packets":39211,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6832,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2153,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299584,"packets":76757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39300096,"packets":76758,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299584,"packets":76757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299584,"packets":76757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299584,"packets":76757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39304454,"packets":76779,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299944,"packets":76761,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299584,"packets":76757,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0facb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76758 Rx 76758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76758 Rx 76758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76757 Rx 76757 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=222, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=222, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=112] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=114] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=116] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=118] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=222, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=222, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=222, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=166] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 90Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 120Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 84Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 54Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 106Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 90Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 120Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 84Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 54Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 106Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=222, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=168] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=170] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13250000,"burst":1048565,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=222, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=172] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14868342,"packets":110409,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2497921,"packets":21084,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2996416,"packets":25947,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2780958,"packets":23817,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6593047,"packets":39561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6832,"packets":45,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13250000,"burst":1048565,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=222, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=174] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":14872116,"packets":110430,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2500393,"packets":21100,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2996658,"packets":25948,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2780958,"packets":23817,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6594107,"packets":39565,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7354,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":522,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0},"bytes":44661760,"packets":87230,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0},"bytes":44662844,"packets":87234,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13250000,"burst":1048565,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":44661248,"packets":87229,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3af50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87230 Rx 87230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87230 Rx 87230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87229 Rx 87229 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=222, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=175] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=222, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=222, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=176] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=177] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=178] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:06:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=222, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=179] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=222, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=180] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":333,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=222, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=181] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=222, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=182] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=183] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=222, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=184] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:06:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=222, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=185] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=186] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=222, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=186] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15000000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":6750000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":10500000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":11250000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13250000,"burst":1048565,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=222, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=187] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=188] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=222, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=188] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=189] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=190] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=222, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=190] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=191] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=192] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=193] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=194] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=195] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=196] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=197] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=198] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=199] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=200] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=201] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=202] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=203] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=204] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=205] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=222, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=206] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=222, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=207] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=208] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=222, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=208] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=209] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=210] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=222, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=210] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=211] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=212] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=222, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=212] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=213] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=214] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=222, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=214] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=215] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=216] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=222, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=216] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=217] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=218] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=222, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=218] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=219] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=220] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=222, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=220] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=221] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=222] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=222, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=222] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=223] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=224] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=222, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=224] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=225] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=226] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=222, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=226] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=227] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=228] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=222, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=228] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=229] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=230] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=222, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=230] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=231] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=232] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=222, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=232] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=233] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=234] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=222, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=234] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=235] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=236] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=222, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=236] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=237] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=238] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=222, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=238] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=239] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=240] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=222, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=240] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=241] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=242] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=222, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=242] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=243] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=244] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=222, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=244] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=245] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=246] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=222, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=246] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=247] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=248] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=222, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=248] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=249] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=250] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=222, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=250] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=251] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=252] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=222, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=252] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=253] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=254] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=222, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=254] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=255] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=256] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=222, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=256] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=257] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=258] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=222, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=258] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=259] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=260] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=222, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=260] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=261] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=262] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=222, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=262] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=263] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=264] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=222, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=264] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=265] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=266] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=222, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=266] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=267] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=268] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=222, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=268] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=269] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=270] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=222, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=270] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=271] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=272] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=222, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=272] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=273] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=274] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=222, chan=274] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=274] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=222, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=275] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=276] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=276] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=276] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=277] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=278] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=279] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=280] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=281] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=282] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=283] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=284] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=285] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=286] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=287] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=288] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=289] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=222, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=222, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=290] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=222, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=291] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=292] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=222, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=292] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=293] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=294] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=222, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=294] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=295] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=296] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=222, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=296] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=297] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=298] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=222, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=298] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=299] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=300] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=222, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=300] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=301] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=302] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=222, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=302] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=303] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=304] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=222, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=304] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=305] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=306] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=222, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=306] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=307] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=308] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=222, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=308] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=309] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=310] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=222, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=310] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=311] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=312] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=222, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=312] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=313] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=314] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=222, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=314] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=315] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=316] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=222, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=316] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=317] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=318] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=222, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=318] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=319] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=320] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=222, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=320] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=321] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=322] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=222, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=322] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=323] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=324] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=222, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=324] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=222, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=222, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=222, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=325] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=222, chan=326] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=222, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=222, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=222, chan=326] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L3] | 174.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15529' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=222, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=223] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=223] Local address: 172.17.0.3, port 47148 INFO asyncssh:logging.py:92 [conn=223] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=223] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=223] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:06:32 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:06:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=223, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=223, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 41:0 32:1 38:2 47:3 58:4 0:5 26:6 63:7 INFO asyncssh:logging.py:92 [conn=223, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=8] Command: dcb app add dev swp33 dscp-prio 41:0 32:1 38:2 47:3 58:4 0:5 26:6 63:7 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=223, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=223, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[0,5],[26,6],[32,1],[38,2],[41,0],[47,3],[58,4],[63,7]]} INFO asyncssh:logging.py:92 [conn=223, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":15004033,"packets":111665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2566909,"packets":21714,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3001487,"packets":25991,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2785088,"packets":23840,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6650549,"packets":40120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10004,"packets":70,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2432,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4500,"packets":34,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1020,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4636,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4636,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":15008291,"packets":111690,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2566909,"packets":21714,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3001971,"packets":25993,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2788778,"packets":23861,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6650633,"packets":40122,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10248,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2676,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39298560,"packets":76755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299072,"packets":76756,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39298560,"packets":76755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39298560,"packets":76755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39298560,"packets":76755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39304080,"packets":76792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39299580,"packets":76765,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39298560,"packets":76755,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefce20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76756 Rx 76756 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76756 Rx 76756 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76755 Rx 76755 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=44] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=46] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=48] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=50] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=52] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=54] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=56] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=58] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=60] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=62] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=64] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=66] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=68] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=70] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=72] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=74] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=76] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=78] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=80] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=82] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=84] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=86] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=88] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=90] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=92] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=94] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=96] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=98] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=100] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=102] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=104] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=106] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=108] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=110] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=112] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=112] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=112] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=114] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=114] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=114] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=116] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=118] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=132] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=134] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=136] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=138] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=140] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=142] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=144] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=146] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=148] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=150] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=152] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=154] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=156] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=158] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=160] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=162] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=164] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=223, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=166] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=223, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=166] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 63Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 123Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 110Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 83Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 94Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=168] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 63Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 123Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 110Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 89Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 94Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 105Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 83Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 94Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=223, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=168] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=170] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=170] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=223, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=172] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=172] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":15122505,"packets":112771,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609233,"packets":22128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3001971,"packets":25993,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2833812,"packets":24264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6677489,"packets":40386,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10318,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=223, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=174] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=174] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":15126453,"packets":112793,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2609233,"packets":22128,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3003373,"packets":26006,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2836316,"packets":24272,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6677531,"packets":40387,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":30588,"packets":303,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25422,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":29797,"packets":295,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":25164,"packets":215,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":14605,"packets":102,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":21541,"packets":187,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":124,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10562,"packets":73,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":244,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0},"bytes":44625916,"packets":87161,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0},"bytes":44624896,"packets":87158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0},"bytes":44625408,"packets":87159,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafee260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87159 Rx 87159 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87158 Rx 87158 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=223, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=175] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=223, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=176] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=223, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=176] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=177] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=178] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=178] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:09:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=223, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=179] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=180] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=223, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=180] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":334,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=223, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=181] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=182] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=223, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=182] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=183] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=223, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=184] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=184] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:09:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=223, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=185] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=186] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=223, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=186] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":11125000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":15375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13750000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7875000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":11750000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13125000,"burst":1048569,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=223, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=187] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=188] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=223, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=188] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=189] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=190] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=223, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=190] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=191] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=192] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=192] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=193] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=194] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=194] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=194] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=195] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=196] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=196] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=196] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=197] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=198] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=198] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=198] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=199] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=200] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=200] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=200] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=201] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=201] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=201] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=201] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=202] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=202] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=202] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=202] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=202] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=203] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=203] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=203] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=203] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=203] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=204] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=204] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=204] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=204] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=204] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=205] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=205] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=205] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=205] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=205] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=206] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=206] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=223, chan=206] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=206] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=206] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=223, chan=207] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=207] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=207] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=207] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=207] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=208] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=208] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=223, chan=208] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=208] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=208] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=209] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=209] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=209] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=209] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=209] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=210] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=210] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=223, chan=210] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=210] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=210] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=211] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=211] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=211] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=211] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=211] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=212] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=212] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=223, chan=212] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=212] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=212] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=213] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=213] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=213] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=213] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=213] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=214] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=214] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=223, chan=214] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=214] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=214] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=215] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=215] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=215] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=215] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=215] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=216] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=216] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=223, chan=216] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=216] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=216] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=217] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=217] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=217] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=217] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=217] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=218] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=218] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=223, chan=218] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=218] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=218] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=219] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=219] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=219] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=219] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=219] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=220] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=220] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=223, chan=220] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=220] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=220] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=221] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=221] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=221] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=221] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=221] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=222] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=222] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=223, chan=222] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=222] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=222] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=223] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=223] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=223] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=223] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=223] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=224] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=224] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=223, chan=224] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=224] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=224] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=225] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=225] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=225] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=225] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=225] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=226] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=226] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=223, chan=226] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=226] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=226] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=227] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=227] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=227] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=227] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=227] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=228] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=228] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=223, chan=228] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=228] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=228] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=229] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=229] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=229] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=229] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=229] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=230] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=230] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=223, chan=230] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=230] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=230] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=231] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=231] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=231] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=231] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=231] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=232] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=232] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=223, chan=232] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=232] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=232] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=233] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=233] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=233] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=233] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=233] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=234] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=234] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=223, chan=234] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=234] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=234] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=235] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=235] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=235] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=235] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=235] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=236] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=236] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=223, chan=236] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=236] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=236] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=237] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=237] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=237] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=237] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=237] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=238] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=238] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=223, chan=238] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=238] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=238] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=239] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=239] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=239] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=239] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=239] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=240] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=240] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=223, chan=240] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=240] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=240] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=241] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=241] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=241] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=241] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=241] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=242] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=242] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=223, chan=242] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=242] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=242] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=243] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=243] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=243] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=243] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=243] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=244] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=244] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=223, chan=244] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=244] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=244] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=245] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=245] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=245] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=245] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=245] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=246] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=246] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=223, chan=246] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=246] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=246] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=247] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=247] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=247] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=247] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=247] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=248] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=248] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=223, chan=248] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=248] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=248] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=249] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=249] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=249] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=249] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=249] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=250] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=250] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=223, chan=250] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=250] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=250] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=251] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=251] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=251] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=251] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=251] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=252] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=252] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=223, chan=252] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=252] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=252] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=253] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=253] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=253] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=253] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=253] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=254] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=254] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=223, chan=254] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=254] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=254] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=255] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=255] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=255] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=255] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=255] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=256] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=256] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=223, chan=256] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=256] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=256] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=257] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=257] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=257] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=257] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=257] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=258] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=258] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=223, chan=258] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=258] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=258] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=259] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=259] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=259] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=259] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=259] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=260] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=260] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=223, chan=260] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=260] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=260] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=261] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=261] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=261] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=261] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=261] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=262] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=262] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=223, chan=262] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=262] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=262] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=263] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=263] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=263] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=263] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=263] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=264] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=264] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=223, chan=264] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=264] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=264] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=265] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=265] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=265] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=265] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=265] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=266] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=266] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=223, chan=266] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=266] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=266] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=267] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=267] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=267] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=267] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=267] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=268] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=268] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=223, chan=268] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=268] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=268] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=269] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=269] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=269] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=269] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=269] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=270] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=270] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=223, chan=270] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=270] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=270] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=271] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=271] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=271] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=271] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=271] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=272] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=272] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=223, chan=272] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=272] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=272] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=273] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=273] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=273] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=273] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=273] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=274] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=274] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=223, chan=274] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=274] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=274] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=223, chan=275] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=275] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=275] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=275] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=275] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=276] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=276] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=276] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=276] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=276] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=277] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=277] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=277] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=277] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=277] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=278] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=278] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=278] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=278] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=278] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=279] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=279] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=279] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=279] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=279] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=280] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=280] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=280] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=280] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=280] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=281] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=281] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=281] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=281] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=281] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=282] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=282] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=282] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=282] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=282] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=283] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=283] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=283] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=283] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=283] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=284] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=284] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=284] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=284] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=284] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=285] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=285] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=285] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=285] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=285] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=286] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=286] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=286] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=286] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=286] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=287] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=287] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=287] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=287] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=287] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=288] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=288] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=288] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=288] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=288] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=289] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=289] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=289] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=289] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=289] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=290] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=290] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=223, chan=290] Received exit status 1 INFO asyncssh:logging.py:92 [conn=223, chan=290] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=290] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=223, chan=291] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=291] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=291] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=291] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=291] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=292] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=292] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=223, chan=292] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=292] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=292] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=293] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=293] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=293] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=293] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=293] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=294] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=294] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=223, chan=294] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=294] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=294] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=295] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=295] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=295] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=295] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=295] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=296] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=296] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=223, chan=296] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=296] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=296] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=297] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=297] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=297] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=297] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=297] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=298] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=298] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=223, chan=298] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=298] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=298] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=299] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=299] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=299] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=299] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=299] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=300] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=300] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=223, chan=300] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=300] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=300] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=301] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=301] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=301] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=301] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=301] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=302] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=302] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=223, chan=302] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=302] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=302] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=303] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=303] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=303] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=303] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=303] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=304] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=304] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=223, chan=304] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=304] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=304] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=305] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=305] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=305] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=305] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=305] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=306] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=306] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=223, chan=306] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=306] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=306] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=307] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=307] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=307] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=307] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=307] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=308] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=308] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=223, chan=308] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=308] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=308] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=309] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=309] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=309] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=309] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=309] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=310] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=310] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=223, chan=310] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=310] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=310] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=311] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=311] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=311] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=311] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=311] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=312] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=312] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=223, chan=312] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=312] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=312] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=313] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=313] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=313] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=313] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=313] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=314] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=314] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=223, chan=314] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=314] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=314] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=315] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=315] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=315] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=315] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=315] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=316] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=316] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=223, chan=316] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=316] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=316] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=317] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=317] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=317] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=317] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=317] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=318] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=318] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=223, chan=318] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=318] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=318] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=319] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=319] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=319] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=319] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=319] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=320] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=320] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=223, chan=320] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=320] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=320] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=321] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=321] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=321] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=321] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=321] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=322] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=322] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=223, chan=322] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=322] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=322] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=323] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=323] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=323] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=323] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=323] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=324] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=324] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=223, chan=324] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=324] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=324] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=223, chan=325] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=325] Command: date INFO asyncssh:logging.py:92 [conn=223, chan=325] Received exit status 0 INFO asyncssh:logging.py:92 [conn=223, chan=325] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=325] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=326] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=223, chan=326] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=223, chan=326] Received exit status 2 INFO asyncssh:logging.py:92 [conn=223, chan=326] Received channel close INFO asyncssh:logging.py:92 [conn=223, chan=326] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] | 140.70 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-15868' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=223, chan=327] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=224] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=224] Local address: 172.17.0.3, port 44886 INFO asyncssh:logging.py:92 [conn=224] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=224] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=224] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:09:26 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:09:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=224, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=224, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=224, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 898 && bridge vlan add dev swp34 vid 898 INFO asyncssh:logging.py:92 [conn=224, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=10] Command: bridge vlan add dev swp33 vid 898 && bridge vlan add dev swp34 vid 898 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=224, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=224, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 898, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 898, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0adb70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229465 Rx 229465 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229464 Rx 229464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.04 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.04 | True INFO asyncssh:logging.py:92 [conn=224, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=224, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2408,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117491032,"packets":229489,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117485928,"packets":229468,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117486080,"packets":229465,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117491032 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117486080 | 34.42 | 34.42 | 0.0 | 26.04 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117485928 | 34.42 | 34.42 | 0.0 | 26.04 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=224, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=224, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:11:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=224, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=224, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":335,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=224, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=224, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:11:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=224, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=224, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=224, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=224, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=224, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=224, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=224, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=224, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=224, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=224, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=224, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=224, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=224, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=224, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=224, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=224, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=224, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=224, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=224, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=224, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=224, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=224, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=224, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=224, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=224, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=224, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=224, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=224, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=224, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=224, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=224, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=224, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=224, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=224, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=224, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=224, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=224, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=224, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=224, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=224, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=224, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=224, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=224, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=224, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=224, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=224, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=224, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=224, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=224, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=224, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=224, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=224, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=224, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=224, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=224, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=224, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=224, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=224, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=224, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=224, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=224, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=224, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=224, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=224, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=224, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=224, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=224, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=224, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=224, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] | 134.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16051' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=224, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=225] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=225] Local address: 172.17.0.3, port 60168 INFO asyncssh:logging.py:92 [conn=225] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=225] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=225] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:11:46 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:11:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=225, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=225, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 14:0 5:1 37:2 13:3 41:4 49:5 63:6 51:7 INFO asyncssh:logging.py:92 [conn=225, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=8] Command: dcb app add dev swp33 dscp-prio 14:0 5:1 37:2 13:3 41:4 49:5 63:6 51:7 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=225, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=225, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[5,1],[13,3],[14,0],[37,2],[41,4],[49,5],[51,7],[63,6]]} INFO asyncssh:logging.py:92 [conn=225, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=225, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade7880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229591 Rx 229591 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229591 Rx 229591 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229590 Rx 229590 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 14 | 0 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 1 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 37 | 2 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 3 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 41 | 4 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 49 | 5 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 63 | 6 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 51 | 7 | 34.42 | 0.00 | 26.06 | True INFO asyncssh:logging.py:92 [conn=225, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=225, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2800,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550080,"packets":229590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550592,"packets":229591,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550080,"packets":229590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550080,"packets":229590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550080,"packets":229590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117555760,"packets":229629,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117551100,"packets":229600,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117550080,"packets":229590,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117555760 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117550592 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117550080 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117550080 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117550080 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117550080 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117550080 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117551100 | 34.42 | 34.42 | 0.0 | 26.06 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=225, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=225, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:13:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=225, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=225, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":336,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=225, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=225, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:13:59 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=225, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=225, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=225, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=225, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=225, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=225, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=225, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=225, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=225, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=225, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=225, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=225, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=225, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=225, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=225, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=225, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=225, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=225, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=225, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=225, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=225, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=225, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=225, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=225, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=225, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=225, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=225, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=225, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=225, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=225, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=225, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=225, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=225, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=225, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=225, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=225, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=225, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=225, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=225, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=225, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=225, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=225, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=225, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=225, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=225, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=225, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=225, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=225, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=225, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=225, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=225, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=225, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=225, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=225, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=225, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=225, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=225, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=225, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=225, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=225, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=225, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=225, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=225, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=225, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=225, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=225, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=225, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=225, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=225, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=225, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=225, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=225, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=225, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] | 140.86 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16234' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=225, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=226] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=226] Local address: 172.17.0.3, port 45716 INFO asyncssh:logging.py:92 [conn=226] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=226] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=226] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:14:01 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:14:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=226, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=226, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=226, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3584 && bridge vlan add dev swp34 vid 3584 INFO asyncssh:logging.py:92 [conn=226, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=10] Command: bridge vlan add dev swp33 vid 3584 && bridge vlan add dev swp34 vid 3584 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 9 9 6 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 9 9 6 2 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=226, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,9,9,6,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3584, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3584, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0adff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229594 Rx 229594 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.06 | True INFO asyncssh:logging.py:92 [conn=226, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,9,9,6,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2414,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117557604,"packets":229619,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552488,"packets":229598,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117557604 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117552488 | 34.42 | 34.42 | 0.0 | 26.06 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=226, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=226, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:16:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=226, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=226, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":337,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=226, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=226, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:16:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=226, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=226, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,9,9,6,2,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=226, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=226, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=226, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=226, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=226, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=226, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=226, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=226, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=226, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=226, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=226, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=226, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=226, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=226, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=226, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=226, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=226, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=226, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=226, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=226, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=226, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=226, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=226, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=226, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=226, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=226, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=226, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=226, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=226, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=226, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=226, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=226, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=226, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=226, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=226, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=226, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=226, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=226, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=226, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=226, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=226, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=226, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=226, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=226, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=226, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=226, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=226, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=226, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=226, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=226, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=226, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=226, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=226, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=226, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=226, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=226, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=226, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=226, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=226, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=226, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=226, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=226, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=226, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=226, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=226, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=226, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=226, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=226, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=226, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=226, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=226, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] | 136.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16417' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=226, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=227] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=227] Local address: 172.17.0.3, port 36342 INFO asyncssh:logging.py:92 [conn=227] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=227] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=227] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:16:22 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=2] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:16:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=227, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=227, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 51:0 17:1 11:2 14:3 18:4 47:5 4:6 46:7 INFO asyncssh:logging.py:92 [conn=227, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=8] Command: dcb app add dev swp33 dscp-prio 51:0 17:1 11:2 14:3 18:4 47:5 4:6 46:7 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=227, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[4,6],[11,2],[14,3],[17,1],[18,4],[46,7],[47,5],[51,0]]} INFO asyncssh:logging.py:92 [conn=227, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 8 7 5 5 5 3 3 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 8 7 5 5 5 3 3 2 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=227, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,7,5,5,5,3,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0ad570>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229594 Rx 229594 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229595 Rx 229595 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 51 | 0 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 17 | 1 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 11 | 2 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 14 | 3 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 4 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 47 | 5 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 6 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 46 | 7 | 34.42 | 0.00 | 26.06 | True INFO asyncssh:logging.py:92 [conn=227, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=227, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,7,5,5,5,3,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2620,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117557592,"packets":229631,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117553092,"packets":229604,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117552640,"packets":229595,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117557592 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117552640 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117553092 | 34.42 | 34.42 | 0.0 | 26.06 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=227, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:18:36 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=227, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=227, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":338,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=227, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=227, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:18:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=227, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=227, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[8,7,5,5,5,3,3,2],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=227, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=227, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=227, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=227, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=227, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=52] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=227, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=54] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=227, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=56] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=227, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=58] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=227, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=60] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=227, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=62] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=227, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=64] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=227, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=66] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=227, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=68] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=227, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=70] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=227, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=72] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=227, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=74] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=227, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=76] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=227, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=78] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=227, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=80] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=227, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=82] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=227, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=84] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=227, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=86] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=227, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=88] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=227, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=90] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=227, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=92] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=227, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=94] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=227, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=96] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=227, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=98] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=227, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=100] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=227, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=102] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=227, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=104] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=227, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=106] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=227, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=108] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=227, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=110] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=227, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=112] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=227, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=114] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=227, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=116] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=227, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=118] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=227, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=227, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=132] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=134] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=227, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=227, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=227, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=227, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=227, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=140] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=227, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=142] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=227, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=144] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=227, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=146] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=227, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=148] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=227, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=150] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=227, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=152] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=227, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=154] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=227, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=156] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=227, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=158] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=227, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=160] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=227, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=162] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=227, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=227, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=164] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=227, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=227, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=166] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=227, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=227, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=168] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=227, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=227, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=227, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=227, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=227, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=227, chan=170] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=227, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=227, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=227, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership | 203.91 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16601' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=227, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=228] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=228] Local address: 172.17.0.3, port 35864 INFO asyncssh:logging.py:92 [conn=228] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=228] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=228] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:18:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=228, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=228, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=228, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=228, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=228, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=228, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=228, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=228, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade7400>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 714399 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 1644787 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=228, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=228, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=228, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=228, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=62] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:21:56 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=228, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=228, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=228, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":339,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":340,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":341,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":102.70,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=228, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=228, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=228, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=228, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=228, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=228, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=228, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=70] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:21:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=228, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=228, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=72] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:22:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=228, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=228, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":341,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=228, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=228, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=228, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=228, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=228, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic | 154.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16778' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=229, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=230] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=230] Local address: 172.17.0.3, port 46902 INFO asyncssh:logging.py:92 [conn=230] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=230] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=230] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:25:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=230, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=230, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=230, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb17ccd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1136869 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1110882 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1110835 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1110760 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=230, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=230, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=230, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=230, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=230, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:27:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=230, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=230, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:27:57 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=230, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=230, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":345,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=230, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=230, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=230, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=230, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=230, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates | 312.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-16818' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=230, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=231] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=231] Local address: 172.17.0.3, port 50868 INFO asyncssh:logging.py:92 [conn=231] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=231] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=231] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:27:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=231, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=231, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=231, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=231, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=8] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=231, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=10] Command: bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=231, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1604}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2951}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=22] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=22] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3956}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=26] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=26] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4640}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=28] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=30] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=30] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1108}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=32] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=34] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=34] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5195}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb003220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 38983 Rx 0 Frames Delta 38983 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 134483 Rx 0 Frames Delta 134483 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 84683 Rx 7420 Frames Delta 77263 Loss 91.238 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 51800 Rx 0 Frames Delta 51800 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 100251 Rx 0 Frames Delta 100251 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 35624 Rx 5837 Frames Delta 29787 Loss 83.615 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 32864 Rx 0 Frames Delta 32864 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 33017 Rx 0 Frames Delta 33017 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 43416 Rx 9316 Frames Delta 34100 Loss 78.542 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 103169 Rx 0 Frames Delta 103169 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 89253 Rx 0 Frames Delta 89253 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 34824 Rx 8935 Frames Delta 25889 Loss 74.342 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 162171 Rx 9612 Frames Delta 152559 Loss 94.073 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 47442 Rx 0 Frames Delta 47442 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 38800 Rx 0 Frames Delta 38800 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 72234 Rx 20882 Frames Delta 51352 Loss 71.091 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 154593 Rx 0 Frames Delta 154593 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 83825 Rx 0 Frames Delta 83825 Loss 100.000 INFO asyncssh:logging.py:92 [conn=231, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=38] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=38] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1604}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=40] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=42] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=42] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2951}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=44] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=46] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=46] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3956}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=48] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=50] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=50] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4640}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=52] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=54] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1108}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=56] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=58] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=58] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5195}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3bf40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 127356 Rx 0 Frames Delta 127356 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 439361 Rx 0 Frames Delta 439361 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 276663 Rx 24214 Frames Delta 252449 Loss 91.248 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 169232 Rx 0 Frames Delta 169232 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 327524 Rx 0 Frames Delta 327524 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 116385 Rx 19028 Frames Delta 97357 Loss 83.651 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 107367 Rx 0 Frames Delta 107367 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 107868 Rx 0 Frames Delta 107868 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 141841 Rx 30422 Frames Delta 111419 Loss 78.552 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 337057 Rx 0 Frames Delta 337057 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 291591 Rx 0 Frames Delta 291591 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 113772 Rx 29189 Frames Delta 84583 Loss 74.344 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 529818 Rx 31341 Frames Delta 498477 Loss 94.085 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 154995 Rx 0 Frames Delta 154995 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 126759 Rx 0 Frames Delta 126759 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 235989 Rx 68205 Frames Delta 167784 Loss 71.098 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 505060 Rx 0 Frames Delta 505060 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 273859 Rx 0 Frames Delta 273859 Loss 100.000 INFO asyncssh:logging.py:92 [conn=231, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1604 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=61] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=62] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=62] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1604}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=63] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=64] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2951 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=65] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=66] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=66] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2951}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=67] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=68] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3956 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=69] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=70] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=70] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3956}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=71] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=72] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4640 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=73] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=74] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4640}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=75] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=76] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1108 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=76] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=77] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=78] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=78] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1108}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=79] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=80] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5195 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=81] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=82] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=231, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=82] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5195}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3bd00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 215730 Rx 0 Frames Delta 215730 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 744239 Rx 0 Frames Delta 744239 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 468642 Rx 41037 Frames Delta 427605 Loss 91.243 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 286665 Rx 0 Frames Delta 286665 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 554797 Rx 0 Frames Delta 554797 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 197146 Rx 32247 Frames Delta 164899 Loss 83.643 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 181871 Rx 0 Frames Delta 181871 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 182718 Rx 0 Frames Delta 182718 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 240267 Rx 51542 Frames Delta 188725 Loss 78.548 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 570945 Rx 0 Frames Delta 570945 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 493929 Rx 0 Frames Delta 493929 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 192719 Rx 49438 Frames Delta 143281 Loss 74.347 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 897465 Rx 53035 Frames Delta 844430 Loss 94.091 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 262547 Rx 0 Frames Delta 262547 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 214718 Rx 0 Frames Delta 214718 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 399745 Rx 115533 Frames Delta 284212 Loss 71.098 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 855527 Rx 0 Frames Delta 855527 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 463893 Rx 0 Frames Delta 463893 Loss 100.000 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=231, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=83] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=84] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=84] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1604}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3956}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2951}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4640}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1108}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5195}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=85] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=86] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=87] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=88] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=89] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=90] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae39cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 294285 Rx 0 Frames Delta 294285 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1015242 Rx 0 Frames Delta 1015242 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 639291 Rx 176448 Frames Delta 462843 Loss 72.399 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 391049 Rx 0 Frames Delta 391049 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 756817 Rx 0 Frames Delta 756817 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 268934 Rx 90132 Frames Delta 178802 Loss 66.485 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 248096 Rx 0 Frames Delta 248096 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 249251 Rx 0 Frames Delta 249251 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 327756 Rx 123299 Frames Delta 204457 Loss 62.381 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 778845 Rx 0 Frames Delta 778845 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 673785 Rx 0 Frames Delta 673785 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 262895 Rx 107792 Frames Delta 155103 Loss 58.998 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 1224262 Rx 308557 Frames Delta 915705 Loss 74.796 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 358150 Rx 0 Frames Delta 358150 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 292904 Rx 0 Frames Delta 292904 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 545305 Rx 237349 Frames Delta 307956 Loss 56.474 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 1167054 Rx 0 Frames Delta 1167054 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 632812 Rx 0 Frames Delta 632812 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=231, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=91] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=92] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=231, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=92] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=231, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=93] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=94] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=95] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=96] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=231, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=97] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=98] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=231, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=98] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=99] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=100] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:33:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=231, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=101] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=231, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=102] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:33:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=231, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=231, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=104] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":346,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=231, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=231, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=105] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=231, chan=106] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=231, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=231, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=231, chan=106] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules | 252.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16935' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=231, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=232] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=232] Local address: 172.17.0.3, port 36576 INFO asyncssh:logging.py:92 [conn=232] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=232] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=232] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:33:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=232, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=232, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=232, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=232, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=232, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:33:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=232, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=232, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=232, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=16] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=18] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=22] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=232, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=22] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=24] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=26] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=28] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=30] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=232, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=232, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=32] Channel closed DEBUG infra2:Logger.py:156 4069 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=232, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=34] Command: tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=232, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=40] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=42] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=44] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=46] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=232, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafede10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1547657 Rx 13089 Frames Delta 1534568 Loss 99.154 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1547657 Rx 13077 Frames Delta 1534580 Loss 99.155 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 386919 Rx 14116 Frames Delta 372803 Loss 96.352 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 386919 Rx 386914 Frames Delta 5 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 386919 Rx 386913 Frames Delta 6 Loss 0.002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 386918 Rx 386913 Frames Delta 5 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=232, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=232, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=232, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=52] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=232, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=54] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=232, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=232, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=58] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:37:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=232, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=232, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=232, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=232, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=232, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=232, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=232, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=82] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=232, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=84] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=232, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=86] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=232, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=88] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=232, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=90] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=232, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=92] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=232, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=94] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=232, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=96] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=232, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=98] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=232, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=100] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=232, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=102] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=232, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=104] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=232, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=106] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=232, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=108] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=232, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=110] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=232, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=112] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=232, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=114] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=232, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=116] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=232, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=118] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=232, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=120] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=232, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=122] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=232, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=124] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=232, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=126] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=232, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=128] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=232, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=130] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=232, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=132] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=232, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=134] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=232, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=136] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=232, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=138] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=232, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=140] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=232, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=142] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=232, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=144] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=232, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=146] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=232, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=232, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=148] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=232, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=148] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=150] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=232, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=232, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=152] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=232, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=152] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=154] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=232, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=156] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=232, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=156] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=232, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=158] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=232, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=160] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=232, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=162] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=232, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=164] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=232, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=166] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=232, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=168] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=232, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=170] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=232, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=172] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=232, chan=172] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=172] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=174] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=232, chan=174] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=174] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=175] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=176] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=232, chan=176] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=176] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=177] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=178] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=232, chan=178] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=178] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=179] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=180] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=232, chan=180] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=180] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=181] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=182] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=232, chan=182] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=182] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=183] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=232, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=184] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=232, chan=184] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=184] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=185] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=232, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=186] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=232, chan=186] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=186] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=187] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=232, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=188] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=232, chan=188] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=188] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=189] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=232, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=190] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=232, chan=190] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=190] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=232, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=191] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=232, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=192] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=232, chan=192] Received exit status 2 INFO asyncssh:logging.py:92 [conn=232, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=192] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=193] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=194] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=194] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=194] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:37:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=232, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=195] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=232, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=196] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=196] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=196] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:37:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=232, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=197] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=198] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=232, chan=198] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=198] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":347,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=232, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=232, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=199] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=232, chan=200] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=232, chan=200] Received exit status 0 INFO asyncssh:logging.py:92 [conn=232, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=232, chan=200] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule | 212.47 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17150' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=232, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=233] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=233] Local address: 172.17.0.3, port 58032 INFO asyncssh:logging.py:92 [conn=233] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=233] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=233] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:37:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=233, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=233, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1674 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1674 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1674}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3905 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3905 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3905}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5175 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5175 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=233, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5175}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=20] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=233, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=22] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6e0e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 365144 Rx 349484 Frames Delta 15660 Loss 4.289 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 365143 Rx 35389 Frames Delta 329754 Loss 90.308 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 365143 Rx 46899 Frames Delta 318244 Loss 87.156 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=233, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=24] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5175}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1674}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3905}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=28] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb592140>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1189228 Rx 1170822 Frames Delta 18406 Loss 1.548 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1189228 Rx 675312 Frames Delta 513916 Loss 43.214 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1189227 Rx 696574 Frames Delta 492653 Loss 41.426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=233, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=32] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=233, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=233, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=34] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=38] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=233, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=38] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=233, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:40:51 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=233, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=233, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=233, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=233, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=233, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=233, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=233, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=64] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=233, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=66] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=233, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=68] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=233, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=70] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=233, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=72] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=233, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=74] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=233, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=76] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=233, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=78] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=233, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=80] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=233, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=82] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=233, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=84] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=233, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=86] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=233, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=88] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=233, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=90] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=233, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=92] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=233, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=94] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=233, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=96] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=233, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=98] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=233, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=100] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=233, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=102] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=233, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=104] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=233, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=106] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=233, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=108] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=233, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=110] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=233, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=112] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=233, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=114] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=233, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=116] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=233, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=118] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=233, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=120] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=233, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=122] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=233, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=124] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=233, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=126] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=233, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=233, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=233, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=130] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=233, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=233, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=134] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=233, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=136] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=233, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=138] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=233, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=140] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=233, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=142] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=233, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=144] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=233, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=146] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=233, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=148] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=233, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=150] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=233, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=152] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=233, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=154] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=233, chan=154] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=154] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=156] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=233, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=158] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=233, chan=158] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=158] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=160] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=233, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=233, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=162] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=233, chan=162] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=162] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=233, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=164] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=233, chan=164] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=164] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=233, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=166] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=233, chan=166] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=166] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=233, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=168] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=233, chan=168] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=168] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=233, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=233, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=170] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=233, chan=170] Received exit status 2 INFO asyncssh:logging.py:92 [conn=233, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=170] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=171] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=172] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=172] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:40:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=233, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=173] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=233, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=174] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=174] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:40:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=233, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=175] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=176] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=233, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=176] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":348,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=233, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=233, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=177] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=233, chan=178] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=233, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=233, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=233, chan=178] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership | 192.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17341' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=233, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=234] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=234] Local address: 172.17.0.3, port 58986 INFO asyncssh:logging.py:92 [conn=234] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=234] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=234] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:40:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=234, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=234, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=234, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=234, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=234, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=234, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=234, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=234, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafeca30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 246206 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 325397 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=234, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=234, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=234, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=234, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=234, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=62] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:44:03 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=234, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=234, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=234, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":349,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":350,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":351,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":113.74,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=234, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=234, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=234, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=234, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=70] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:44:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=234, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=234, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=72] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:44:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=234, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=234, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":351,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=234, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=234, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=234, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=234, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=234, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_packets.py::test_storm_control_packets | 588.86 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17429' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=234, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=235] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=235] Local address: 172.17.0.3, port 54882 INFO asyncssh:logging.py:92 [conn=235] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=235] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=235] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:44:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=235, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=235, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg get_drops_rate_code get_drops_rate_code_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=235, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=235, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=235, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get drop counters rate by reading hardware drop counters get_drops_rate_code() { R1=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/hw_counters/drops/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average drop rate by reading hardware drop counters get_drops_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_drops_rate_code $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:44:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=235, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=235, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=14] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=16] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=18] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=20] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=24] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=24] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=235, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=235, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=26] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=235, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=26] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=235, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=235, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=28] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=235, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=29] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=30] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=235, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=32] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=235, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=33] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=34] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=235, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=35] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=36] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=235, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=37] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=38] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=39] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=40] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=235, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=41] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=42] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=43] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=44] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=46] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=48] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=52] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=56] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=235, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=56] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=235, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=57] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=235, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=58] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=235, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=59] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=235, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=60] Channel closed DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=235, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=61] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=235, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=62] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=235, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=63] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=235, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=64] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=235, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=65] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=66] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=235, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=67] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=235, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=68] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=235, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=69] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=70] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=235, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=71] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=235, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=72] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=235, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=73] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=235, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=235, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=75] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=76] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=76] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=77] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=78] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=79] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=80] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=235, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=80] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=235, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=81] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=235, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=82] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=83] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=84] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:53:52 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=235, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=235, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=235, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=235, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=235, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=235, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=235, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=235, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=235, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=235, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=235, chan=92] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:53:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic | 212.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17533' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=235, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=236] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=236] Local address: 172.17.0.3, port 42568 INFO asyncssh:logging.py:92 [conn=236] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=236] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=236] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:53:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=236, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=236, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb08cbe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 379791 Rx 163184 Frames Delta 216607 Loss 57.033 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 325653 Rx 325652 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 199650 Rx 199649 Frames Delta 1 Loss 0.001 INFO asyncssh:logging.py:92 [conn=236, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=236, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6f010>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1236390 Rx 901341 Frames Delta 335049 Loss 27.099 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1060147 Rx 924912 Frames Delta 135235 Loss 12.756 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 649950 Rx 649949 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=236, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=236, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=236, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=24] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=236, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=236, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:57:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=236, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=236, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:57:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=236, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=236, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":352,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=236, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=236, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=236, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=236, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=236, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=236, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic | 211.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17577' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=236, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=237] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=237] Local address: 172.17.0.3, port 45148 INFO asyncssh:logging.py:92 [conn=237] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=237] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=237] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 04:57:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=237, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=237, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafefdc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 287201 Rx 169535 Frames Delta 117666 Loss 40.970 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 322597 Rx 322595 Frames Delta 2 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 280189 Rx 280189 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=237, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=237, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=237, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6df90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 864680 Rx 683014 Frames Delta 181666 Loss 21.010 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 971245 Rx 971244 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 843570 Rx 514886 Frames Delta 328684 Loss 38.963 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=237, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=237, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=237, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=26] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=28] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=32] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=34] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=237, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=36] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=237, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=36] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=38] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:00:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=237, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=237, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:01:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=237, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=237, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":353,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=237, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=237, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=237, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=237, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=237, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=237, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership | 197.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17632' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=237, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=238] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=238] Local address: 172.17.0.3, port 49362 INFO asyncssh:logging.py:92 [conn=238] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=238] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=238] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:01:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=238, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=238, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=238, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=238, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=238, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=238, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=238, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=238, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=238, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafecbb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1002776 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 872748 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=238, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=238, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=238, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=238, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=62] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:04:12 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=238, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=238, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=238, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":354,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":355,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":356,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":109.60,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=238, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=238, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=238, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=238, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=238, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=238, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=70] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:04:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=238, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=238, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=72] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:04:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=238, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=238, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":356,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=238, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=238, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=238, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=238, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=238, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic | 149.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17720' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=238, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=239] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=239] Local address: 172.17.0.3, port 38492 INFO asyncssh:logging.py:92 [conn=239] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=239] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=239] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:04:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=239, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=239, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=239, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3bc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1338600 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 255896 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 255918 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 255905 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=239, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=239, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=239, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=239, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=239, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:06:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=239, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=239, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:06:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=239, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=239, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":357,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=239, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=239, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=239, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=239, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=239, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic | 152.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17760' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=239, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=240] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=240] Local address: 172.17.0.3, port 50524 INFO asyncssh:logging.py:92 [conn=240] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=240] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=240] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:06:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=240, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=240, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=240, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6dea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 536230 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 517117 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1032204 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1032168 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=240, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=240, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=240, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=240, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=240, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:09:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=240, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=240, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:09:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=240, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=240, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":358,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=240, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=240, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=240, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=240, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=240, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic | 166.75 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-17800' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=240, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=241] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=241] Local address: 172.17.0.3, port 39440 INFO asyncssh:logging.py:92 [conn=241] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=241] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=241] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:09:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=241, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=241, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=241, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=241, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=10] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=12] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=14] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=241, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3ab60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 520412 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 520359 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1653694 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1653692 INFO asyncssh:logging.py:92 [conn=241, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=241, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=241, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb557e20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1793478 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2397243 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 2074146 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 2074144 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=241, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=241, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=241, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=241, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=241, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=28] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:12:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=241, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=241, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:12:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=241, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=241, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":359,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=241, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=241, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=241, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=241, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=241, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_bpdu_guard | 139.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17844' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_guard">Starting testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=241, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=242] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=242] Local address: 172.17.0.3, port 54078 INFO asyncssh:logging.py:92 [conn=242] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=242] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=242] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:12:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=242, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=242, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=242, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=242, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=242, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=4] Channel closed DEBUG infra2:Logger.py:156 28984 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:12:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=242, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=242, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=242, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:cc:5c:a0:7a:32 INFO asyncssh:logging.py:92 [conn=242, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:cc:5c:a0:7a:32 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=242, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=12] Command: bridge link set dev swp33 guard on INFO asyncssh:logging.py:92 [conn=242, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=242, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=14] Command: bridge -j link show dev swp33 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"master":"br0","state":"disabled","priority":32,"cost":4}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=242, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=15] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=242, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=16] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=242, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:14:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=242, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=242, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:14:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=242, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=242, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":360,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:cc:5c:a0:7a:32","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=242, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=242, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=242, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=242, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=242, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_forward_delay | 138.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17883' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_forward_delay">Starting testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=242, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=243] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=243] Local address: 172.17.0.3, port 33102 INFO asyncssh:logging.py:92 [conn=243] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=243] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=243] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:14:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=243, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=243, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=243, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=243, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=243, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:14:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=243, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=243, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=8] Command: ip link add br0 type bridge stp_state 1 && ip link add br1 type bridge stp_state 1 && ip link add br2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=243, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=243, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=10] Command: ip link set dev swp6 up master br0 && ip link set dev swp7 up master br0 && ip link set dev swp8 up master br1 && ip link set dev swp9 up master br1 && ip link set dev swp10 up master br2 && ip link set dev swp5 up master br2 && ip link set dev br0 up && ip link set dev br1 up && ip link set dev br2 up INFO asyncssh:logging.py:92 [conn=243, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=243, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=12] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":100,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":0.06,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected only 1 root bridge assert 3 == 1 + where 3 = len(['br0', 'br1', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=14] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.29,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.60,"forward_delay_timer":7.27,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.12,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.60,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.60,"forward_delay_timer":7.23,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.19,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.57,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":290.00,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=16] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.28,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.53,"forward_delay_timer":12.29,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.30,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.52,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.53,"forward_delay_timer":12.29,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.30,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.51,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":279.94,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=18] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.22,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.48,"forward_delay_timer":2.22,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.24,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.48,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.48,"forward_delay_timer":2.23,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.24,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.87,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.87,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.44,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":269.87,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected ports to be 'forwarding' assert False + where False = all([False, False, False, False, False]) INFO asyncssh:logging.py:92 [conn=243, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=20] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.40,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.40,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.40,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.81,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.81,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.38,"tcn_timer":0.00,"topology_change_timer":27.31,"gc_timer":259.81,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Poll successful after 40s INFO asyncssh:logging.py:92 [conn=243, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=22] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.76,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.76,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.34,"tcn_timer":0.00,"topology_change_timer":27.26,"gc_timer":259.76,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=243, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=243, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=24] Command: ip link set dev swp6 down INFO asyncssh:logging.py:92 [conn=243, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Start polling timeout = 80 interval = 10 INFO asyncssh:logging.py:92 [conn=243, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=26] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","hold_timer":1.24,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.25,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.26,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.96,"tcn_timer":0.00,"topology_change_timer":34.96,"gc_timer":259.66,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":259.66,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.24,"tcn_timer":0.00,"topology_change_timer":27.17,"gc_timer":259.67,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=28] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":8.19,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.21,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.18,"tcn_timer":0.00,"topology_change_timer":24.90,"gc_timer":249.60,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":249.60,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.18,"tcn_timer":0.00,"topology_change_timer":17.10,"gc_timer":249.60,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=30] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.14,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.12,"tcn_timer":0.00,"topology_change_timer":14.85,"gc_timer":239.55,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":239.55,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.12,"tcn_timer":0.00,"topology_change_timer":7.05,"gc_timer":239.55,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Expected only 1 root bridge assert 2 == 1 + where 2 = len(['br0', 'br2']) INFO asyncssh:logging.py:92 [conn=243, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=32] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.09,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":5.10,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.09,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.48,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":229.48,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.06,"tcn_timer":0.00,"topology_change_timer":25.12,"gc_timer":229.49,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'listening' == 'forwarding' - forwarding + listening INFO asyncssh:logging.py:92 [conn=243, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=34] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.02,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":10.14,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.02,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.43,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":219.43,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":15.07,"gc_timer":219.43,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=243, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=36] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.94,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.96,"message_age_timer":0.00,"forward_delay_timer":0.07,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.95,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.93,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.36,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":209.36,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.93,"tcn_timer":0.00,"topology_change_timer":5.00,"gc_timer":209.36,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 10s Port swp8 should be 'forwarding' assert 'learning' == 'forwarding' - forwarding + learning INFO asyncssh:logging.py:92 [conn=243, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=38] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.90,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.89,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.90,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.87,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.29,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.29,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.87,"tcn_timer":0.00,"topology_change_timer":25.13,"gc_timer":199.30,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Poll successful after 60s INFO asyncssh:logging.py:92 [conn=243, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=243, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=40] Command: ip link set dev br2 && ip link set dev swp6 up INFO asyncssh:logging.py:92 [conn=243, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Start polling timeout = 40.0 interval = 5 INFO asyncssh:logging.py:92 [conn=243, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=42] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"disabled","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.80,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:89","hold_timer":0.80,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.81,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.78,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":2,"root_path_cost":8,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.20,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":199.20,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.78,"tcn_timer":0.00,"topology_change_timer":25.04,"gc_timer":199.20,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected only 1 blocked port assert 0 == 1 + where 0 = len([]) INFO asyncssh:logging.py:92 [conn=243, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=44] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":12.40,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.75,"forward_delay_timer":12.36,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.74,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.74,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.74,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.72,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":194.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.72,"tcn_timer":0.00,"topology_change_timer":33.78,"gc_timer":194.14,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=46] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":7.34,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.67,"forward_delay_timer":7.30,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.68,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.67,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.67,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.66,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":189.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.66,"tcn_timer":0.00,"topology_change_timer":28.72,"gc_timer":189.08,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=48] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":2.29,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.62,"forward_delay_timer":2.25,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.61,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.62,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":184.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":184.02,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.60,"tcn_timer":0.00,"topology_change_timer":23.66,"gc_timer":184.03,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=50] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.54,"message_age_timer":0.00,"forward_delay_timer":12.43,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.57,"forward_delay_timer":12.44,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.56,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.57,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.57,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.54,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.96,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":178.96,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.54,"tcn_timer":0.00,"topology_change_timer":18.60,"gc_timer":178.97,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=52] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":7.38,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.52,"forward_delay_timer":7.38,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.51,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.52,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.91,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":173.91,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.48,"tcn_timer":0.00,"topology_change_timer":13.54,"gc_timer":173.91,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=54] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.42,"message_age_timer":0.00,"forward_delay_timer":2.32,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"learning","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.44,"forward_delay_timer":2.32,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.45,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.44,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":19.44,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.42,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.85,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":168.85,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":1.42,"tcn_timer":0.00,"topology_change_timer":8.48,"gc_timer":168.85,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Expected ports to be 'forwarding' assert False + where False = all([False, False, True, True, True]) INFO asyncssh:logging.py:92 [conn=243, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=56] Command: ip -d -j link show INFO asyncssh:logging.py:92 [conn=243, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.38,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":4,"bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.38,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":18.38,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8a","root_id":"8000.18:be:92:13:64:8a","root_port":1,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.79,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:8c","root_id":"8000.18:be:92:13:64:8c","root_port":2,"root_path_cost":4,"topology_change":1,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":163.79,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":3000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:89","root_id":"8000.18:be:92:13:64:89","root_port":0,"root_path_cost":0,"topology_change":1,"topology_change_detected":1,"hello_timer":0.36,"tcn_timer":0.00,"topology_change_timer":32.38,"gc_timer":163.79,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Poll successful after 35s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_forward_delay from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=243, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=57] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=243, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=58] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=243, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=59] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=60] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:16:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=243, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=243, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=62] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:16:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=243, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=243, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":361,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":362,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":363,"ifname":"br2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=243, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=243, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=243, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=243, chan=66] Command: ip link delete br0 && ip link delete br1 && ip link delete br2 INFO asyncssh:logging.py:92 [conn=243, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=243, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=243, chan=66] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_max_age | 285.51 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-17964' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_max_age">Starting testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=243, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=244] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=244] Local address: 172.17.0.3, port 46052 INFO asyncssh:logging.py:92 [conn=244] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=244] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=244] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:16:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=244, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=244, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=244, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=244, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=244, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:16:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=244, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=244, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=244, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:da:b8:80:bd:f1 INFO asyncssh:logging.py:92 [conn=244, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 22:da:b8:80:bd:f1 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=12] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:f4:37:df:d5:cd","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":18.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":18.35,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.78,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":364,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:da:b8:80:bd:f1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.22:da:b8:80:bd:f1","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.48,"topology_change_timer":0.00,"gc_timer":137.09,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Start polling timeout = 30 interval = 5 INFO asyncssh:logging.py:92 [conn=244, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=14] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":18.05,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=16] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":13.02,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=18] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":7.98,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=20] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":2.94,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 5s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=22] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.22:da:b8:80:bd:f1","hold_timer":0.33,"message_age_timer":0.00,"forward_delay_timer":14.44,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Poll successful after 20s INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=244, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32770,"designated_cost":0,"bridge_id":"8000.2:f4:37:df:d5:cd","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":4.37,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":4.37,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":4,"bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.86,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":364,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:da:b8:80:bd:f1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":600,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.22:da:b8:80:bd:f1","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.50,"topology_change_timer":0.00,"gc_timer":22.17,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Start polling timeout = 15.0 interval = 2 INFO asyncssh:logging.py:92 [conn=244, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=26] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":4.09,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=28] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":2.05,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=30] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"blocking","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.4:f7:8c:9c:34:26","root_id":"8000.2:f4:37:df:d5:cd","hold_timer":0.00,"message_age_timer":0.02,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Polling failed. Trying again in 2s Port swp34 should not be blocked assert 'blocking' != 'blocking' INFO asyncssh:logging.py:92 [conn=244, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=32] Command: ip -j -d link show swp34 INFO asyncssh:logging.py:92 [conn=244, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"listening","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.22:da:b8:80:bd:f1","root_id":"8000.22:da:b8:80:bd:f1","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":13.17,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Poll successful after 6s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_max_age from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=244, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=33] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=244, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=34] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=244, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=36] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:21:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=244, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=244, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=38] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:21:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=244, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=244, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":364,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:da:b8:80:bd:f1","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=244, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=244, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=244, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=244, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=244, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_config.py::test_stp_root_guard | 176.99 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18021' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_root_guard">Starting testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=244, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=245] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=245] Local address: 172.17.0.3, port 33650 INFO asyncssh:logging.py:92 [conn=245] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=245] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=245] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:21:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=245, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=245, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=245, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=245, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='n'" /etc/bridge-stp.conf && (pidof mstpd && kill `pidof mstpd`) || echo INFO asyncssh:logging.py:92 [conn=245, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:21:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=245, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=245, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:99:a4:b5:d6:8d INFO asyncssh:logging.py:92 [conn=245, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up address 22:99:a4:b5:d6:8d INFO asyncssh:logging.py:92 [conn=245, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=12] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":365,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:99:a4:b5:d6:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:99:a4:b5:d6:8d","root_id":"8000.22:99:a4:b5:d6:8d","root_port":1,"root_path_cost":4,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.26,"topology_change_timer":0.00,"gc_timer":164.25,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=245, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=245, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=14] Command: bridge link set dev swp33 root_block on INFO asyncssh:logging.py:92 [conn=245, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=245, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=16] Command: ip -j -d link show br0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":365,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:99:a4:b5:d6:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":1,"priority":32768,"vlan_filtering":0,"vlan_protocol":"802.1Q","bridge_id":"8000.22:99:a4:b5:d6:8d","root_id":"8000.22:99:a4:b5:d6:8d","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":1,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":124.11,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_root_guard from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_config.py INFO asyncssh:logging.py:92 [conn=245, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=17] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=245, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=18] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=245, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=20] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:24:26 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=245, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=245, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=22] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:24:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=245, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=245, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":365,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:99:a4:b5:d6:8d","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=245, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=245, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=245, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=245, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=245, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[stp] | 286.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18062' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[stp]">Starting testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=245, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=246] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=246] Local address: 172.17.0.3, port 44708 INFO asyncssh:logging.py:92 [conn=246] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=246] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=246] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:24:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=246, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=246, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=246, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=246, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=246, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:24:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=246, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:2c:e3:9e:fb INFO asyncssh:logging.py:92 [conn=246, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:2c:e3:9e:fb INFO asyncssh:logging.py:92 [conn=246, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=246, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=13] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=246, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=246, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=15] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=246, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=16] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=246, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=17] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=18] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:F3:CC:E8:43","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:F3:CC:E8:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"54","num-rx-bpdu":"36","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:54:3D:B5:EF","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:54:3D:B5:EF","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"51","num-rx-bpdu":"36","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:2C:E3:9E:FB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:2C:E3:9E:FB","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"66","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae3bb50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 stp SIP-DIP Tx 32 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 stp SIP-DIP Tx 32 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2339899 Rx 2339897 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2339898 Rx 758 Loss 99.968 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:6 INFO asyncssh:logging.py:92 [conn=246, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=19] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=246, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=20] Command: mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=246, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=21] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:F3:CC:E8:43","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:F3:CC:E8:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"57","num-rx-bpdu":"78","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:2C:E3:9E:FB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:2C:E3:9E:FB","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"yes","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"51","num-rx-bpdu":"78","num-rx-bpdu-filtered":"40","num-tx-tcn":"18","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:2C:E3:9E:FB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:2C:E3:9E:FB","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"88","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"21","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdafee800>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 stp SIP-DIP Tx 76 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 stp SIP-DIP Tx 76 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 5562555 Rx 5562554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 5562555 Rx 321924 Loss 94.213 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:2:6 INFO asyncssh:logging.py:92 [conn=246, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=23] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=246, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=24] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=246, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 40s for topo convergence INFO asyncssh:logging.py:92 [conn=246, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=25] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:F3:CC:E8:43","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:F3:CC:E8:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"121","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:54:3D:B5:EF","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:54:3D:B5:EF","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"52","num-rx-bpdu":"121","num-rx-bpdu-filtered":"0","num-tx-tcn":"19","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"5","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:F3:CC:E8:43","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:2C:E3:9E:FB","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:2C:E3:9E:FB","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"109","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"35","num-rx-tcn":"0","num-transition-fwd":"2","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6ecb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 stp SIP-DIP Tx 118 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 stp SIP-DIP Tx 118 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 8638727 Rx 8638726 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 8638727 Rx 693318 Loss 91.974 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:6 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=246, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=27] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=246, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=246, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:29:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=246, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=246, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:29:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=246, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=246, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":366,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:2c:e3:9e:fb","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=246, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=246, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=246, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=246, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=246, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_bpdu_filter[rstp] | 225.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18113' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_bpdu_filter[rstp]">Starting testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=246, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=247] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=247] Local address: 172.17.0.3, port 57032 INFO asyncssh:logging.py:92 [conn=247] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=247] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=247] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:29:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=247, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=247, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=247, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=247, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=247, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:29:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=247, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=247, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:8c:8b:d4:5e INFO asyncssh:logging.py:92 [conn=247, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up address 02:55:8c:8b:d4:5e INFO asyncssh:logging.py:92 [conn=247, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=247, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=13] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=247, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=247, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34 rstp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating bpdu traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for data traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=15] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=247, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=16] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=247, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=17] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=18] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:FB:73:25:D2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:FB:73:25:D2","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"71","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:3B:71:B2:C0","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:3B:71:B2:C0","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"68","num-rx-bpdu":"16","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:8C:8B:D4:5E","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:8C:8B:D4:5E","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"59","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdae39330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 rstp SIP-DIP Tx 12 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 rstp SIP-DIP Tx 12 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 875828 Rx 875827 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 875828 Rx 1660 Loss 99.810 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:6 INFO asyncssh:logging.py:92 [conn=247, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=19] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=247, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=20] Command: mstpctl setportbpdufilter br0 swp34 yes INFO asyncssh:logging.py:92 [conn=247, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=21] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=22] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:FB:73:25:D2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:FB:73:25:D2","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"93","num-rx-bpdu":"38","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:8C:8B:D4:5E","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:8C:8B:D4:5E","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"yes","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"70","num-rx-bpdu":"38","num-rx-bpdu-filtered":"20","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"4","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:8C:8B:D4:5E","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:8C:8B:D4:5E","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"70","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaf6cd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 rstp SIP-DIP Tx 34 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 2487157 Rx 2487155 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 2487156 Rx 650770 Loss 73.835 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 300.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:6 INFO asyncssh:logging.py:92 [conn=247, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=23] Channel closed DEBUG infra2:Logger.py:156 mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=247, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=24] Command: mstpctl setportbpdufilter br0 swp34 no INFO asyncssh:logging.py:92 [conn=247, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting 20s for topo convergence INFO asyncssh:logging.py:92 [conn=247, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=25] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=26] Command: mstpctl -f json showportdetail br0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp33","bridge":"br0","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:10:FB:73:25:D2","dsgn-internal-cost":"0","designated-bridge":"8.000.02:10:FB:73:25:D2","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"116","num-rx-bpdu":"61","num-rx-bpdu-filtered":"0","num-tx-tcn":"4","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp34","bridge":"br0","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"0","dsgn-regional-root":"8.000.02:AA:3B:71:B2:C0","dsgn-internal-cost":"0","designated-bridge":"8.000.02:AA:3B:71:B2:C0","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"91","num-rx-bpdu":"61","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"0","num-transition-fwd":"4","num-transition-blk":"5","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp35","bridge":"br0","enabled":"yes","role":"Designated","port-id":"8.003","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.02:10:FB:73:25:D2","dsgn-external-cost":"20000","dsgn-regional-root":"8.000.02:55:8C:8B:D4:5E","dsgn-internal-cost":"0","designated-bridge":"8.000.02:55:8C:8B:D4:5E","designated-port":"8.003","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"yes","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"81","num-rx-bpdu":"0","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"0","num-transition-fwd":"3","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb001de0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI swp33 rstp SIP-DIP Tx 58 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:6 TI swp34 rstp SIP-DIP Tx 58 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI data traffic SIP-DIP 00:13:01:00:00:01-00:11:01:00:00:01 Tx 4244969 Rx 4244968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI data traffic SIP-DIP 00:13:01:00:00:01-00:12:01:00:00:01 Tx 4244969 Rx 1168629 Loss 72.470 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 300Mbps, actual 299.0Mbps, rx port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Expected rate 0Mbps, actual 0.0Mbps, rx port 10.36.118.199:2:6 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_bpdu_filter[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=247, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=27] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=247, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=28] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=247, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=30] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:32:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=247, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=247, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:32:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=247, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=247, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":367,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"02:55:8c:8b:d4:5e","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=247, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=247, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=247, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=247, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=247, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[stp] | 141.37 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18164' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[stp]">Starting testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=247, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=248] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=248] Local address: 172.17.0.3, port 36128 INFO asyncssh:logging.py:92 [conn=248] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=248] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=248] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:32:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=248, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=248, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=248, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=248, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=248, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:32:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=248, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=248, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=248, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=248, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=13] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=248, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=14] Command: mstpctl setforcevers br0 stp INFO asyncssh:logging.py:92 [conn=248, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra2... INFO asyncssh:logging.py:92 [conn=248, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=15] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=16] Channel closed DEBUG infra2:Logger.py:156 05:33:40.051476 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:42.051555 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:44.051466 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:46.051500 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:48.051477 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:50.051508 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:52.051547 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:54.051609 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:56.051504 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:33:58.051470 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:00.051511 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:02.051483 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:04.051463 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:06.051619 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:08.051473 STP 802.1d, Config, Flags [Topology change], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=248, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=17] Channel closed DEBUG infra2:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=248, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra2... INFO asyncssh:logging.py:92 [conn=248, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=19] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=248, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=20] Channel closed DEBUG infra2:Logger.py:156 05:34:50.051464 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:51.051472 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:52.051446 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:53.051447 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:54.051508 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:55.051466 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:56.051570 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:57.051443 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:58.051502 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:34:59.051478 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:00.051575 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:01.051464 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:02.051565 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:03.051449 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:04.051530 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:05.051477 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:06.051579 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:07.051453 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:08.051467 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:09.051447 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:10.051527 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:11.051468 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:12.051524 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:13.051447 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:14.051507 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:15.051475 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:16.051552 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:17.051445 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:18.051490 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 05:35:19.051447 STP 802.1d, Config, Flags [none], bridge-id 8000.18:be:92:13:64:a5.8001, length 35 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 30 packets captured 30 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=248, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=21] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=248, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=248, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:35:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=248, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=248, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:35:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=248, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=248, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":368,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=248, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=248, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=248, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=248, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=248, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_rstp_config.py::test_stp_hello_time[rstp] | 101.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18209' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_hello_time[rstp]">Starting testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=248, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=249] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=249] Local address: 172.17.0.3, port 32992 INFO asyncssh:logging.py:92 [conn=249] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=249] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=249] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:35:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=249, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=249, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=249, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=249, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:35:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=249, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=8] Command: ip link add br0 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=249, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=12] Command: mstpctl addbridge br0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=249, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=13] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=249, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=14] Command: mstpctl setforcevers br0 rstp INFO asyncssh:logging.py:92 [conn=249, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra2... INFO asyncssh:logging.py:92 [conn=249, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=15] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=16] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=16] Channel closed DEBUG infra2:Logger.py:156 05:35:42.051487 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:44.051497 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:46.051500 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:48.051590 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:50.051805 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:52.051497 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:54.051737 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:56.051508 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:35:58.051485 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:00.051758 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:02.051495 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:04.051529 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:06.051504 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:08.051549 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:10.051507 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 15 packets captured 15 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=249, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=17] Channel closed DEBUG infra2:Logger.py:156 mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=249, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=18] Command: mstpctl sethello br0 1 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 30 tcpdump -i swp33 -n llc on infra2... INFO asyncssh:logging.py:92 [conn=249, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=19] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=20] Command: echo onl | sudo -S timeout --preserve-status 30 tcpdump -i swp33 -n llc INFO asyncssh:logging.py:92 [conn=249, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=20] Channel closed DEBUG infra2:Logger.py:156 05:36:32.051470 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:33.051456 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:34.051539 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:35.051468 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:36.051564 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:37.051451 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:38.051461 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:39.051454 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:40.051550 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:41.051464 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:42.051527 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:43.051771 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:44.051839 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:45.051477 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:46.051570 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:47.051677 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:48.051750 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:49.051453 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:50.051472 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:51.051470 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:52.051471 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:53.051448 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:54.051522 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:55.051729 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:56.051829 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:57.051689 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:58.051754 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:36:59.051453 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 05:37:00.051475 STP 802.1w, Rapid STP, Flags [Proposal, Learn, Forward, Agreement], bridge-id 8000.18:be:92:13:64:a5.8001, length 36 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 29 packets captured 30 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_hello_time[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_rstp_config.py INFO asyncssh:logging.py:92 [conn=249, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=21] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=22] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=249, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=249, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=249, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=249, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:37:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=249, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=249, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":369,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=249, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=249, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=249, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=249, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=249, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[stp] | 82.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18399' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[stp]">Starting testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=251, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=252] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=252] Local address: 172.17.0.3, port 60178 INFO asyncssh:logging.py:92 [conn=252] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=252] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=252] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:38:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=252, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=252, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=252, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=252, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:38:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=252, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=9] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=252, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=12] Command: mstpctl setforcevers bridge_1 stp && mstpctl setforcevers bridge_2 stp INFO asyncssh:logging.py:92 [conn=252, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=252, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=252, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=19] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=252, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=20] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=21] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=252, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=22] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=252, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=252, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=252, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=252, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=27] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=252, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"yes","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=252, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=29] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"stp","time-since-topology-change":"0","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=252, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=31] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"19","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] INFO asyncssh:logging.py:92 [conn=252, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=252, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=252, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"39","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"18","num-transition-fwd":"1","num-transition-blk":"3","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"yes","received-tcn":"no","send-rstp":"no"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"6","num-rx-bpdu":"40","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"19","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"yes","received-rstp":"no","received-tc-ack":"no","received-tcn":"no","send-rstp":"no"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[stp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=252, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=37] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=252, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=252, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:39:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=252, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=252, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":376,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":377,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=252, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=44] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=252, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=46] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:39:28 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=252, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=252, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=48] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=252, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=252, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=252, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=252, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=252, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=252, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:39:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/stp/test_stp_select_root.py::test_stp_select_root_port[rstp] | 42.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-18467' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_stp_select_root_port[rstp]">Starting testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=252, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=253] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=253] Local address: 172.17.0.3, port 45436 INFO asyncssh:logging.py:92 [conn=253] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=253] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=253] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:39:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=253, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=1] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=2] Command: cp /etc/bridge-stp.conf /etc/bridge-stp.conf.bak INFO asyncssh:logging.py:92 [conn=253, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=3] Channel closed DEBUG infra2:Logger.py:156 sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=4] Command: sed -i "/^[#]*MANAGE_MSTPD=/ cMANAGE_MSTPD='y'" /etc/bridge-stp.conf && mstpd INFO asyncssh:logging.py:92 [conn=253, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=4] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=6] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:39:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=253, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=8] Command: ip link add bridge_1 type bridge stp_state 1 && ip link add bridge_2 type bridge stp_state 1 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=9] Channel closed DEBUG infra2:Logger.py:156 mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=10] Command: mstpctl addbridge bridge_1 && mstpctl addbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=11] Channel closed DEBUG infra2:Logger.py:156 mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=253, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=12] Command: mstpctl setforcevers bridge_1 rstp && mstpctl setforcevers bridge_2 rstp INFO asyncssh:logging.py:92 [conn=253, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=14] Command: ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp6 down && ip link set dev swp8 down INFO asyncssh:logging.py:92 [conn=253, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=16] Command: ip link set dev swp5 master bridge_1 && ip link set dev swp7 master bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=18] Command: ip link set dev swp6 master bridge_2 && ip link set dev swp8 master bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=19] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=253, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=20] Command: ifconfig bridge_1 hw ether 22:AA:98:EA:D2:43 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=21] Channel closed DEBUG infra2:Logger.py:156 ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=253, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=22] Command: ifconfig bridge_2 hw ether 44:0A:D1:68:4E:B9 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=24] Command: ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp6 up && ip link set dev swp8 up INFO asyncssh:logging.py:92 [conn=253, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=253, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=26] Command: ip link set dev bridge_1 up && ip link set dev bridge_2 up INFO asyncssh:logging.py:92 [conn=253, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=27] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=28] Command: mstpctl -f json showbridge bridge_1 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_1","enabled":"yes","bridge-id":"8.000.22:AA:98:EA:D2:43","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.22:AA:98:EA:D2:43","root-port":"","path-cost":"0","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"14","topology-change-count":"1","topology-change":"no","topology-change-port":"swp5","last-topology-change-port":"swp7"}] INFO asyncssh:logging.py:92 [conn=253, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=29] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=30] Command: mstpctl -f json showbridge bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"bridge":"bridge_2","enabled":"yes","bridge-id":"8.000.44:0A:D1:68:4E:B9","designated-root":"8.000.22:AA:98:EA:D2:43","regional-root":"8.000.44:0A:D1:68:4E:B9","root-port":"swp6 (#1)","path-cost":"20000","internal-path-cost":"0","max-age":"20","bridge-max-age":"20","forward-delay":"15","bridge-forward-delay":"15","tx-hold-count":"6","max-hops":"20","hello-time":"2","ageing-time":"300","force-protocol-version":"rstp","time-since-topology-change":"15","topology-change-count":"1","topology-change":"no","topology-change-port":"None","last-topology-change-port":"swp6"}] INFO asyncssh:logging.py:92 [conn=253, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=31] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=32] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.001","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.002","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"3","num-rx-bpdu":"11","num-rx-bpdu-filtered":"0","num-tx-tcn":"0","num-rx-tcn":"2","num-transition-fwd":"0","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] INFO asyncssh:logging.py:92 [conn=253, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=33] Channel closed DEBUG infra2:Logger.py:156 mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=253, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=34] Command: mstpctl settreeportprio bridge_1 swp7 0 7 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=35] Channel closed DEBUG infra2:Logger.py:156 mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=36] Command: mstpctl -f json showportdetail bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"port":"swp6","bridge":"bridge_2","enabled":"yes","role":"Alternate","port-id":"8.001","state":"discarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"8.001","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"4","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"3","num-rx-tcn":"4","num-transition-fwd":"1","num-transition-blk":"3","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"},{"port":"swp8","bridge":"bridge_2","enabled":"yes","role":"Root","port-id":"8.002","state":"forwarding","external-port-cost":"20000","internal-port-cost":"20000","admin-external-cost":"0","admin-internal-cost":"0","designated-root":"8.000.22:AA:98:EA:D2:43","dsgn-external-cost":"0","dsgn-regional-root":"8.000.22:AA:98:EA:D2:43","dsgn-internal-cost":"0","designated-bridge":"8.000.22:AA:98:EA:D2:43","designated-port":"7.002","admin-edge-port":"no","auto-edge-port":"yes","oper-edge-port":"no","topology-change-ack":"no","point-to-point":"yes","admin-point-to-point":"auto","restricted-role":"no","restricted-TCN":"no","port-hello-time":"2","disputed":"no","bpdu-guard-port":"no","bpdu-guard-error":"no","bpdu-filter-port":"no","network-port":"no","ba-inconsistent":"no","num-tx-bpdu":"5","num-rx-bpdu":"22","num-rx-bpdu-filtered":"0","num-tx-tcn":"2","num-rx-tcn":"2","num-transition-fwd":"1","num-transition-blk":"2","received-bpdu":"no","received-stp":"no","received-rstp":"yes","received-tc-ack":"no","received-tcn":"no","send-rstp":"yes"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_stp_select_root_port[rstp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/stp/test_stp_select_root.py INFO asyncssh:logging.py:92 [conn=253, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=37] Channel closed DEBUG infra2:Logger.py:156 cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=38] Command: cp /etc/bridge-stp.conf.bak /etc/bridge-stp.conf INFO asyncssh:logging.py:92 [conn=253, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=253, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=40] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:40:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=253, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=253, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":378,"ifname":"bridge_1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"22:aa:98:ea:d2:43","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":379,"ifname":"bridge_2","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"44:0a:d1:68:4e:b9","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=253, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=44] Command: ip link delete bridge_1 && ip link delete bridge_2 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=46] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:40:10 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=253, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=253, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=48] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=253, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=253, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=253, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=253, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=253, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=253, chan=50] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:40:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/table_size/test_table_size.py::test_ipv4_route_table_fill | 59.87 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_table_fill">Starting testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18533' coro=<test_ipv4_route_table_fill() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=253, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=254] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=254] Local address: 172.17.0.3, port 33160 INFO asyncssh:logging.py:92 [conn=254] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=254] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=254] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:40:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=254, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=254, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=254, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=2] Channel closed DEBUG infra2:Logger.py:156 arm64-delta-tn48m-poe-dn-r0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=4] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=254, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=5] Channel closed DEBUG infra2:Logger.py:156 for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=254, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=6] Command: for x in `seq 40` do for y in `seq 250` do ip ro add dev swp33 1.1.$x.$y done done INFO asyncssh:logging.py:92 [conn=254, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=254, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=8] Command: ip route | grep rt_offload | wc -l INFO asyncssh:logging.py:92 [conn=254, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=8] Channel closed DEBUG infra2:Logger.py:156 10001 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_table_fill from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=254, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:41:10 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=254, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=254, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 && ip address flush swp5 && ip address flush swp7 && ip address flush swp9 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=254, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=254, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=254, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:15:5d:75:69:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=254, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=254, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=254, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=254, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp5 down && ip link set dev swp7 down && ip link set dev swp9 down && ip link set dev swp5 up && ip link set dev swp7 up && ip link set dev swp9 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=254, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=254, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=254, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_bridging_mac_table_size | 124.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18558' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:111> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=254, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=255] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=255] Local address: 172.17.0.3, port 60126 INFO asyncssh:logging.py:92 [conn=255] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=255] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=255] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:41:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=255, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=255, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=255, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=255, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=255, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=255, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=8] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=255, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefd0f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 14165 Rx 14165 Loss 0.000 INFO asyncssh:logging.py:92 [conn=255, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=255, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=255, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=10] Channel closed DEBUG infra2:Logger.py:156 4002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:43:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=255, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=255, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:43:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=255, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=255, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":380,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=255, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=255, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=255, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=255, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=255, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/table_size/test_table_size.py::test_acl_table_size | 225.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_table_size">Starting testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18585' coro=<test_acl_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py:200> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=255, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=256] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=256] Local address: 172.17.0.3, port 39242 INFO asyncssh:logging.py:92 [conn=256] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=256] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=256] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:43:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=256, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=256, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=256, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=2] Channel closed DEBUG infra2:Logger.py:156 arm64-delta-tn48m-poe-dn-r0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=3] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=4] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=5] Channel closed DEBUG infra2:Logger.py:156 for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=6] Command: for x in `seq 1636` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=8] Command: tc filter show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=8] Channel closed DEBUG infra2:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=256, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=10] Command: tc filter show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=10] Channel closed DEBUG infra2:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=256, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=12] Command: tc qdisc delete dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=14] Command: tc qdisc add dev swp33 handle 10 ingress INFO asyncssh:logging.py:92 [conn=256, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=256, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=16] Command: tc chain add dev swp33 ingress chain 0 flower INFO asyncssh:logging.py:92 [conn=256, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=17] Channel closed DEBUG infra2:Logger.py:156 for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=18] Command: for x in `seq 4196` do tc filter add dev swp33 ingress flower action pass done INFO asyncssh:logging.py:92 [conn=256, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=20] Command: tc f show dev swp33 ingress | grep in_hw_count | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=20] Channel closed DEBUG infra2:Logger.py:156 4096 INFO asyncssh:logging.py:92 [conn=256, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=22] Command: tc f show dev swp33 ingress | grep used_hw_stats | wc -l INFO asyncssh:logging.py:92 [conn=256, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=22] Channel closed DEBUG infra2:Logger.py:156 4096 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/table_size/test_table_size.py INFO asyncssh:logging.py:92 [conn=256, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=256, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=24] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:46:46 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=256, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=256, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=256, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp1","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp2","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp3","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp4","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp5","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp6","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp7","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp8","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp9","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp10","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp11","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp12","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp13","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp14","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp15","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp16","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp17","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp18","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp19","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp20","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp21","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp22","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp23","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp24","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp25","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp26","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp27","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp28","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp29","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp30","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp31","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp32","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp37","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp38","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp39","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp40","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp41","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp42","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp43","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp44","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp45","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp46","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp47","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp48","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp49","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp50","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp51","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp52","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=256, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=256, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=256, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=256, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=256, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=256, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=256, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=256, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=48] Command: tc qdisc delete dev swp1 root INFO asyncssh:logging.py:92 [conn=256, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=256, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=50] Command: tc qdisc delete dev swp2 root INFO asyncssh:logging.py:92 [conn=256, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=256, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=52] Command: tc qdisc delete dev swp3 root INFO asyncssh:logging.py:92 [conn=256, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=256, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=54] Command: tc qdisc delete dev swp4 root INFO asyncssh:logging.py:92 [conn=256, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=256, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=56] Command: tc qdisc delete dev swp5 root INFO asyncssh:logging.py:92 [conn=256, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=256, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=58] Command: tc qdisc delete dev swp6 root INFO asyncssh:logging.py:92 [conn=256, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=256, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=60] Command: tc qdisc delete dev swp7 root INFO asyncssh:logging.py:92 [conn=256, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=256, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=62] Command: tc qdisc delete dev swp8 root INFO asyncssh:logging.py:92 [conn=256, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=256, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=64] Command: tc qdisc delete dev swp9 root INFO asyncssh:logging.py:92 [conn=256, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=256, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=66] Command: tc qdisc delete dev swp10 root INFO asyncssh:logging.py:92 [conn=256, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=256, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=68] Command: tc qdisc delete dev swp11 root INFO asyncssh:logging.py:92 [conn=256, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=256, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=70] Command: tc qdisc delete dev swp12 root INFO asyncssh:logging.py:92 [conn=256, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=256, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=72] Command: tc qdisc delete dev swp13 root INFO asyncssh:logging.py:92 [conn=256, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=256, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=74] Command: tc qdisc delete dev swp14 root INFO asyncssh:logging.py:92 [conn=256, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=256, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=76] Command: tc qdisc delete dev swp15 root INFO asyncssh:logging.py:92 [conn=256, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=256, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=78] Command: tc qdisc delete dev swp16 root INFO asyncssh:logging.py:92 [conn=256, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=256, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=80] Command: tc qdisc delete dev swp17 root INFO asyncssh:logging.py:92 [conn=256, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=256, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=82] Command: tc qdisc delete dev swp18 root INFO asyncssh:logging.py:92 [conn=256, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=256, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=84] Command: tc qdisc delete dev swp19 root INFO asyncssh:logging.py:92 [conn=256, chan=84] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=84] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=256, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=86] Command: tc qdisc delete dev swp20 root INFO asyncssh:logging.py:92 [conn=256, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=256, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=88] Command: tc qdisc delete dev swp21 root INFO asyncssh:logging.py:92 [conn=256, chan=88] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=88] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=256, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=90] Command: tc qdisc delete dev swp22 root INFO asyncssh:logging.py:92 [conn=256, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=256, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=92] Command: tc qdisc delete dev swp23 root INFO asyncssh:logging.py:92 [conn=256, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=256, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=94] Command: tc qdisc delete dev swp24 root INFO asyncssh:logging.py:92 [conn=256, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=256, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=96] Command: tc qdisc delete dev swp25 root INFO asyncssh:logging.py:92 [conn=256, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=256, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=98] Command: tc qdisc delete dev swp26 root INFO asyncssh:logging.py:92 [conn=256, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=256, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=100] Command: tc qdisc delete dev swp27 root INFO asyncssh:logging.py:92 [conn=256, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=256, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=102] Command: tc qdisc delete dev swp28 root INFO asyncssh:logging.py:92 [conn=256, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=256, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=104] Command: tc qdisc delete dev swp29 root INFO asyncssh:logging.py:92 [conn=256, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=256, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=106] Command: tc qdisc delete dev swp30 root INFO asyncssh:logging.py:92 [conn=256, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=256, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=108] Command: tc qdisc delete dev swp31 root INFO asyncssh:logging.py:92 [conn=256, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=256, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=110] Command: tc qdisc delete dev swp32 root INFO asyncssh:logging.py:92 [conn=256, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=256, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=256, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=256, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=114] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=256, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=256, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=256, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=116] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=256, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=256, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=118] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=256, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=256, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=120] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=256, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=256, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=122] Command: tc qdisc delete dev swp37 root INFO asyncssh:logging.py:92 [conn=256, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=256, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=124] Command: tc qdisc delete dev swp38 root INFO asyncssh:logging.py:92 [conn=256, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=256, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=126] Command: tc qdisc delete dev swp39 root INFO asyncssh:logging.py:92 [conn=256, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=256, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=128] Command: tc qdisc delete dev swp40 root INFO asyncssh:logging.py:92 [conn=256, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=256, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=130] Command: tc qdisc delete dev swp41 root INFO asyncssh:logging.py:92 [conn=256, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=256, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=132] Command: tc qdisc delete dev swp42 root INFO asyncssh:logging.py:92 [conn=256, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=256, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=134] Command: tc qdisc delete dev swp43 root INFO asyncssh:logging.py:92 [conn=256, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=256, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=136] Command: tc qdisc delete dev swp44 root INFO asyncssh:logging.py:92 [conn=256, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=256, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=138] Command: tc qdisc delete dev swp45 root INFO asyncssh:logging.py:92 [conn=256, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=256, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=140] Command: tc qdisc delete dev swp46 root INFO asyncssh:logging.py:92 [conn=256, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=256, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=142] Command: tc qdisc delete dev swp47 root INFO asyncssh:logging.py:92 [conn=256, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=256, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=144] Command: tc qdisc delete dev swp48 root INFO asyncssh:logging.py:92 [conn=256, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=256, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=146] Command: tc qdisc delete dev swp49 root INFO asyncssh:logging.py:92 [conn=256, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=256, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=148] Command: tc qdisc delete dev swp50 root INFO asyncssh:logging.py:92 [conn=256, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=256, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=150] Command: tc qdisc delete dev swp51 root INFO asyncssh:logging.py:92 [conn=256, chan=150] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=150] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=256, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=256, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=256, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=256, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=256, chan=152] Command: tc qdisc delete dev swp52 root INFO asyncssh:logging.py:92 [conn=256, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=256, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=256, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast | 226.80 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18748' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=256, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=257] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=257] Local address: 172.17.0.3, port 43718 INFO asyncssh:logging.py:92 [conn=257] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=257] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=257] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:47:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=257, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=257, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=257, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=257, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=257, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdac8cd30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:50:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=257, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=257, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:50:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=257, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=257, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":381,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=257, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=257, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=257, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=257, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=257, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast | 227.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18780' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=257, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=258] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=258] Local address: 172.17.0.3, port 50420 INFO asyncssh:logging.py:92 [conn=258] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=258] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=258] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:50:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=258, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=258, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=258, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=258, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=258, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefd420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:54:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=258, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=258, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:54:34 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=258, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=258, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":382,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=258, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=258, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=258, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=258, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=258, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast | 243.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18812' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=258, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=259] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=259] Local address: 172.17.0.3, port 52170 INFO asyncssh:logging.py:92 [conn=259] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=259] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=259] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:54:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=259, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=259, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=259, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=259, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=259, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefc4f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 311 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:7 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 311 Rx 311 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=259, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:58:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=259, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=259, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:58:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=259, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=259, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":383,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=259, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=259, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=259, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=259, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=259, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans | 183.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18844' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=259, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=260] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=260] Local address: 172.17.0.3, port 50120 INFO asyncssh:logging.py:92 [conn=260] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=260] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=260] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 05:58:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=260, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=260, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=260, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=7] Channel closed DEBUG infra2:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=260, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=260, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=8] Channel closed DEBUG infra2:Logger.py:156 real 2m1.683s user 0m3.563s sys 1m58.133s INFO asyncssh:logging.py:92 [conn=260, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=260, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:00:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=260, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=260, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:00:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=260, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=260, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":384,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=260, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=260, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=260, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=260, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=260, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge | 0.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18872' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=260, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=261] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=261] Local address: 172.17.0.3, port 50696 INFO asyncssh:logging.py:92 [conn=261] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=261] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=261] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:01:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=261, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=1] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=261, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=2] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=261, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=261, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=261, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=261, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=261, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=261, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=8] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Operation not supported -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:01:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=261, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=261, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:01:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=261, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=261, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":385,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"46:9e:5f:09:5c:22","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=261, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=261, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=261, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=261, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=261, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] | 210.88 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18898' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=261, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=262] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=262] Local address: 172.17.0.3, port 50706 INFO asyncssh:logging.py:92 [conn=262] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=262] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=262] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:01:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=262, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=262, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=262, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaeff280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 232 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 232 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 232 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:05:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=262, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=262, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:05:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=262, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=262, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":386,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=262, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=262, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=262, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=262, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=262, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] | 206.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18922' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=262, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=263] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=263] Local address: 172.17.0.3, port 34600 INFO asyncssh:logging.py:92 [conn=263] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=263] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=263] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:05:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=263, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=263, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=263, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=263, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdac8eb60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 121 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 121 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 121 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 121 Rx 121 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:08:38 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=263, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=263, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:08:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=263, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=263, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":387,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=263, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=263, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=263, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=263, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=263, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] | 194.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18946' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=263, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=264] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=264] Local address: 172.17.0.3, port 59790 INFO asyncssh:logging.py:92 [conn=264] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=264] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=264] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:08:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=264, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=264, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=264, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdac8f790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 285 Rx 285 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 285 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 285 Rx 285 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 285 Rx 285 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:11:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=264, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=264, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:11:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=264, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=264, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":388,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=264, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=264, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=264, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=264, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=264, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] | 200.06 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18970' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=264, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=265] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=265] Local address: 172.17.0.3, port 40730 INFO asyncssh:logging.py:92 [conn=265] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=265] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=265] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:11:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=265, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=265, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=265, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0ca8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=8] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:15:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=265, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=265, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=10] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:15:13 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=265, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=265, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":389,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=265, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=265, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=265, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=265, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=265, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality | 184.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-18994' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=265, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=266] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=266] Local address: 172.17.0.3, port 35814 INFO asyncssh:logging.py:92 [conn=266] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=266] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=266] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:15:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=266, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=266, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=266, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=266, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=266, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=14] Command: bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=266, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefdd80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 229 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:18:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=266, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=266, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:18:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=266, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=266, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":390,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=266, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=266, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=266, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=266, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=266, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid | 203.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19026' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=266, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=267] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=267] Local address: 172.17.0.3, port 48928 INFO asyncssh:logging.py:92 [conn=267] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=267] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=267] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:18:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=267, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=267, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=267, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=8] Command: bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=10] Command: bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=12] Command: bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=267, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=14] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=267, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefc8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:21:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=267, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=267, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:21:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=267, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=267, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":391,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=267, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=267, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=267, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=267, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=267, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs | 421.62 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19058' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=267, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=268] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=268] Local address: 172.17.0.3, port 46526 INFO asyncssh:logging.py:92 [conn=268] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=268] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=268] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:21:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=268, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=268, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=2] Command: cat /etc/onl/platform INFO asyncssh:logging.py:92 [conn=268, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=2] Channel closed DEBUG infra2:Logger.py:156 arm64-delta-tn48m-poe-dn-r0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=268, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=268, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=12] Command: bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=14] Command: bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=16] Command: bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=268, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=18] Command: bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefc790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 166584 Rx 166584 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=20] Command: bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=20] Channel closed DEBUG infra2:Logger.py:156 31480 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefe8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 165951 Rx 165951 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=22] Command: bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=22] Channel closed DEBUG infra2:Logger.py:156 31397 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0ca2f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 166094 Rx 166094 Loss 0.000 INFO asyncssh:logging.py:92 [conn=268, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=24] Command: bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=268, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=24] Channel closed DEBUG infra2:Logger.py:156 31460 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=268, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=26] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:28:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=268, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=268, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":392,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=268, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=268, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=268, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=268, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=268, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=268, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:28:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/vlan/test_vlan_priority.py::test_vlan_priority_tag | 168.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19100' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=268, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=269] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=269] Local address: 172.17.0.3, port 43468 INFO asyncssh:logging.py:92 [conn=269] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=269] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=269] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:28:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=269, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=269, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=8] Command: bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=269, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=10] Command: bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=269, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaeffa90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN priority SIP-DIP N/A Tx 2466387 Rx 2466387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 2466387 Rx 2466387 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 2466387 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=12] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:31:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=269, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=269, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=14] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:31:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=269, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=269, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":393,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=269, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=269, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=269, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=269, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=269, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli | 391.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19128' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=269, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=270] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=270] Local address: 172.17.0.3, port 51236 INFO asyncssh:logging.py:92 [conn=270] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=270] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=270] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:31:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=270, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=270, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaeffd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO asyncssh:logging.py:92 [conn=270, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=16] Command: bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=18] Command: bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=270, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=20] Command: bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=22] Command: bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=270, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=24] Command: bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=270, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=26] Command: bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=28] Command: bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=270, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=29] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=30] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=270, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade6200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration untagged traffic SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration untagged traffic SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=32] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:38:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=270, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=270, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=34] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:38:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=270, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=270, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":394,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=270, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=270, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=270, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=270, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=270, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] | 231.26 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19176' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=270, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=271] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=271] Local address: 172.17.0.3, port 48356 INFO asyncssh:logging.py:92 [conn=271] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=271] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=271] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:38:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=271, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=271, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=271, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=271, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade6e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 332 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 332 Rx 332 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:41:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=271, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=271, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:41:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=271, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=271, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":395,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=271, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=271, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=271, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=271, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=271, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] | 234.24 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19208' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=271, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=272] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=272] Local address: 172.17.0.3, port 35836 INFO asyncssh:logging.py:92 [conn=272] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=272] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=272] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:41:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=272, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=272, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=272, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=272, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaefe1a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 24 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 24 Rx 24 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:45:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=272, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=272, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:45:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=272, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=272, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":396,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=272, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=272, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=272, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=272, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=272, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] | 298.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19240' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=272, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=273] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=273] Local address: 172.17.0.3, port 58724 INFO asyncssh:logging.py:92 [conn=273] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=273] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=273] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:45:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=273, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=273, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=273, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=273, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb003490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 314 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 314 Rx 314 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:50:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=273, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=273, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:50:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=273, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=273, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":397,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=273, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=273, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=273, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=273, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=273, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size | 187.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19272' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=273, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=274] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=274] Local address: 172.17.0.3, port 54724 INFO asyncssh:logging.py:92 [conn=274] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=274] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=274] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:50:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=274, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=274, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=274, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=274, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=274, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=274, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=14] Command: bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=274, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdade4df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:53:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=274, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=274, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:53:53 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=274, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=274, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":398,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=274, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=274, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=274, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=274, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=274, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] | 186.86 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19304' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=274, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=275] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=275] Local address: 172.17.0.3, port 58558 INFO asyncssh:logging.py:92 [conn=275] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=275] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=275] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:53:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=275, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=275, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=275, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=275, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdac8f8e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged broadcast traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:57:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=275, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=275, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:57:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=275, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=275, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":399,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=275, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=275, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=275, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=275, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=275, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] | 185.76 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19336' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=275, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=276] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=276] Local address: 172.17.0.3, port 47324 INFO asyncssh:logging.py:92 [conn=276] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=276] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=276] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 06:57:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=276, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=276, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=276, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=276, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdb0c8670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged multicast traffic SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged multicast traffic SIP-DIP N/A Tx 118 Rx 118 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged multicast traffic SIP-DIP N/A Tx 117 Rx 117 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:00:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=276, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=276, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:00:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=276, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=276, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":400,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=276, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=276, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=276, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=276, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=276, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] | 194.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-19368' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=276, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=277] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=277] Local address: 172.17.0.3, port 44868 INFO asyncssh:logging.py:92 [conn=277] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=277] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=277] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=0] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:00:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=277, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=277, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=277, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=277, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=277, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4', 'type': 'port'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7f0fdaeff490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged unicast stream SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI Learning stream SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=277, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=16] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=277, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=277, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=18] Channel closed DEBUG infra2:Logger.py:156 Mon Jul 3 07:03:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=277, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=277, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":401,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=277, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=277, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=277, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=277, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=277, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||